/* ===== Writer Vetting Section ===== */
.writerVettingSection {
    padding: var(--section-bg-py) 0;
}

.writerVettingSection .sectionHeadwrap {
    text-align: left;
    margin-bottom: var(--section-wraper-py);
}

/* ===================================================
   Two-column layout
   =================================================== */
.wv-layout {
    display: flex;
 
    gap: 20px;
    
}

/* ===================================================
   Left panel — blue card
   =================================================== */
.wv-left-panel {
    background: var(--color-primary, #3A66D4);
    border-radius: 24px;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    max-width: 382px;
    width: 100%;
    overflow: hidden;
}

.wv-left-panel::before {
       content: '';
    position: absolute;
    top: -99px;
    right: -33px;
    width: 366px;
    height: 366px;
    border-radius: 50%;
    background: #325CC7;
    pointer-events: none;
    z-index: 0;
}

.wv-left-panel > * {
    position: relative;
    z-index: 1;
}

.wv-statement {
    font-family: var(--font-primary);
    font-size: 25px;
    font-weight: 600;
    line-height: 160%;
    color: #fff;
    margin: 0;
}

/* 2×2 stats grid */
.wv-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.wv-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
      background: #FFFFFF1A;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 14px 12px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.wv-stat:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.wv-stat-value {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    color: #fff;
    margin-bottom: 7px;
}

.wv-stat-label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 100%;
    white-space: nowrap;
}

/* ===================================================
   Right panel — steps list
   =================================================== */
.wv-steps-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #E4F2FF;
    border-radius: 30px;
   box-shadow: 0px 0px 19.5px 0px #DDE6FF;
    overflow: hidden;
}

/* ===== Single step ===== */
.wv-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
        padding: 25px 35px;
    border-bottom: 1px solid #E4EEFF;
    transition: background 0.25s ease;
    position: relative;
    overflow: hidden;
}

.wv-step:last-child {
    border-bottom: none;
}

/* Top bar on hover */
.wv-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 2.5px;
    background: var(--color-primary, #3A66D4);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.wv-step:hover {
    background: #F8FBFF;
}

.wv-step:hover::before {
    width: 100%;
}

/* Step number */
.wv-step-num {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-primary, #3A66D4);
    flex-shrink: 0;
    min-width: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 3px;
}

.wv-step-num::after {
    content: '';
    display: block;
    width: 1.5px;
    flex: 1;
    min-height: 32px;
    background: var(--color-primary, #3A66D4);
    border-radius: 2px;
   
    transition: opacity 0.3s ease, min-height 0.3s ease;
}

 

 

/* Content with left border line */
.wv-step-content {
    flex: 1;
    padding-left: 10px;
    transition: border-color 0.25s ease;
}

.wv-step:hover .wv-step-content {
    border-color: var(--color-primary, #3A66D4);
}

.wv-step-content h3 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    line-height: var(--lh-heading);
    color: var(--color-heading, #1a2332);
    margin-bottom: 12px;
    transition: color 0.25s ease;
}

.wv-step:hover .wv-step-content h3 {
    color: var(--color-primary, #3A66D4);
}

.wv-step-desc,
.wv-step-desc p {
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-regular);
    line-height: var(--lh-relaxed);
    color: var(--color-text, #676B7E);
    margin: 0;
}

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 991px) {
    .wv-left-panel {
        max-width: 300px;
        padding: 28px 24px;
    }

    .wv-statement {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .wv-layout {
        flex-direction: column;
    }

    .wv-left-panel {
        max-width: 100%;
        position: relative;
        border-radius: 20px;
        padding: 28px 24px;
        top: unset;
    }

    .wv-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wv-stat-label {
        white-space: normal;
        font-size: 11px;
    }

    .wv-steps-list {
        border-radius: 20px;
    }

    .wv-step {
        padding: 22px 24px;
    }
}

@media (max-width: 575px) {
    .wv-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wv-step {
        padding: 18px 18px;
        gap: 14px;
    }

    .wv-step-content {
        padding-left: 14px;
    }

    .wv-step-content h3 {
        font-size: 15px;
    }
    .writerVettingSection .sectionHeadwrap {
    text-align: left;
 
}
.wv-stat-value {
    
    font-size: 22px;}
}
