/* ============================================
   CONTAGIOUS JOY — RECEIVING JOY STYLES
   ============================================ */

/* ============================================
   BENEFIT CARDS
   ============================================ */
.benefit-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.benefit-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(44, 35, 33, 0.06);
    border-top: 4px solid var(--primary);
}

.benefit-card:nth-child(4n+2) {
    border-top-color: var(--secondary);
}

.benefit-card:nth-child(4n+3) {
    border-top-color: var(--accent);
}

.benefit-card:nth-child(4n+4) {
    border-top-color: var(--text);
}

.benefit-card-icon {
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.benefit-card-quote {
    margin-top: 16px;
    padding: 16px;
    border-left: 3px solid var(--secondary);
    background: var(--bg);
    border-radius: 0 8px 8px 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.benefit-card-quote cite {
    display: block;
    margin-top: 8px;
    font-family: 'Nunito', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    color: var(--muted);
}

/* ============================================
   COMING SOON CARDS
   ============================================ */
.coming-soon {
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    margin-bottom: 40px;
    background: rgba(253, 248, 240, 0.5);
}

.coming-soon h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--muted);
}

.coming-soon .coming-soon-body {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.coming-soon .coming-soon-contact {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.coming-soon .coming-soon-contact a {
    color: var(--primary);
    font-weight: 600;
}

.coming-soon .coming-soon-contact a:hover {
    text-decoration: underline;
}

/* ============================================
   RECEIVING JOY RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .benefit-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .coming-soon {
        padding: 28px 20px;
    }
}
