#top .hs-wrapper {
    position: relative;
    width: 100%;
    font-family: inherit;
}

#top .hs-swiper {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

#top .hs-slide {
    display: flex;
    height: 100%;
    overflow: hidden;
}

#top .hs-image-panel {
    position: relative;
    flex: 1;
    flex-shrink: 0;
    overflow: hidden;
}

#top .hs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;  /* transform → opacity */
}

#top .hs-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 44%, var(--text-primary) 84%);
    pointer-events: none;
}

#top .hs-content-panel {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 56px 0 56px 40px;
    position: relative;
    overflow: hidden;
}

#top .hs-content-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

#top .hs-eyebrow,
#top .hs-title,
#top .hs-divider,
#top .hs-desc {
    opacity: 0;
    transform: translateY(26px);
}

#top .hs-eyebrow {
    display: block;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

#top .hs-title {
    color: var(--primary);
    font-family: 'Afacad', sans-serif;
    font-size: 32px;
    font-weight: normal;
    line-height: 1.2;
}

#top .hs-divider {
    height: 3px;
    width: 0;
    background: linear-gradient(to right, var(--darkYellow), transparent);
    margin: 16px 0 22px;
    border-radius: 2px;
}

#top .hs-desc {
    font-size: 24px;
    font-weight: normal;
    line-height: 30px;
    color: var(--white);
    margin-bottom: 0;
    margin-top: 30px;
}

#top .hs-desc p { margin: 0; }

#top .hs-btn-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

#top .hs-btn {
    position: relative;
    z-index: 20;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--white);
    border-radius: 4px;
    color: var(--white);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: background .25s, border-color .25s, transform .2s !important;
}

#top .hs-btn.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

#top .hs-btn svg { width: 20px; height: 20px; fill: #fff; display: block; }
#top .hs-btn:hover { background: var(--primary); border-color: var(--primary); border-radius: 4px; }
#top .hs-btn::after { display: none; }

#top .hs-pagination {
    position: absolute !important;
    bottom: 40px !important;
    left: 36px !important;
    width: auto !important;
}

#top .hs-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,.3);
    opacity: 1;
    transition: background .3s, width .3s, border-radius .3s !important;
}

#top .hs-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 22px;
    border-radius: 4px;
}

#top .hs-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0 0;
}

#top .hs-progress-track {
    flex: 1;
    height: 2px;
    background: rgba(255,255,255,.1);
    border-radius: 2px;
    overflow: hidden;
}

#top .hs-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--darkYellow), #e8b85c);
    border-radius: 2px;
}

#top .hs-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    white-space: nowrap;
}

#top .hs-current { font-size: 1rem; font-weight: 600; color: #fff; }

@media (max-width: 992px) {
    #top .hs-content-panel { padding: 0 0 20px 24px; }
    #top .hs-desc { margin-top: 20px; }
    #top .hs-btn { width: 34px; height: 34px; }
}

@media (max-width: 767px) {
    #top .hs-slide { flex-direction: column; }
    #top .hs-title { font-size: 24px; }
    #top .hs-desc { font-size: 18px; line-height: 24px; }
    #top .hs-content-panel { padding: 20px 0 0; }
}
