/* ═══════════════════════════════════════════════
   Archer Carousel – Oval Portrait Strip
   ═══════════════════════════════════════════════ */

.c-archer-carousel {
    position: relative;
    overflow: hidden;
}

/* ─── Scrollable Track ─── */
.c-archer-carousel__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.c-archer-carousel__track::-webkit-scrollbar {
    display: none;
}

/* ─── Card ─── */
.c-archer-carousel__card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    cursor: pointer;
}

.c-archer-carousel__card:hover .c-archer-carousel__oval {
    border-color: #c4a97d;
    box-shadow: 0 10px 30px -10px rgba(196, 169, 125, 0.4);
    transform: scale(1.03);
}

.c-archer-carousel__card:hover .c-archer-carousel__name {
    color: #c4a97d !important;
}

/* ─── Oval Portrait ─── */
.c-archer-carousel__oval {
    width: 220px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(196, 169, 125, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

@media (min-width: 768px) {
    .c-archer-carousel__oval {
        width: 260px;
        height: 360px;
    }
}

.c-archer-carousel__oval--empty {
    background-color: #E8DCC8;
}

/* ─── Portrait Image ─── */
.c-archer-carousel__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ─── Text ─── */
.c-archer-carousel .c-archer-carousel__name {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 1rem !important;
    margin: 0.75rem 0 0 !important;
    text-align: center;
    transition: color 0.3s;
    line-height: 1.5 !important;
}

.c-archer-carousel .c-archer-carousel__years {
    font-size: 0.875rem !important;
    margin: 0 !important;
    text-align: center;
    line-height: 1.5 !important;
    color: #7c695a;
}

/* ─── Divider ─── */
.c-archer-carousel__divider {
    height: 1px;
    background: #d6cdc2;
    margin-top: 2rem;
}

/* ─── Navigation ─── */
.c-archer-carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    .c-archer-carousel__nav {
        gap: 1.5rem;
    }
}

.c-archer-carousel__arrow {
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 50% !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    background: transparent !important;
    color: currentColor !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    padding: 0 !important;
    transition: background 0.25s, color 0.25s, opacity 0.25s !important;
}

@media (min-width: 768px) {
    .c-archer-carousel__arrow {
        width: 3rem !important;
        height: 3rem !important;
    }
}

.c-archer-carousel__arrow:hover:not(:disabled) {
    background: currentColor !important;
}

.c-archer-carousel__arrow:hover:not(:disabled) svg {
    stroke: #fff;
}

.c-archer-carousel__arrow:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}

/* ─── Dots ─── */
.c-archer-carousel .c-archer-carousel__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.c-archer-carousel .c-archer-carousel__dot {
    width: 0.5rem !important;
    height: 0.5rem !important;
    border-radius: 9999px !important;
    border: none !important;
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: background 0.3s, width 0.3s !important;
}

.c-archer-carousel .c-archer-carousel__dot:hover {
    background: rgba(0, 0, 0, 0.4) !important;
}

.c-archer-carousel .c-archer-carousel__dot--active {
    width: 1.5rem !important;
    background: #2b2b2b !important;
}
