/* ── Wellness Grid & Cards (About Page) ── */

.wellness-section {
    padding: 8rem 0;
    background: #f8f5f0; 
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.wellness-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.wellness-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--accent-primary);
}

.wellness-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wellness-icon svg {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
}

.wellness-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1a2e35;
    line-height: 1.3;
}

.wellness-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.wellness-arrow {
    width: 32px;
    height: 32px;
    background: #1a2e35;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wellness-card:hover .wellness-arrow {
    background: var(--accent-primary);
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .wellness-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wellness-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .wellness-card {
        padding: 1.5rem 1rem;
    }
    .wellness-card h3 {
        font-size: 1rem;
    }
}
