#iconMembers {
    background: #f0fdf4;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

#iconMembers .container {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

#iconMembers .section-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

#iconMembers .section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    color: #16a34a;
}

#iconMembers .section-title {
    font-size: 1.6rem;
    margin: 0.1rem 0;
}

#iconMembers .section-subtitle {
    font-size: 0.9rem;
    color: #4b5563;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.icon-slider {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
    overflow: hidden; /* hide overflowing cards like instructors slider */
    padding: 0 2rem;
}

.icon-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
    will-change: transform;
}

.icon-card {
    flex: 0 0 auto;
    width: 240px;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 30px rgba(15,23,42,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.icon-image-wrap {
    width: 100%;
    height: 220px;
    background: #e5e7eb;
}

.icon-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.icon-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #6b7280;
}

.icon-meta {
    padding: 0.9rem 0.95rem 1rem;
    text-align: center;
}

.icon-name {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.icon-role {
    margin: 0;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.icon-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: #ecfdf5;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(16,185,129,0.25);
    z-index: 3;
}

.icon-prev {
    left: 6px;
}

.icon-next {
    right: 6px;
}

@media (max-width: 900px) {
    .icon-card {
        width: 210px;
    }
}

@media (max-width: 640px) {
    #iconMembers {
        padding-top: 2rem;
        padding-bottom: 2.2rem;
    }

    .icon-slider {
        padding: 0 0.5rem;
    }
}
