.han-dh-carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.han-dh-carousel-header {
    text-align: left;
    margin-bottom: 32px;
}

.han-dh-carousel-header__overline {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    color: #1b6fff;
    margin-bottom: 8px;
}

.han-dh-carousel-header__title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 8px;
    color: #022c5b;
}

.han-dh-carousel-header__description {
    font-size: 15px;
    color: #5d6b80;
    max-width: 520px;
    margin: 0;
}

.han-dh-carousel {
    position: relative;
    width: 100%;
    padding-bottom: 40px;
}

.han-dh-carousel-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 24px 20px;
    box-shadow: 0 12px 40px rgba(4, 26, 55, 0.06);
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    box-sizing: border-box;
}

.han-dh-carousel-card__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.han-dh-icon-pos-left .han-dh-carousel-card__inner {
    flex-direction: row;
    align-items: flex-start;
}

.han-dh-icon-pos-left .han-dh-carousel-card__icon {
    margin-right: 16px;
}

.han-dh-carousel-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.han-dh-carousel-card__icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.han-dh-carousel-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.han-dh-carousel-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #022c5b;
}

.han-dh-carousel-card__text {
    font-size: 14px;
    color: #657089;
    margin: 0;
    flex-grow: 1;
}

.han-dh-carousel-card__arrow {
    margin-top: 4px;
    display: flex;
    justify-content: flex-end;
    font-size: 18px;
    color: #0d6efd;
}

.han-dh-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(4, 26, 55, 0.12);
    transition: all 0.25s ease;
}

/* Navigation buttons */
.han-dh-carousel__nav {
    position: absolute;
    right: 0;
    top: -64px;
    display: flex;
    gap: 8px;
}

.han-dh-carousel-button {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(2, 44, 91, 0.15);
    cursor: pointer;
    position: relative;
}

.han-dh-carousel-button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-top: 2px solid #022c5b;
    border-right: 2px solid #022c5b;
}

.han-dh-carousel-button-prev::before {
    transform: rotate(-135deg);
    left: 12px;
}

.han-dh-carousel-button-next::before {
    transform: rotate(45deg);
    right: 12px;
}

/* Pagination */
.han-dh-carousel-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
}

/* Breakpoints */
@media (max-width: 767px) {
    .han-dh-carousel-wrapper {
        padding: 0 16px;
    }

    .han-dh-carousel-header {
        text-align: left;
    }

    .han-dh-carousel {
        padding-bottom: 32px;
    }

    .han-dh-carousel__nav {
        position: static;
        margin-top: 16px;
        justify-content: flex-end;
    }
}
