.executives-section {
    padding: 1rem 0 1rem;
}

.executives-cards__title {
    display: block;
    max-width: var(--grid-desktop);
    text-align: center;
    margin: 0 auto;
}

.executives-cards__subtitle {
    margin: 0;
    text-transform: uppercase;
    color: var(--color-primary-red);
    font-size: 14px;
}

.executives-cards__container {
    position: relative;
    max-width: var(--grid-desktop);
    margin: 0 auto;
}

.executives-cards__wrap {
    display: flex;
    width: 100%;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.executives-cards__wrap::-webkit-scrollbar {
    display: none;
}

.executives-cards__card {
    flex: 0 0 calc(100% - 2rem);
    max-width: calc(100% - 2rem);
    scroll-snap-align: center;
    margin: 0 1rem;
    border-radius: var(--border-radius);
    height: 100%;
    cursor: pointer;
}

.executives-cards__card.active {
    border: 2px solid var(--color-primary-red);
}

.executives-cards__card-image {
    position: relative;
    box-shadow: var(--box-shadow-img);
    border-radius: var(--border-radius);
    padding-bottom: 0.5rem;
    background: #fff;
    text-align: center;
    height: 100%;
}

.executives-cards__image {
    border-radius: var(--border-radius);
    margin-bottom: -0.4rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
}

.executives-cards__name {
    font-weight: 900;
    font-family: var(--heading-font);
    font-size: 16px;
    display: block;
    margin: auto;
    text-transform: capitalize;
    padding-top: 0.5rem;
}

.executives-cards__subtitle {
    font-size: 14px;
    color: var(--color-primary-red);
    display: block;
    margin: 0.2rem 0 0;
}

.executives-cards__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.executives-cards__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.executives-cards__dot.active {
    background: var(--color-primary-red);
}

.executives-highlight {
    padding: 0 2rem 3rem;
    max-width: var(--grid-desktop);
    margin: auto;
}

.executives-highlight__title {
    font-family: var(--main-font);
    font-weight: normal;
    text-transform: uppercase;
    color: var(--color-primary-red);
    font-size: 14px;
    margin: 0;
}

.executives-highlight__name {
    font-size: 24px;
    font-weight: 900;
    font-family: var(--heading-font);
    color: var(--color-darkblue);
    margin: 0.5rem 0 0;
}

.executives-highlight__content {
    display: flex;
    flex-direction: column;
}

.executives-highlight__info-wrap {
    flex: 1;
}

.executives-highlight__info {
    margin: 0.5rem 0;
}

.executives-highlight__info span {
    text-transform: uppercase;
    color: var(--color-primary-red);
    font-size: 14px;
    margin: 0 0 0.5rem;
}

.executives-highlight__info p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.executives-highlight__meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 0.5rem 0;
}

.executives-highlight__meta-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.executives-highlight__meta-item:last-child {
    border-bottom: none;
}

.executives-highlight__meta-label {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--color-primary-red);
}

.executives-highlight__meta-value {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--color-primary-red);
}

@media (min-width: 992px) {
    .executives-section {
        padding: 3rem 1rem;
    }

    .executives-highlight__name {
        font-size: 32px;
    }

    .executives-cards__wrap {
        display: grid;
        grid-template-columns: 0.5fr repeat(4, 1fr) 0.5fr;
        grid-gap: 0 1rem;
        padding: 1rem;
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .executives-cards__card:first-child {
        grid-column: 2;
    }

    .executives-cards__card {
        flex: none;
        max-width: none;
        margin: 0;
    }

    .executives-cards__dots {
        display: none;
    }

    .executives-highlight {
        padding: 1rem 1rem 3rem;
    }

    .executives-highlight__content {
        flex-direction: row;
        gap: 2rem;
    }

    .executives-highlight__info-wrap {
        flex: 1.5;
    }

    .executives-highlight__meta {
        flex: 1;
        margin-top: 0;
        border-top: none;
        border-bottom: none;
    }

    .executives-highlight__meta-item {
        padding-bottom: 0.5rem;
    }
}