/* WHO WE ARE SECTION */
.who-section {
    padding: 60px 20px;
    text-align: center;
    background: #f7f8fa;
}

.who-header {
    max-width: 700px;
    margin: 0 auto 40px;
}

.who-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.who-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Grid */
.who-cards {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

/* Card (now <a>) */
.who-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* Image */
.who-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

/* Title */
.who-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

/* Hover Effect */
.who-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Tablet: 3 columns */
@media (min-width: 600px) {
    .who-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop: 4 columns */
@media (min-width: 1024px) {
    .who-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}
