/* Wrapper */
.hlg-post-slider-wrapper {
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	position: relative;
	min-height: 480px;
	display: flex;
	align-items: stretch;
}

/* Full Width Breakout Option */
.hlg-full-width-breakout {
	width: 100vw;
	left: 50%;
	margin-left: -50vw;
}

/* Swiper Container */
.hlg-swiper-3bcc2cb8 {
	width: 100%;
	height: 100%;
}

/* Slide Inner Structure */
.hlg-slide-inner {
	display: flex;
	width: 100%;
	min-height: 480px;
	background: transparent;
	position: relative;
}

/* Left Side - Content */
.hlg-slide-left-content {
	width: 50%;
	padding: 3rem 2rem 3rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	z-index: 2;
	background: #1B8A8A; /* Default fallback */
	color: #ffffff;
	position: relative;
}

/* Right Side - Image */
.hlg-slide-right-image {
	width: 50%;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.hlg-slide-right-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Mask Blend Options */
.hlg-mask-soft {
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
	mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hlg-mask-strong {
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
	mask-image: linear-gradient(to right, transparent 0%, black 50%);
}

.hlg-mask-none {
	-webkit-mask-image: none;
	mask-image: none;
}

/* Elements Styling */
.hlg-cat-badge {
	background: rgba(255,255,255,0.2);
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	align-self: flex-start;
	margin-bottom: 8px;
}

.hlg-slide-title {
	font-size: 42px;
	font-weight: 700;
	margin: 0;
	color: inherit;
	line-height: 1.2;
}

.hlg-slide-excerpt {
	font-size: 16px;
	opacity: 0.9;
	line-height: 1.6;
	margin: 0;
}

.hlg-slide-meta {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 8px;
	margin-bottom: 8px;
}

.hlg-author {
	display: flex;
	align-items: center;
	gap: 10px;
}

.hlg-author img {
	border-radius: 50%;
}

.hlg-meta-text {
	font-size: 14px;
	opacity: 0.8;
}

.hlg-slide-actions {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.hlg-btn-primary, .hlg-btn-secondary {
	padding: 14px 28px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	text-align: center;
}

.hlg-btn-primary {
	background: #ffffff;
	color: #1B8A8A;
}

.hlg-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hlg-btn-secondary {
	border: 2px solid #ffffff;
	color: #ffffff;
	background: transparent;
}

.hlg-btn-secondary:hover {
	background: rgba(255,255,255,0.1);
}

.hlg-social-proof {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	margin-top: 15px;
	opacity: 0.9;
}

.hlg-stars svg {
	fill: #E8185A;
}

/* Dots Navigation */
.hlg-pagination {
	position: absolute;
	bottom: 20px !important;
	left: 50% !important;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	z-index: 10;
	width: auto !important;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,0.5);
	background: transparent;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	margin: 0 !important;
	cursor: pointer;
}

.swiper-pagination-bullet:hover {
	border-color: rgba(255,255,255,0.9);
	transform: scale(1.2);
}

.swiper-pagination-bullet-active {
	width: 32px;
	height: 8px;
	border-radius: 4px;
	background: #ffffff;
	border: none;
	transform: scale(1) !important;
}

/* Dot Sizes */
.hlg-dots-small .swiper-pagination-bullet { width: 6px; height: 6px; }
.hlg-dots-small .swiper-pagination-bullet-active { width: 24px; height: 6px; }

.hlg-dots-large .swiper-pagination-bullet { width: 10px; height: 10px; }
.hlg-dots-large .swiper-pagination-bullet-active { width: 40px; height: 10px; }

/* Progress Bar */
.hlg-progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: rgba(0,0,0,0.1);
	z-index: 10;
}

.hlg-progress-fill {
	height: 100%;
	width: 0;
	background: #E8185A;
	transition: width 0.1s linear;
}

/* Responsive Styles */
@media (max-width: 767px) {
	.hlg-slide-inner {
		flex-direction: column-reverse;
	}
	.hlg-slide-left-content {
		width: 100%;
		padding: 2.5rem 1.5rem 4rem 1.5rem; /* Extra bottom padding for dots */
	}
	.hlg-slide-right-image {
		width: 100%;
		height: 300px;
	}
	.hlg-slide-title {
		font-size: 28px;
	}
	.hlg-mask-soft, .hlg-mask-strong {
		-webkit-mask-image: linear-gradient(to top, transparent 0%, black 30%);
		mask-image: linear-gradient(to top, transparent 0%, black 30%);
	}
}
