.container-widget-hcor-hero {
    width: 100%;
    min-height: 600px;
    position: relative;
    /* padding-bottom: 72px; */
    /* space for pagination */
}

.container-widget-hcor-hero .hcor-hero-slide-inner {
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}

.container-widget-hcor-hero .hcor-hero-content {
    display: flex;
    flex-direction: column;
    max-width: 460px;
    padding-top: 120px;
}

.container-widget-hcor-hero .hcor-hero-label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.container-widget-hcor-hero .hcor-hero-label-icon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-widget-hcor-hero .hcor-hero-label-line {
    width: 16px;
    height: 1px;
    background-color: #e71861;
}

.container-widget-hcor-hero .hcor-hero-label-text {
    color: #424242;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.container-widget-hcor-hero .hcor-hero-title {
    color: #472A33;
    font-size: 40px;
    font-weight: 600;
    line-height: 115%;
    margin: 0 0 16px 0;
}

.container-widget-hcor-hero .hcor-hero-desc {
    color: #472A33;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0 0 32px 0;
}

.container-widget-hcor-hero .hcor-hero-button-wrapper {
    margin-bottom: 72px;
}

.container-widget-hcor-hero .hcor-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #c4245c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px 72px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.container-widget-hcor-hero .hcor-hero-button:hover {
    background-color: #ab1e50;
    transform: translateY(-2px);
    color: #ffffff;
}

.container-widget-hcor-hero .hcor-hero-bottom-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.container-widget-hcor-hero .hcor-hero-bottom-info-line {
    flex: 1;
    max-width: 180px;
    height: 2px;
    background-color: #f7f7fa;
}

.container-widget-hcor-hero .hcor-hero-bottom-info-text {
    color: #3b3f65;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0;
}

.container-widget-hcor-hero .hcor-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 793px;
    /* width: 50%; */
    /* Give it space alongside content */
}

.container-widget-hcor-hero .hcor-hero-shape-mask {
    width: 100%;
    height: 100%;
}

.container-widget-hcor-hero .image {
    width: 100%;
    height: 793px;
    position: relative;
    mask-image: url('../images/heart-shape.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: bottom left;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.container-widget-hcor-hero .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    animation: zoom-in-out 10s ease infinite alternate;

}

.container-widget-hcor-hero .image .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url('../images/heart-shape-border.svg');
    background-size: 92%;
    background-repeat: no-repeat;
    background-position: bottom 20px left 20px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container-widget-hcor-hero .hcor-hero-bottom-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.container-widget-hcor-hero .hcor-hero-bottom-info .swiper-pagination {
    position: relative;
    text-align: left;
    bottom: initial;
    display: flex;
    gap: 12px;
    align-items: center;
}

.container-widget-hcor-hero .hcor-hero-bottom-info .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    margin: 0 !important;
}

/* Base style for custom pagination bullet line */
.container-widget-hcor-hero .hcor-hero-bottom-info .swiper-pagination-bullet::before {
    content: '';
    display: block;
    height: 4px;
    border-radius: 8px;
    background: #A01942;
    opacity: 0.2;
    width: 132px;
    transition: opacity 0.3s ease;
}

.container-widget-hcor-hero .hcor-hero-bottom-info .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    opacity: 1;
}

/* Custom text label under pagination line */
.container-widget-hcor-hero .hcor-hero-bottom-info .swiper-pagination-bullet .pagination-label {
    color: #472A33;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: opacity 0.3s ease;
}

.container-widget-hcor-hero .hcor-hero-bottom-info .swiper-pagination-bullet.swiper-pagination-bullet-active .pagination-label {
    opacity: 1;
    visibility: visible;
    height: auto;
}

@media(max-width: 1366px) {
	.container-widget-hcor-hero .hcor-hero-slide-inner {
    	gap: 32px;
	}
	
	.container-widget-hcor-hero .hcor-hero-visual {
    	width: 733px;
	}
}

@media (max-width: 1024px) {
    .container-widget-hcor-hero .hcor-hero-bottom-info {
        padding: 0;
        box-sizing: border-box;
    }

    .container-widget-hcor-hero .image,
    .container-widget-hcor-hero .hcor-hero-visual {
        height: auto;
    }

    .container-widget-hcor-hero .hcor-hero-slide-inner {
        flex-direction: column;
/*         gap: 64px; */
        padding: 0 16px;
    }

    .container-widget-hcor-hero .hcor-hero-content {
        max-width: 100%;
        /* padding-top: 40px; */
    }

    .container-widget-hcor-hero .hcor-hero-visual {
        width: 100%;
    }

    .container-widget-hcor-hero .image .overlay {
        background-position: bottom 10px left 10px;
    }
}

@media (max-width: 768px) {
    .container-widget-hcor-hero .image .overlay {
        background-size: 80%;
    }
}

@media (max-width: 640px) {
    .container-widget-hcor-hero .hcor-hero-title {
        font-size: 28px;
    }

    .container-widget-hcor-hero .hcor-hero-label-text {
        font-size: 12px;
        line-height: 18px;
    }

    .container-widget-hcor-hero .hcor-hero-desc {
        font-size: 16px;
    }


}