/* ============================================================
   Voice of Wishes — a-propos.css
   ============================================================ */

/* Quote block */
.quote-block {
    border-left: 4px solid var(--vow-gold);
    background: rgba(194, 147, 74, 0.07);
    border-radius: 0.5rem;
    padding: 1.5rem 2rem;
}

/* Step number circle */
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--vow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Libre Bodoni', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--vow-gold);
    background: white;
    margin: 0 auto 1.25rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Step connector (desktop) */
.steps-grid {
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(194,147,74,0.4) 0, rgba(194,147,74,0.4) 8px, transparent 8px, transparent 18px);
    pointer-events: none;
}
@media (max-width: 1023px) {
    .steps-grid::before { display: none; }
}

/* Engagement check list */
.engage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #EBEBEB;
}
.engage-item:last-child { border-bottom: none; }
.engage-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(194, 147, 74, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vow-gold);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Team card */
.team-card {
    text-align: center;
    padding: 2.5rem 1.75rem;
    background: white;
    border: 1px solid #EBEBEB;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover {
    border-color: rgba(194, 147, 74, 0.35);
    box-shadow: 0 20px 50px rgba(194, 147, 74, 0.10);
    transform: translateY(-5px);
}
.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 3px solid var(--vow-gold);
    margin: 0 auto 1.5rem;
    background: #F2F4F9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F2F4F9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vow-charcoal);
    font-size: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.team-social a:hover {
    background: var(--vow-gold);
    color: white;
}
