.hero-slider-container.accent-hero {
    position: relative;
    width: 100%;
    height: min(780px, 92vh);
    min-height: 560px;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    direction: ltr;
    text-align: left;
}

.accent-hero,
.accent-hero * {
    box-sizing: border-box;
}

.accent-hero button {
    font-family: inherit;
}

.accent-hero .hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.accent-hero .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.accent-hero .hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.accent-hero .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Left white fade like the reference */
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.96) 0%,
        rgba(255, 255, 255, 0.92) 38%,
        rgba(255, 255, 255, 0.35) 60%,
        rgba(255, 255, 255, 0.00) 78%
    );
}

.accent-hero .hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.accent-hero .hero-text-section {
    flex: 0 0 auto;
    width: min(560px, 54vw);
    color: #111;
    padding-right: 32px;
    padding-left: 0;
    transform: translateY(-10px);
}

.accent-hero .hero-category {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.accent-hero .hero-category-line {
    width: 40px;
    height: 2px;
    background-color: #d4a574;
    margin-right: 12px;
    margin-left: 0;
}

.accent-hero .hero-category-text {
    font-size: 12px;
    letter-spacing: 2px;
    color: #133a33;
    font-weight: 600;
    text-transform: uppercase;
}

.accent-hero .hero-title {
    font-size: clamp(40px, 4.4vw, 66px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #133a33;
}

.accent-hero .hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.accent-hero .hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.accent-hero .hero-btn-primary {
    position: relative;
    background-color: #133a33;
    color: #fff;
    padding: 14px 32px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 2px 2px 0 0 rgba(19, 58, 51, 0.3);
}

.accent-hero .hero-btn-primary::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(163, 200, 195, 0.6);
    z-index: -1;
    pointer-events: none;
}

.accent-hero .hero-btn-primary:hover {
    background-color: #0f2d28;
    transform: translateY(-1px);
    box-shadow: 3px 3px 0 0 rgba(19, 58, 51, 0.3);
}

.accent-hero .hero-btn-secondary {
    color: rgba(19, 58, 51, 0.75);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.accent-hero .hero-btn-secondary:hover {
    color: #133a33;
}

.accent-hero .hero-progress-bar {
    width: min(520px, 46vw);
    height: 2px;
    background-color: rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

.accent-hero .hero-progress-fill {
    height: 100%;
    background-color: #d4a574;
    width: 0%;
    transition: width 0.3s ease;
}

.accent-hero .hero-side-images {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(400px, 35vw);
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
}

.accent-hero .hero-side-card {
    position: relative;
    border-radius: 3px;
    overflow: visible;
}

.accent-hero img.hero-side-image {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border: 8px solid rgba(255, 255, 255, 0.98);
}

.accent-hero img.hero-side-image:hover {
    transform: translateY(-5px);
}

.accent-hero .hero-side-card--top img.hero-side-image {
    aspect-ratio: 16 / 8.8;
}

.accent-hero .hero-side-card--bottom {
    margin-top: -12px; /* slight overlap */
}

.accent-hero .hero-side-card--bottom img.hero-side-image {
    aspect-ratio: 16 / 9.4;
}

.accent-hero .hero-see-all-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #133a33;
    padding: 10px 18px;
    border: 1px solid rgba(19, 58, 51, 0.1);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accent-hero .hero-see-all-btn span {
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(19, 58, 51, 0.08);
    border: 1px solid rgba(19, 58, 51, 0.15);
    color: #133a33;
    font-size: 11px;
    font-weight: 700;
}

.accent-hero .hero-see-all-btn:hover {
    background: #fff;
    border-color: rgba(19, 58, 51, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.accent-hero .hero-see-all-btn:hover span {
    background: rgba(19, 58, 51, 0.12);
    border-color: rgba(19, 58, 51, 0.25);
}

.accent-hero .hero-nav-arrows {
    position: absolute;
    bottom: 32px;
    left: 5%;
    display: flex;
    gap: 10px;
    z-index: 3;
    align-items: center;
}

.accent-hero .hero-nav-arrow {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    color: #133a33;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    padding: 0;
    line-height: 1;
    outline: none;
}

.accent-hero .hero-nav-arrow:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.accent-hero .hero-nav-arrow:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accent-hero .hero-nav-arrow:focus {
    outline: none;
}

.accent-hero .hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 3;
    align-items: center;
}

.accent-hero .hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    flex-shrink: 0;
    outline: none;
}

.accent-hero .hero-dot:hover {
    background-color: rgba(255, 255, 255, 0.75);
    transform: scale(1.3);
}

.accent-hero .hero-dot.active {
    background-color: rgba(255, 255, 255, 0.95);
    width: 20px;
    border-radius: 2px;
    transform: scale(1);
}

.accent-hero .hero-dot:focus {
    outline: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .accent-hero .hero-content {
        flex-direction: column;
        padding: 40px 5%;
    }

    .accent-hero .hero-text-section {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .accent-hero .hero-title {
        font-size: 48px;
    }

    .accent-hero .hero-side-images {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .accent-hero img.hero-side-image {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .hero-slider-container.accent-hero {
        height: 80vh;
        min-height: 500px;
    }

    .accent-hero .hero-title {
        font-size: 36px;
    }

    .accent-hero .hero-description {
        font-size: 16px;
    }

    .accent-hero .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .accent-hero .hero-side-images {
        display: none;
    }

    .accent-hero .hero-nav-arrows {
        bottom: 28px;
        left: 3%;
        gap: 8px;
    }

    .accent-hero .hero-dots {
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        gap: 3px;
    }

    .accent-hero .hero-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .accent-hero .hero-dot {
        width: 3px;
        height: 3px;
    }

    .accent-hero .hero-dot.active {
        width: 16px;
    }
}

