/* SRMunera Widgets - Frontend Styles */

/* Common Styles */
.srmunera-widget {
	position: relative;
	width: 100%;
}

/* Enlaces heredan estilos tipográficos del padre por defecto */
.srmunera-widget a,
.srmunera-hero a,
.srmunera-button-wrapper a,
.srmunera-testimonials a,
.srmunera-post-slider a {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
}

/* Hero Section Widget */
.srmunera-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #FAFAFA;
	position: relative;
	width: 100%;
	overflow: hidden;
}

.srmunera-hero .hero-container {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	width: 100%;
	height: 100%;
}

.srmunera-hero .hero-text-1,
.srmunera-hero .hero-text-2 {
	position: absolute;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 81.74px;
	line-height: 1;
	margin: 0;
	white-space: nowrap;
}

.srmunera-hero .hero-text-1 {
	color: #FAFAFA;
	z-index: 1;
}

.srmunera-hero .hero-text-2 {
	color: #5154F5;
	z-index: 1;
}

.srmunera-hero .hero-center-image {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	pointer-events: none;
}

.srmunera-hero .hero-center-image img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1024px) {
	.srmunera-hero .hero-text-1,
	.srmunera-hero .hero-text-2 {
		font-size: 60px;
	}
	
	.srmunera-hero .hero-center-image {
		width: 60% !important;
		max-width: 400px;
	}
}

@media (max-width: 768px) {
	.srmunera-hero .hero-text-1,
	.srmunera-hero .hero-text-2 {
		font-size: 40px;
	}
	
	.srmunera-hero .hero-center-image {
		width: 80% !important;
		max-width: 300px;
	}
}

@media (max-width: 480px) {
	.srmunera-hero .hero-text-1,
	.srmunera-hero .hero-text-2 {
		font-size: 28px;
	}
}

/* Testimonials Widget */
.srmunera-testimonials {
	width: 100%;
}

.testimonials-grid {
	display: grid;
	gap: 65px;
}

.srmunera-testimonials.columns-1 .testimonials-grid {
	grid-template-columns: repeat(1, 1fr);
}

.srmunera-testimonials.columns-2 .testimonials-grid {
	grid-template-columns: repeat(2, 1fr);
}

.srmunera-testimonials.columns-3 .testimonials-grid {
	grid-template-columns: repeat(3, 1fr);
}

.srmunera-testimonials.columns-4 .testimonials-grid {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
	.srmunera-testimonials.columns-4 .testimonials-grid,
	.srmunera-testimonials.columns-3 .testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 40px;
	}
}

/* Testimonial Card */
.testimonial-card {
	background: #FFFFFF;
	border-radius: 21.14px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	padding: 30px 35px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

/* Person Image */
.testimonial-person-image {
	width: 100%;
	height: auto;
	min-height: 225px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
}

.testimonial-person-image img {
	width: 100%;
	height: 100%;
	min-height: 225px;
	object-fit: cover;
	display: block;
}

/* Video Preview (Thumbnail with Play Button) */
.testimonial-video-preview {
	width: 100%;
	min-height: 225px;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 0;
	position: relative;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	transition: transform 0.3s ease;
}

.testimonial-video-preview:hover {
	transform: scale(1.02);
}

.testimonial-video-preview .video-thumbnail {
	width: 100%;
	height: 100%;
	min-height: 225px;
	object-fit: cover;
	display: block;
}

.testimonial-video-preview .vimeo-thumbnail {
	width: 100%;
	height: 100%;
	min-height: 225px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #f5f5f5;
}

.testimonial-video-preview .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	transition: opacity 0.3s ease;
	pointer-events: none;
	width: 25px;
	height: 41px;
	opacity: 1;
}

.testimonial-video-preview:hover .video-play-button {
	opacity: 0.8;
}

.testimonial-video-preview .video-play-button svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Video Lightbox */
.srmunera-video-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}

.srmunera-video-lightbox.active {
	display: block;
}

.srmunera-video-lightbox .lightbox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.srmunera-video-lightbox .lightbox-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 1200px;
	z-index: 10;
}

.srmunera-video-lightbox .lightbox-close {
	position: absolute;
	top: -50px;
	right: 0;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 40px;
	cursor: pointer;
	padding: 10px;
	line-height: 1;
	transition: transform 0.2s ease;
	z-index: 11;
}

.srmunera-video-lightbox .lightbox-close:hover {
	transform: scale(1.2);
}

.srmunera-video-lightbox .lightbox-video-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	background: #000;
	border-radius: 8px;
}

.srmunera-video-lightbox .lightbox-video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

body.video-lightbox-open {
	overflow: hidden;
}

@media (max-width: 768px) {
	.srmunera-video-lightbox .lightbox-content {
		width: 95%;
	}
	
	.srmunera-video-lightbox .lightbox-close {
		top: -40px;
		font-size: 32px;
	}
	
	.testimonial-video-preview .video-play-button {
		width: 20px;
		height: 33px;
	}
}

/* Content Wrapper */
.testimonial-content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Title */
.testimonial-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 25px;
	line-height: 1;
	color: #121212;
	margin: 0;
}

/* Content */
.testimonial-content {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1;
	color: #121212;
	margin: 0;
}

.testimonial-content p {
	margin: 0 0 1em 0;
	line-height: 1.4;
}

.testimonial-content p:last-child {
	margin-bottom: 0;
}

/* Links and highlights in content */
.testimonial-content strong {
	color: #5154F5;
	font-weight: 700;
}

.testimonial-content a {
	color: #5154F5;
	text-decoration: none;
}

.testimonial-content a:hover {
	text-decoration: underline;
}

/* Divider */
.testimonial-divider {
	width: 100%;
	height: 0;
	border: none;
	border-top: 1px dashed #E0E0E0;
	margin: 0;
}

/* Footer */
.testimonial-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

/* Company Info */
.testimonial-company {
	display: flex;
	align-items: center;
	gap: 10px;
}

.company-logo {
	width: 36px;
	height: 36px;
	border-radius: 4px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
}

.company-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.company-name {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	color: #121212;
}

/* Location Badge */
.testimonial-location {
	padding: 6px 18px;
	border: 1px solid #5154F5;
	border-radius: 5px;
	background: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1;
	color: #5154F5;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Testimonials Carousel (Slider Layout) */
.testimonials-carousel-container {
	width: 100%;
	position: relative;
	padding: 20px 0;
}

.testimonials-swiper-preview,
[class*="testimonials-swiper-"] {
	width: 100%;
	padding: 0;
	overflow: visible;
}

.testimonials-swiper-preview .swiper-wrapper,
[class*="testimonials-swiper-"] .swiper-wrapper {
	align-items: stretch;
}

.testimonials-swiper-preview .swiper-slide,
[class*="testimonials-swiper-"] .swiper-slide {
	height: auto;
	display: flex;
}

.testimonials-swiper-preview .testimonial-card,
[class*="testimonials-swiper-"] .testimonial-card {
	width: 100%;
}

/* Swiper Pagination */
.testimonials-carousel-container .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 40px;
}

.testimonials-carousel-container .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #D0D5DD;
	opacity: 1;
	margin: 0 8px;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.testimonials-carousel-container .swiper-pagination-bullet-active {
	background-color: #5154F5;
	transform: scale(1.2);
}

/* Horizontal Card for Carousel */
.testimonial-card-horizontal {
	display: flex;
	flex-direction: row;
	gap: 0;
	padding: 0;
	min-height: 360px;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.testimonial-card-horizontal:hover {
	transform: none;
}

.testimonial-left-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 35px;
	gap: 13px;
	justify-content: space-between;
	min-width: 50%;
	max-width: 55%;
}

.testimonial-right-media {
	flex: 1;
	position: relative;
	overflow: hidden;
	min-width: 45%;
	max-width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
}

.testimonial-right-media .testimonial-person-image,
.testimonial-right-media .testimonial-video-preview {
	width: 100%;
	height: 100%;
	min-height: 360px;
	margin: 0;
	border-radius: 20px;
	background: #f5f5f5;
}

.testimonial-right-media .testimonial-person-image img,
.testimonial-right-media .video-thumbnail,
.testimonial-right-media .vimeo-thumbnail {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px;
}

/* Tag Style */
.testimonial-tag {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	color: #121212;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: 0.5px;
}

/* Override Title for Horizontal Layout */
.testimonial-card-horizontal .testimonial-title {
	font-size: 35px;
	color: #5154F5;
	line-height: 1.1;
	margin: 0;
}

/* Override Content for Horizontal Layout */
.testimonial-card-horizontal .testimonial-content {
	font-size: 18px;
	line-height: 1.4;
	color: #121212;
	margin: 0;
}

.testimonial-card-horizontal .testimonial-content p {
	margin: 0 0 0.8em 0;
	line-height: 1.4;
}

.testimonial-card-horizontal .testimonial-content p:last-child {
	margin-bottom: 0;
}

/* Divider for Horizontal */
.testimonial-card-horizontal .testimonial-divider {
	border-top: 1px solid rgba(224, 224, 224, 0.5);
	margin: 0;
}

/* Footer for Horizontal */
.testimonial-card-horizontal .testimonial-footer {
	margin: 0;
}

.testimonial-card-horizontal .company-name,
.testimonial-card-horizontal .testimonial-location {
	font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
	.testimonial-card-horizontal {
		min-height: 350px;
	}

	.testimonial-left-content {
		padding: 30px;
		min-width: 50%;
		max-width: 50%;
	}

	.testimonial-right-media {
		min-width: 50%;
		max-width: 50%;
		min-height: 350px;
	}

	.testimonial-right-media .testimonial-person-image,
	.testimonial-right-media .testimonial-video-preview {
		min-height: 350px;
	}

	.testimonial-right-media .testimonial-person-image img,
	.testimonial-right-media .video-thumbnail {
		min-height: 350px;
	}

	.testimonial-card-horizontal .testimonial-title {
		font-size: 28px;
	}

	.testimonial-card-horizontal .testimonial-content {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.testimonial-card {
		padding: 25px;
	}

	.testimonial-title {
		font-size: 20px;
	}

	.testimonial-content {
		font-size: 16px;
	}

	.testimonial-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.testimonial-location {
		align-self: flex-start;
	}

	/* Horizontal Card Mobile */
	.testimonial-card-horizontal {
		flex-direction: column;
		min-height: auto;
	}

	.testimonial-left-content {
		max-width: 100%;
		min-width: 100%;
		padding: 25px;
	}

	.testimonial-right-media {
		max-width: 100%;
		min-width: 100%;
		min-height: 250px;
		order: -1; /* Move image to top on mobile */
		border-radius: 20px 20px 0 0;
	}

	.testimonial-right-media .testimonial-person-image,
	.testimonial-right-media .testimonial-video-preview {
		min-height: 250px;
		border-radius: 20px 20px 0 0;
	}

	.testimonial-right-media .testimonial-person-image img,
	.testimonial-right-media .video-thumbnail,
	.testimonial-right-media .vimeo-thumbnail {
		min-height: 250px;
		border-radius: 20px 20px 0 0;
	}

	.testimonial-card-horizontal .testimonial-title {
		font-size: 24px;
	}

	.testimonial-card-horizontal .testimonial-content {
		font-size: 16px;
	}

	.testimonial-tag {
		font-size: 12px;
	}
}


/* Post Slider Widget */
.srmunera-post-slider {
	position: relative;
	width: 100%;
}

/* Slider Header */
.slider-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3.25rem;
}

/* When there's no title, align navigation to the right */
.slider-header:empty {
	justify-content: flex-end;
}

.slider-header-title {
	margin: 0;
	font-size: var(--theme-font-size-h4, 1.875rem);
	font-weight: var(--theme-font-weight-bold, 700);
	color: var(--theme-color-text, #111112);
	line-height: var(--theme-line-height-h4, 1.875rem);
	flex: 1;
}

.slider-navigation {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-shrink: 0;
	margin-left: auto;
}

.srmunera-post-slider .swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.srmunera-post-slider.overflow-visible .swiper {
	overflow: visible;
}

.srmunera-post-slider .swiper-wrapper {
	display: flex;
	transition-timing-function: linear;
	/* Mejora la suavidad del loop */
}

.srmunera-post-slider .swiper-slide {
	height: auto;
	display: flex;
}

/* Asegurar que los slides duplicados del loop se vean igual */
.srmunera-post-slider .swiper-slide-duplicate {
	opacity: 1 !important;
}

/* Slide Card */
.slide-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	transition: all 0.3s ease;
	overflow: hidden;
	background: var(--theme-color-white, #FFFFFF);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slide-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Background mode styles */
.slide-card.has-background {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 400px;
	overflow: hidden;
}

/* Background image as pseudo-element for zoom effect */
.slide-card.has-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: inherit;
	transition: transform 0.5s ease, filter 0.3s ease;
	z-index: 0;
}

.slide-card.has-background.has-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	transition: opacity 0.3s ease;
	/* Gradient por defecto - puede ser sobrescrito por Elementor */
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

/*.slide-card.has-background:hover.has-overlay::before {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}*/

.slide-card.has-background .slide-content {
	position: relative;
	z-index: 3;
	color: #ffffff;
	/*padding: 20px 24px 28px;*/
	padding: 2.25rem 2.13rem;
}

.slide-card.has-background .slide-title {
	margin: 0;
	font-size: var(--theme-font-size-h4, 1.875rem);
	font-weight: var(--theme-font-weight-semibold, 600);
	line-height: var(--theme-line-height-h4, 1.875rem);
}

.slide-card.has-background .slide-title a {
	color: #ffffff;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.slide-card.has-background .slide-title a:hover {
	opacity: 0.85;
}

.slide-card.has-background .slide-meta,
.slide-card.has-background .slide-excerpt,
.slide-card.has-background .slide-category {
	color: rgba(255, 255, 255, 0.9);
}

/* Ensure button inherits color in background mode */
.slide-card.has-background .slide-button {
	color: inherit;
	border-color: currentColor;
}

.slide-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 12px 12px 0 0;
}

/* Flecha circular que aparece al hacer hover sobre el slide (estilo mobile/desktop) */
.slide-image .hover-arrow {
	position: absolute;
	right: 16px;
	bottom: 0;
	transform: translateY(-50%) translateX(8px);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	opacity: 0;
	transition: opacity 0.28s ease, transform 0.28s ease;
	z-index: 5;
}

.slide-image .hover-arrow svg {
	width: 9px;
	height: 17px;
	display: block;
}

/* Mostrar la flecha al hacer hover sobre la tarjeta */
.srmunera-post-slider .slide-card:hover .slide-image .hover-arrow {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* También mostrar cuando se hace hover sobre la propia imagen (por si existe overlay) */
.srmunera-post-slider .slide-image:hover .hover-arrow {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* Mostrar flecha también para slides con imagen como background */
.slide-card.has-background>.hover-arrow {
	position: absolute;
	right: 16px;
	bottom: 0.7rem;
	transform: translateY(-50%) translateX(8px);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
	opacity: 0;
	transition: opacity 0.28s ease, transform 0.28s ease;
	z-index: 6;
}

.slide-card.has-background>.hover-arrow svg {
	width: 9px;
	height: 17px;
	display: block;
}

.srmunera-post-slider .slide-card.has-background:hover>.hover-arrow {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.slide-image img {
	width: 100%;
	display: block;
	transition: transform 0.5s ease;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.slide-image a {
	display: block;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.slide-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px;
}

/* In background mode, push content to bottom */
.slide-card.has-background .slide-content {
	justify-content: flex-end;
}

/* In normal mode, create a content wrapper for grouping */
.slide-content>* {
	margin-bottom: 0;
}

.slide-content>*:not(:last-child) {
	margin-bottom: 12px;
}

.slide-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.slide-category {
	display: inline-block;
	padding: 6px 14px;
	background: var(--theme-color-primary, #23388E);
	color: #ffffff;
	font-size: 11px;
	border-radius: 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.slide-title {
	margin: 0 0 12px 0;
	font-size: var(--theme-font-size-h5, 1.5625rem);
	font-weight: var(--theme-font-weight-semibold, 600);
	line-height: var(--theme-line-height-h5, 1.875rem);
	color: var(--theme-color-text, #111112);
}

.slide-title a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.slide-title a:hover {
	color: var(--theme-color-primary, #23388E);
}

.slide-meta {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: #999;
	margin-bottom: 12px;
	font-weight: 400;
}

.slide-excerpt {
	margin-bottom: 20px;
	/*flex-grow: 0;*/
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-regular, 400);
	line-height: var(--theme-line-height-base, 1.5625rem);
	color: var(--theme-color-text, #111112);
}

.slide-button {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
	align-self: flex-start;
	margin-top: auto;
	padding: 10px 24px;
	border-radius: 0.63rem;
	font-size: inherit;
	font-weight: 500;
	line-height: inherit;
	background: var(--theme-color-primary, #23388E);
	color: #ffffff;
}

.slide-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(35, 56, 142, 0.3);
	background: var(--theme-color-black, #111112);
}

/* Hover Effects - Image */
.srmunera-post-slider.hover-image-zoom .slide-card:hover .slide-image img {
	transform: scale(1.1);
}

/* Hover effect for background mode */
.srmunera-post-slider.hover-image-zoom .slide-card.has-background:hover::after {
	transform: scale(1.1);
}

.srmunera-post-slider.hover-image-zoom-out .slide-card:hover .slide-image img {
	transform: scale(0.95);
}

.srmunera-post-slider.hover-image-zoom-out .slide-card.has-background:hover::after {
	transform: scale(0.95);
}

.srmunera-post-slider.hover-image-grayscale .slide-image img {
	filter: grayscale(100%);
}

.srmunera-post-slider.hover-image-grayscale .slide-card.has-background::after {
	filter: grayscale(100%);
}

.srmunera-post-slider.hover-image-grayscale .slide-card:hover .slide-image img {
	filter: grayscale(0%);
}

.srmunera-post-slider.hover-image-grayscale .slide-card.has-background:hover::after {
	filter: grayscale(0%);
}

.srmunera-post-slider.hover-image-blur .slide-card:hover .slide-image img {
	filter: blur(2px);
}

.srmunera-post-slider.hover-image-blur .slide-card.has-background:hover::after {
	filter: blur(2px);
}

.srmunera-post-slider.hover-image-brightness .slide-card:hover .slide-image img {
	filter: brightness(1.2);
}

.srmunera-post-slider.hover-image-brightness .slide-card.has-background:hover::after {
	filter: brightness(1.2);
}

/* Hover Effects - Card */
.srmunera-post-slider.hover-card-lift .slide-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.srmunera-post-slider.hover-card-scale .slide-card {
	transition: transform 0.3s ease;
}

.srmunera-post-slider.hover-card-scale .slide-card:hover {
	transform: scale(1.03);
}

.srmunera-post-slider.hover-card-shadow .slide-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.srmunera-post-slider .swiper-button-prev,
.srmunera-post-slider .swiper-button-next,
.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
	transition: all 0.3s ease;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: relative;
	margin: 0;
}

/* Arrows in header navigation */
.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
	position: static;
}

.srmunera-post-slider .swiper-button-prev:after,
.srmunera-post-slider .swiper-button-next:after,
.slider-navigation .swiper-button-prev:after,
.slider-navigation .swiper-button-next:after {
	font-size: 18px;
	font-weight: 700;
}

.srmunera-post-slider .swiper-button-prev:hover,
.srmunera-post-slider .swiper-button-next:hover,
.slider-navigation .swiper-button-prev:hover,
.slider-navigation .swiper-button-next:hover {
	/*transform: scale(1.1);*/
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.srmunera-post-slider .swiper-button-disabled,
.slider-navigation .swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.srmunera-post-slider .swiper-button-disabled:hover,
.slider-navigation .swiper-button-disabled:hover {
	transform: none;
}

/* Arrows Position - Inside */
.srmunera-post-slider.arrows-inside .swiper-button-prev {
	left: 10px;
}

.srmunera-post-slider.arrows-inside .swiper-button-next {
	right: 10px;
}

/* Arrows Position - Outside */
.srmunera-post-slider.arrows-outside {
	padding: 0 60px;
}

.srmunera-post-slider.arrows-outside .swiper-button-prev {
	left: 0;
}

.srmunera-post-slider.arrows-outside .swiper-button-next {
	right: 0;
}

@media (max-width: 768px) {
	.srmunera-post-slider.arrows-outside {
		padding: 0 40px;
	}
}

/* Pagination */
.srmunera-post-slider .swiper-pagination {
	position: relative;
	margin-top: 30px;
}

.srmunera-post-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--theme-color-primary, #23388E);
	opacity: 0.3;
	transition: all 0.3s ease;
}

.srmunera-post-slider .swiper-pagination-bullet:hover {
	opacity: 0.6;
}

.srmunera-post-slider .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.3);
	background: var(--theme-color-primary, #23388E);
}

/* Prevent blinking text caret when bullets are focused/clicked */
.srmunera-post-slider .swiper-pagination .swiper-pagination-bullet {
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	caret-color: transparent;
}

.srmunera-post-slider .swiper-pagination .swiper-pagination-bullet:focus {
	outline: none;
}

/* Apply same behavior to all widget swipers */
.srmunera-widget .swiper-pagination .swiper-pagination-bullet {
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	caret-color: transparent;
}

.srmunera-widget .swiper-pagination .swiper-pagination-bullet:focus {
	outline: none;
}

.srmunera-post-slider .swiper-pagination-fraction,
.srmunera-post-slider .swiper-pagination-progressbar {
	margin-top: 20px;
}

.srmunera-post-slider .swiper-pagination-progressbar-fill {
	background: var(--theme-color-primary, #23388E);
}

/* Effects - Cube, Coverflow, Flip, Cards */
.srmunera-post-slider .swiper-slide-shadow-left,
.srmunera-post-slider .swiper-slide-shadow-right,
.srmunera-post-slider .swiper-slide-shadow-top,
.srmunera-post-slider .swiper-slide-shadow-bottom {
	background: rgba(0, 0, 0, 0.3);
}

/* Loading State */
.srmunera-post-slider {
	position: relative;
}

.srmunera-post-slider.swiper-loading {
	min-height: 400px;
}

.srmunera-post-slider.swiper-loading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	width: 50px;
	height: 50px;
	border: 4px solid var(--theme-color-bg-alt, #F5F5F5);
	border-top: 4px solid var(--theme-color-primary, #23388E);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.srmunera-post-slider.swiper-loading .swiper {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.srmunera-post-slider:not(.swiper-loading) .swiper {
	opacity: 1;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.slider-header {
		margin-bottom: 2rem !important;
	}

	.slider-header-title {
		font-size: 22px;
	}

	.slider-navigation {
		gap: 8px;
	}

	.slider-navigation .swiper-button-prev,
	.slider-navigation .swiper-button-next {
		width: 42px;
		height: 42px;
	}

	.slider-navigation .swiper-button-prev:after,
	.slider-navigation .swiper-button-next:after {
		font-size: 16px;
	}

	.slide-card.has-background {
		min-height: 300px;
	}

	.slide-card.has-background .slide-title {
		font-size: 22px;
	}

	.slide-card.has-background .slide-content {
		padding: 16px 20px 24px;
	}

	.slide-title {
		font-size: 18px;
	}

	.srmunera-post-slider .swiper-button-prev,
	.srmunera-post-slider .swiper-button-next {
		width: 42px;
		height: 42px;
	}

	.srmunera-post-slider .swiper-button-prev:after,
	.srmunera-post-slider .swiper-button-next:after {
		font-size: 16px;
	}
}

/* ========================================
   POST LIST WIDGET
   ======================================== */

.srmunera-post-list {
	width: 100%;
}

/* Grid Container */
.srmunera-post-list .post-list-container {
	display: grid;
	gap: 65px;
	width: 100%;
}

/* Grid Columns */
.srmunera-post-list[data-columns="1"] .post-list-container {
	grid-template-columns: repeat(1, 1fr);
}

.srmunera-post-list[data-columns="2"] .post-list-container {
	grid-template-columns: repeat(2, 1fr);
}

.srmunera-post-list[data-columns="3"] .post-list-container {
	grid-template-columns: repeat(3, 1fr);
}

.srmunera-post-list[data-columns="4"] .post-list-container {
	grid-template-columns: repeat(4, 1fr);
}

/* Card Item */
.srmunera-post-list .post-list-item {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.srmunera-post-list .post-list-item:hover {
	transform: translateY(-5px);
	box-shadow: 0px 8px 20px 2px rgba(0, 0, 0, 0.15);
}

/* Image */
.srmunera-post-list .post-list-image {
	width: 100%;
	height: 324px;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
}

.srmunera-post-list .post-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.srmunera-post-list .post-list-item:hover .post-list-image img {
	transform: scale(1.05);
}

/* Content */
.srmunera-post-list .post-list-content {
	padding: 30px 31px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1;
}

/* Title */
.srmunera-post-list .post-list-item-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 35px;
	line-height: 1;
	color: #121212;
	margin: 0 0 5px 0;
}

/* Excerpt/Description */
.srmunera-post-list .post-list-excerpt {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: #000000;
	margin: 0 0 15px 0;
}

/* Button */
.srmunera-post-list .post-list-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 15px 30px;
	border: 1px solid #FFA000;
	border-radius: 13px;
	background: transparent;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #FFA000;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	width: fit-content;
	align-self: flex-start;
	margin-top: auto;
}


/* ===================================
   Image Hotspots Widget
   =================================== */

/* Container */
.srmunera-hotspots-wrapper {
	width: 100%;
	position: relative;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	padding: 50px;
	overflow: visible;
}

/* Title */
.hotspots-title {
	text-align: center;
	margin-bottom: 50px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 81.74px;
	line-height: 1;
}

.hotspots-title-line-1 {
	color: #121212;
}

.hotspots-title-line-2 {
	color: #5154F5;
}

@media (max-width: 1024px) {
	.hotspots-title {
		font-size: 60px;
	}
	
	.srmunera-hotspots-wrapper {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.hotspots-title {
		font-size: 40px;
		margin-bottom: 30px;
	}
	
	.srmunera-hotspots-wrapper {
		padding: 30px;
	}
}

@media (max-width: 480px) {
	.hotspots-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	.srmunera-hotspots-wrapper {
		padding: 20px;
	}
}

.srmunera-hotspots-container {
	position: relative;
	width: 100%;
	overflow: visible;
}

/* Background image layer with opacity control */
.srmunera-hotspots-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--bg-image);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	transition: opacity 0.4s ease;
	z-index: 0;
}

/* Fade out background when hotspot is active */
.srmunera-hotspots-container.has-active-hotspot::before {
	opacity: 0;
}

/* Highlight overlay container */
.hotspots-highlight-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

/* Show highlight overlay when active */
.srmunera-hotspots-container.has-active-hotspot .hotspots-highlight-overlay {
	opacity: 1;
	visibility: visible;
}

/* Hotspot Item */
.hotspot-item {
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.hotspot-item.is-active {
	z-index: 100;
}

/* Hotspot Button */
.hotspot-button {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50% !important;
	background-color: #FFFFFF;
	border: 2px solid #FFA000;
	border-style: solid;
	cursor: pointer;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
	z-index: 2;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hotspot-button:hover {
	transform: scale(1.1);
	box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.hotspot-button:focus {
	outline: none;
	box-shadow: 0px 0px 0px 3px rgba(255, 160, 0, 0.3);
}

/* Icon - Plus Sign */
.hotspot-button::before,
.hotspot-button::after {
	content: '';
	position: absolute;
	background-color: #FFA000;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Vertical line of plus */
.hotspot-button::before {
	width: 2px;
	height: 12px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* Horizontal line of plus */
.hotspot-button::after {
	width: 12px;
	height: 2px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/* Active state - Change background and icon to X */
.hotspot-item.is-active .hotspot-button {
	background-color: #FFA000;
	border-color: #FFA000;
	border-radius: 50% !important;
}

.hotspot-item.is-active .hotspot-button::before,
.hotspot-item.is-active .hotspot-button::after {
	background-color: #121212;
	height: 2px;
	width: 14px;
}

.hotspot-item.is-active .hotspot-button::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.hotspot-item.is-active .hotspot-button::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* Force circular buttons - Override Elementor styles */
.elementor-widget-srmunera-image-hotspots .hotspot-button,
.srmunera-hotspots-wrapper .hotspot-button,
button.hotspot-button {
	border-radius: 50% !important;
}

/* Hotspot Line */
.hotspot-line {
	position: absolute;
	background-color: #FFA000;
	height: 2px;
	width: 0;
	transform-origin: left center;
	transition: width 0.4s ease;
	z-index: 0;
	pointer-events: none;
}

/* Line positioning based on popup position */
.hotspot-item[data-popup-position="left"] .hotspot-line,
.hotspot-item.popup-left .hotspot-line {
	left: auto;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.hotspot-item[data-popup-position="right"] .hotspot-line,
.hotspot-item.popup-right .hotspot-line {
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.hotspot-item[data-popup-position="top"] .hotspot-line,
.hotspot-item.popup-top .hotspot-line {
	left: 50%;
	top: auto;
	bottom: 20px;
	transform: translateX(-50%) rotate(90deg);
}

.hotspot-item[data-popup-position="bottom"] .hotspot-line,
.hotspot-item.popup-bottom .hotspot-line {
	left: 50%;
	top: 20px;
	transform: translateX(-50%) rotate(90deg);
}

/* Active state - Show line */
.hotspot-item.is-active .hotspot-line {
	width: 150px;
}

/* Hotspot Popup */
.hotspot-popup {
	position: absolute;
	background-color: #FFFFFF;
	border-radius: 21.14px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	padding: 34px;
	width: 310px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
	transform-origin: center;
	transition: opacity 0.3s ease 0.2s, 
	            transform 0.3s ease 0.2s, 
	            visibility 0.3s ease 0.2s;
	z-index: 3;
	pointer-events: none;
}

/* Popup positioning */
.hotspot-item[data-popup-position="left"] .hotspot-popup,
.hotspot-item.popup-left .hotspot-popup {
	right: calc(100% + 100px);
	top: 50%;
	transform: translateY(-50%) scale(0);
	transform-origin: right center;
}

.hotspot-item[data-popup-position="right"] .hotspot-popup,
.hotspot-item.popup-right .hotspot-popup {
	left: calc(100% + 100px);
	top: 50%;
	transform: translateY(-50%) scale(0);
	transform-origin: left center;
}

.hotspot-item[data-popup-position="top"] .hotspot-popup,
.hotspot-item.popup-top .hotspot-popup {
	left: 50%;
	bottom: calc(100% + 100px);
	transform: translateX(-50%) scale(0);
	transform-origin: center bottom;
}

.hotspot-item[data-popup-position="bottom"] .hotspot-popup,
.hotspot-item.popup-bottom .hotspot-popup {
	left: 50%;
	top: calc(100% + 100px);
	transform: translateX(-50%) scale(0);
	transform-origin: center top;
}

/* Active state - Show popup with zoom animation */
.hotspot-item.is-active .hotspot-popup {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.hotspot-item.is-active[data-popup-position="left"] .hotspot-popup,
.hotspot-item.is-active.popup-left .hotspot-popup {
	transform: translateY(-50%) scale(1);
}

.hotspot-item.is-active[data-popup-position="right"] .hotspot-popup,
.hotspot-item.is-active.popup-right .hotspot-popup {
	transform: translateY(-50%) scale(1);
}

.hotspot-item.is-active[data-popup-position="top"] .hotspot-popup,
.hotspot-item.is-active.popup-top .hotspot-popup {
	transform: translateX(-50%) scale(1);
}

.hotspot-item.is-active[data-popup-position="bottom"] .hotspot-popup,
.hotspot-item.is-active.popup-bottom .hotspot-popup {
	transform: translateX(-50%) scale(1);
}

/* Popup Content */
.hotspot-popup-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hotspot-popup-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	color: #5154F5;
	margin: 0;
}

.hotspot-popup-subtitle {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.3;
	color: #121212;
	margin: 0;
}

.hotspot-popup-description {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 0.9rem;
	line-height: 1.4;
	color: #121212;
	margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.hotspot-popup {
		width: 280px;
		padding: 28px;
	}
	
	.hotspot-item.is-active .hotspot-line {
		width: 120px;
	}
	
	.hotspot-item[data-popup-position="left"] .hotspot-popup,
	.hotspot-item.popup-left .hotspot-popup {
		right: calc(100% + 80px);
	}
	
	.hotspot-item[data-popup-position="right"] .hotspot-popup,
	.hotspot-item.popup-right .hotspot-popup {
		left: calc(100% + 80px);
	}
	
	.hotspot-item[data-popup-position="top"] .hotspot-popup,
	.hotspot-item.popup-top .hotspot-popup {
		bottom: calc(100% + 80px);
	}
	
	.hotspot-item[data-popup-position="bottom"] .hotspot-popup,
	.hotspot-item.popup-bottom .hotspot-popup {
		top: calc(100% + 80px);
	}
	
	/* Ensure circular buttons on tablet */
	.elementor-widget-srmunera-image-hotspots .hotspot-button,
	.srmunera-hotspots-wrapper .hotspot-button {
		border-radius: 50% !important;
	}
}

@media (max-width: 768px) {
	.hotspot-button {
		width: 35px;
		height: 35px;
		border-radius: 50% !important;
	}
	
	.hotspot-popup {
		width: 250px;
		padding: 24px;
		position: fixed;
		left: 50% !important;
		top: 50% !important;
		right: auto !important;
		bottom: auto !important;
		transform: translate(-50%, -50%) scale(0) !important;
	}
	
	.hotspot-item.is-active .hotspot-popup {
		transform: translate(-50%, -50%) scale(1) !important;
	}
	
	.hotspot-line {
		display: none;
	}
	
	.hotspot-popup-title {
		font-size: 16px;
	}
	
	.hotspot-popup-subtitle {
		font-size: 13px;
	}
	
	.hotspot-popup-description {
		font-size: 12px;
	}
	
	/* Ensure circular buttons on mobile */
	.elementor-widget-srmunera-image-hotspots .hotspot-button,
	.srmunera-hotspots-wrapper .hotspot-button {
		border-radius: 50% !important;
	}
}

@media (max-width: 480px) {
	.hotspot-button {
		width: 30px;
		height: 30px;
		border-radius: 50% !important;
	}
	
	.hotspot-popup {
		width: calc(100vw - 40px);
		max-width: 300px;
	}
	
	/* Ensure circular buttons on small mobile */
	.elementor-widget-srmunera-image-hotspots .hotspot-button,
	.srmunera-hotspots-wrapper .hotspot-button {
		border-radius: 50% !important;
	}
}

.srmunera-post-list .post-list-button:hover {
	background: #FFA000;
	color: #121212 !important;
	transform: translateY(-2px);
}

/* Pagination */
.srmunera-post-list .post-list-pagination {
	margin-top: 50px;
	text-align: center;
}

/* Load More Button */
.srmunera-post-list .load-more-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #FFA000;
	background: transparent;
	border: 1px solid #FFA000;
	border-radius: 13px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.srmunera-post-list .load-more-button:hover {
	background: #FFA000;
	color: #121212;
	transform: translateY(-2px);
}

.srmunera-post-list .load-more-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.srmunera-post-list .load-more-button.loading {
	opacity: 0.7;
}

/* Page Numbers Pagination */
.srmunera-post-list .page-numbers {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.srmunera-post-list .page-numbers a,
.srmunera-post-list .page-numbers .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 8px 12px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #121212;
	background: #ffffff;
	border: 1px solid #DBDBDB;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.srmunera-post-list .page-numbers a:hover {
	background: #FFA000;
	color: #121212;
	border-color: #FFA000;
}

.srmunera-post-list .page-numbers .current {
	background: #FFA000;
	color: #121212;
	border-color: #FFA000;
}

/* Prev/Next Pagination */
.srmunera-post-list .prev-next-pagination {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.srmunera-post-list .prev-next-pagination a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #FFA000;
	background: transparent;
	border: 1px solid #FFA000;
	border-radius: 13px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.srmunera-post-list .prev-next-pagination a:hover:not(.disabled) {
	background: #FFA000;
	color: #121212;
	transform: translateY(-2px);
}

.srmunera-post-list .prev-next-pagination a.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

/* Animation for newly loaded items */
.srmunera-post-list .post-list-item.ajax-loaded {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* No Posts Message */
.srmunera-post-list .no-posts {
	text-align: center;
	padding: 3rem;
	font-size: 1rem;
	color: #999;
	grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 1200px) {
	.srmunera-post-list[data-columns="4"] .post-list-container {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.srmunera-post-list .post-list-container {
		gap: 40px;
	}
}

@media (max-width: 1024px) {
	.srmunera-post-list[data-columns="3"] .post-list-container,
	.srmunera-post-list[data-columns="4"] .post-list-container {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.srmunera-post-list .post-list-item {
		height: auto;
	}
	
	.srmunera-post-list .post-list-image {
		height: 250px;
	}
}

@media (max-width: 768px) {
	.srmunera-post-list .post-list-container {
		grid-template-columns: repeat(1, 1fr) !important;
		gap: 30px;
	}
	
	.srmunera-post-list .post-list-item {
		height: auto;
	}
	
	.srmunera-post-list .post-list-image {
		height: 220px;
	}
	
	.srmunera-post-list .post-list-item-title {
		font-size: 28px;
	}
	
	.srmunera-post-list .post-list-button {
		font-size: 16px;
		padding: 12px 24px;
	}
}

/* ===================================================================
   Image Swiper Widget - Estilos usando variables del theme
   =================================================================== */

/* Contenedor principal del swiper - diseño de Figma */
.srmunera-image-swiper {
	position: relative;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.srmunera-image-swiper .swiper {
	padding: 36px 0;
	overflow: hidden;
	width: 100%;
}

.srmunera-image-swiper .swiper-slide {
	padding: 0 53px;
}

.srmunera-image-swiper .swiper-wrapper {
	align-items: stretch;
}

.srmunera-image-swiper .swiper-slide {
	display: flex;
	gap: 70px;
	align-items: center;
	height: auto;
	width: 100%;
	flex-shrink: 0;
}

.srmunera-image-swiper .srmunera-slide-media {
	flex-shrink: 0;
	width: 560px;
	max-width: 50%;
	border-radius: 20px;
	overflow: hidden;
}

.srmunera-image-swiper .srmunera-slide-media img,
.srmunera-image-swiper .srmunera-slide-media video {
	width: 100%;
	height: 324px;
	display: block;
	object-fit: cover;
}

.srmunera-image-swiper .srmunera-slide-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 11px;
	min-width: 0;
}

/* Título - usa estilos h2 del theme automáticamente */
.srmunera-image-swiper .slide-title {
	margin: 0;
	/* El theme define: font-size: 35px, font-weight: 700, color: #121212 */
}

/* Subtítulo/Tag - 13px bold azul uppercase */
.srmunera-image-swiper .slide-subtitle {
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: normal;
	color: #5154F5;
	text-transform: uppercase;
	margin: 0;
}

/* Descripción - usa estilos p del theme automáticamente */
.srmunera-image-swiper .slide-description {
	margin: 0;
	/* El theme define: font-size: 18px, font-weight: 400, color: #121212 */
}

/* Navegación arrows - SVG customizados */
.srmunera-image-swiper .swiper-button-prev,
.srmunera-image-swiper .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 27px;
	margin-top: 0;
	z-index: 10;
	cursor: pointer;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: opacity 0.3s ease;
}

/* Ocultar icono default de Swiper */
.srmunera-image-swiper .swiper-button-prev::after,
.srmunera-image-swiper .swiper-button-next::after {
	display: none;
}

/* Flecha izquierda - SVG personalizado */
.srmunera-image-swiper .swiper-button-prev {
	left: 36px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3E%3Cpath d='M0.802839 15.1239L11.2418 25.5629C12.9686 27.2896 15.9211 26.0667 15.9211 23.6246L15.9211 2.74667C15.9211 0.304622 12.9686 -0.918359 11.2418 0.808432L0.802837 11.2474C-0.267625 12.3179 -0.267624 14.0534 0.802839 15.1239Z' fill='%23FFA000'/%3E%3C/svg%3E");
}

/* Flecha derecha - SVG personalizado */
.srmunera-image-swiper .swiper-button-next {
	right: 36px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3E%3Cpath d='M15.1183 11.2472L4.67934 0.808241C2.95254 -0.918549 0 0.304434 0 2.74648V23.6244C0 26.0665 2.95255 27.2895 4.67934 25.5627L15.1183 15.1237C16.1888 14.0532 16.1888 12.3177 15.1183 11.2472Z' fill='%23FFA000'/%3E%3C/svg%3E");
}

/* Hover effect - cambiar SVG a negro */
.srmunera-image-swiper .swiper-button-prev:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3E%3Cpath d='M0.802839 15.1239L11.2418 25.5629C12.9686 27.2896 15.9211 26.0667 15.9211 23.6246L15.9211 2.74667C15.9211 0.304622 12.9686 -0.918359 11.2418 0.808432L0.802837 11.2474C-0.267625 12.3179 -0.267624 14.0534 0.802839 15.1239Z' fill='%23121212'/%3E%3C/svg%3E");
}

.srmunera-image-swiper .swiper-button-next:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='27' viewBox='0 0 16 27' fill='none'%3E%3Cpath d='M15.1183 11.2472L4.67934 0.808241C2.95254 -0.918549 0 0.304434 0 2.74648V23.6244C0 26.0665 2.95255 27.2895 4.67934 25.5627L15.1183 15.1237C16.1888 14.0532 16.1888 12.3177 15.1183 11.2472Z' fill='%23121212'/%3E%3C/svg%3E");
}

.srmunera-image-swiper .swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

/* Ocultar paginación cuando está desactivada */
.srmunera-image-swiper.no-pagination .swiper-pagination {
	display: none !important;
}

/* Ocultar flechas de navegación cuando están desactivadas */
.srmunera-image-swiper.no-arrows .swiper-button-prev,
.srmunera-image-swiper.no-arrows .swiper-button-next {
	display: none !important;
}

/* Responsive - ajustes para tablets */
@media (max-width: 1024px) {
	.srmunera-image-swiper .swiper {
		padding: 24px 40px;
	}
	
	.srmunera-image-swiper .swiper-slide {
		gap: 40px;
	}
	
	.srmunera-image-swiper .srmunera-slide-media {
		max-width: 45%;
		width: auto;
	}
	
	.srmunera-image-swiper .srmunera-slide-media img,
	.srmunera-image-swiper .srmunera-slide-media video {
		height: auto;
		min-height: 250px;
	}
	
	.srmunera-image-swiper .slide-title {
		font-size: 28px;
	}
	
	.srmunera-image-swiper .slide-subtitle {
		font-size: 12px;
	}
	
	.srmunera-image-swiper .slide-description {
		font-size: 16px;
	}
}

/* Responsive - ajustes para móvil */
@media (max-width: 768px) {
	.srmunera-image-swiper .swiper {
		padding: 20px;
	}
	
	.srmunera-image-swiper .swiper-slide {
		flex-direction: column;
		gap: 20px;
	}
	
	.srmunera-image-swiper .srmunera-slide-media {
		max-width: 100%;
		width: 100%;
	}
	
	.srmunera-image-swiper .srmunera-slide-media img,
	.srmunera-image-swiper .srmunera-slide-media video {
		height: auto;
		min-height: 200px;
	}
	
	.srmunera-image-swiper .srmunera-slide-content {
		width: 100%;
	}
	
	.srmunera-image-swiper .slide-title {
		font-size: 24px;
	}
	
	.srmunera-image-swiper .slide-subtitle {
		font-size: 11px;
	}
	
	.srmunera-image-swiper .slide-description {
		font-size: 15px;
	}
	
	.srmunera-image-swiper .swiper-button-prev,
	.srmunera-image-swiper .swiper-button-next {
		width: 28px;
		height: 28px;
	}
}

/* ===================================
   FAQs Widget
   =================================== */

/* Contenedor principal - usa la clase shadow-card del theme */
.srmunera-faqs-widget {
	padding: 65px 37px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

/* Item individual del FAQ */
.srmunera-faq-item {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Header del acordeón (botón clickeable) */
.srmunera-faq-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
	transition: all 0.3s ease;
}

.srmunera-faq-header:hover {
	opacity: 0.8;
}

.srmunera-faq-header:focus {
	outline: none;
}

/* Pregunta del FAQ - H3 25px bold negro */
.srmunera-faq-question {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 25px;
	line-height: normal;
	color: #121212;
	margin: 0;
	flex: 1;
	padding-right: 20px;
}

/* Icono chevron */
.srmunera-faq-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFA000;
	position: relative;
}

.srmunera-faq-icon svg {
	width: 27px;
	height: 16px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}

/* Mostrar flecha hacia abajo cuando está cerrado */
.srmunera-faq-item:not(.is-open) .srmunera-faq-icon .faq-icon-open {
	opacity: 0;
	pointer-events: none;
}

.srmunera-faq-item:not(.is-open) .srmunera-faq-icon .faq-icon-closed {
	opacity: 1;
}

/* Mostrar flecha hacia arriba cuando está abierto */
.srmunera-faq-item.is-open .srmunera-faq-icon .faq-icon-open {
	opacity: 1;
}

.srmunera-faq-item.is-open .srmunera-faq-icon .faq-icon-closed {
	opacity: 0;
	pointer-events: none;
}

/* Contenido expandible */
.srmunera-faq-content {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}

/* Contenido cuando está abierto - usa max-height inline desde JS */
.srmunera-faq-item.is-open .srmunera-faq-content {
	/* El max-height se establece dinámicamente via JavaScript */
}

/* Respuesta - 18px regular azul */
.srmunera-faq-answer {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: normal;
	color: #5154F5;
	margin: 0;
}

.srmunera-faq-answer p {
	margin: 0 0 10px 0;
}

.srmunera-faq-answer p:last-child {
	margin-bottom: 0;
}

/* Línea divisoria */
.srmunera-faq-divider {
	height: 2px;
	background-color: rgba(18, 18, 18, 0.2);
	width: 100%;
}

/* Divisor más oscuro cuando está abierto */
.srmunera-faq-item.is-open .srmunera-faq-divider {
	background-color: rgba(18, 18, 18, 0.3);
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
	.srmunera-faqs-widget {
		padding: 50px 30px;
		gap: 30px;
	}
	
	.srmunera-faq-question {
		font-size: 22px;
	}
	
	.srmunera-faq-answer {
		font-size: 16px;
	}
	
	.srmunera-faq-icon {
		width: 28px;
		height: 28px;
	}
	
	.srmunera-faq-icon svg {
		width: 24px;
		height: 14px;
	}
}

/* Responsive - Móvil */
@media (max-width: 768px) {
	.srmunera-faqs-widget {
		padding: 40px 25px;
		gap: 25px;
	}
	
	.srmunera-faq-item {
		gap: 12px;
	}
	
	.srmunera-faq-question {
		font-size: 20px;
		padding-right: 15px;
	}
	
	.srmunera-faq-answer {
		font-size: 15px;
	}
	
	.srmunera-faq-icon {
		width: 24px;
		height: 24px;
	}
	
	.srmunera-faq-icon svg {
		width: 20px;
		height: 12px;
	}
}

/* Responsive - Móvil pequeño */
@media (max-width: 480px) {
	.srmunera-faqs-widget {
		padding: 30px 20px;
		gap: 20px;
	}
	
	.srmunera-faq-question {
		font-size: 18px;
	}
	
	.srmunera-faq-answer {
		font-size: 14px;
	}
}

/* ========================================
   Hero Swiper Widget
   ======================================== */

.srmunera-hero-swiper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.srmunera-hero-swiper .swiper {
	width: 100%;
	height: 100%;
}

.srmunera-hero-swiper .swiper-slide {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background-color: #FAFAFA;
	width: 100% !important;
}

/* Background Styles - FULL WIDTH */
.hero-swiper-background {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 100%;
	z-index: 0;
}

.hero-image-background {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-color-background {
	width: 100%;
	height: 100%;
}

.hero-video-background {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.hero-video-background iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw; /* 16:9 aspect ratio */
	min-height: 100vh;
	min-width: 177.77vh; /* 16:9 aspect ratio */
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

/* Content Wrapper - DENTRO DEL CONTENEDOR */
.hero-swiper-content-wrapper {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 60px 80px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 60px;
	box-sizing: border-box;
}

/* Asegurar que el slide respeta el full-width del background */
.elementor-widget-srmunera-hero-swiper .elementor-widget-container {
	width: 100%;
	max-width: 100%;
}

.elementor-widget-srmunera-hero-swiper {
	width: 100%;
	max-width: 100%;
}

/* Content */
.hero-swiper-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 600px;
}

/* Title */
.hero-swiper-title {
	/* Estilos del título - pendiente de definir */
}

/* ========================================
   PRODUCT GALLERY WIDGET
   ======================================== */

.product-gallery-widget {
	width: 100%;
	position: relative;
}

/* Main Gallery Slider */
.product-gallery-main {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Aspect Ratios */
.product-gallery-main.aspect-16-9 .swiper-slide {
	aspect-ratio: 16 / 9;
}

.product-gallery-main.aspect-4-3 .swiper-slide {
	aspect-ratio: 4 / 3;
}

.product-gallery-main.aspect-1-1 .swiper-slide {
	aspect-ratio: 1 / 1;
}

.product-gallery-main.aspect-auto .swiper-slide {
	height: auto;
}

.product-gallery-main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	overflow: hidden;
}

.product-gallery-main .swiper-slide img {
	width: 100% !important;
	max-width: none !important;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Navigation Arrows */
.product-gallery-main .swiper-button-prev,
.product-gallery-main .swiper-button-next {
	width: 40px;
	height: 40px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	cursor: pointer;
	color: transparent !important;
}

.product-gallery-main .swiper-button-prev:hover,
.product-gallery-main .swiper-button-next:hover {
	transform: scale(1.1);
}

.product-gallery-main .swiper-button-prev::after,
.product-gallery-main .swiper-button-next::after {
	content: none !important;
	display: none !important;
}

.product-gallery-main .swiper-button-prev svg,
.product-gallery-main .swiper-button-next svg {
	width: 24px;
	height: 40px;
	display: block;
	flex-shrink: 0;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.product-gallery-main .swiper-button-prev {
	left: 20px;
}

.product-gallery-main .swiper-button-next {
	right: 20px;
}

/* Thumbnails Slider */
.product-gallery-thumbs {
	width: 100%;
	position: relative;
}

.product-gallery-thumbs .swiper-slide {
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	overflow: hidden;
	/*aspect-ratio: 1 / 1;*/
	/*background: #f5f5f5;*/
}

.product-gallery-thumbs .swiper-slide:hover {
	opacity: 0.8;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
	opacity: 1;
	border: 2px solid #5154F5;
}

.product-gallery-thumbs .swiper-slide img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
	border-radius: 1.12rem;
}

/* Responsive */
@media (max-width: 768px) {
	.product-gallery-main .swiper-button-prev,
	.product-gallery-main .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	
	.product-gallery-main .swiper-button-prev svg,
	.product-gallery-main .swiper-button-next svg {
		width: 13px;
		height: 22px;
	}
	
	.product-gallery-main .swiper-button-prev {
		left: 10px;
	}
	
	.product-gallery-main .swiper-button-next {
		right: 10px;
	}
}

/* Title */
.hero-swiper-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 81.74px;
	line-height: 1;
	color: #000000;
	margin: 0 0 20px 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.hero-swiper-title .title-line-1,
.hero-swiper-title .title-line-2 {
	display: block;
	line-height: 1;
}

.hero-swiper-title .title-line-2 {
	color: #5154F5;
}

/* Subtitle */
.hero-swiper-subtitle {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	color: #121212;
	margin: 0 0 30px 0;
}

/* Button */
.hero-swiper-button {
	display: inline-block;
	padding: 15px 30px;
	background-color: #FFA000;
	color: #121212;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	border-radius: 13px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.1);
}

/* Anular estilos de Elementor cuando hay clase personalizada */
.hero-swiper-button[class*=" "] {
	background-color: unset;
	color: unset;
	padding: unset;
	border-radius: unset;
	box-shadow: unset;
	font-size: unset;
	font-weight: unset;
}

/* Featured Image */
.hero-swiper-featured-image {
	position: relative;
	max-width: 600px;
	z-index: 1;
}

.hero-swiper-featured-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

/* Navigation Arrows */
.srmunera-hero-swiper .swiper-button-prev,
.srmunera-hero-swiper .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.0);
	border-radius: 50%;
	color: transparent !important;
	transition: all 0.3s ease;
	/*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);*/
	z-index: 10;
	cursor: pointer;
	pointer-events: auto;
}

.srmunera-hero-swiper .swiper-button-prev:after,
.srmunera-hero-swiper .swiper-button-next:after {
	content: none;
}

.srmunera-hero-swiper .swiper-button-prev svg,
.srmunera-hero-swiper .swiper-button-next svg {
	width: 16px;
	height: 27px;
	display: block;
	margin: auto;
	transition: all 0.3s ease;
}

.srmunera-hero-swiper .swiper-button-prev:hover svg path,
.srmunera-hero-swiper .swiper-button-next:hover svg path {
	/*fill: #FFFFFF;*/
}

.srmunera-hero-swiper .swiper-button-prev:hover,
.srmunera-hero-swiper .swiper-button-next:hover {
	/*background-color: #FFA000;
	color: #FFFFFF;*/
	transform: translateY(-50%) scale(1.1);
}

.srmunera-hero-swiper .swiper-button-prev.swiper-button-disabled,
.srmunera-hero-swiper .swiper-button-next.swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
	pointer-events: none;
}

.srmunera-hero-swiper .swiper-button-prev {
	left: 30px;
}

.srmunera-hero-swiper .swiper-button-next {
	right: 30px;
}

/* Pagination */
.srmunera-hero-swiper .swiper-pagination {
	bottom: 30px;
	z-index: 3;
}

.srmunera-hero-swiper .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(59, 59, 59, 0.671);
	opacity: 1;
	margin: 0 8px;
	transition: all 0.3s ease;
}

.srmunera-hero-swiper .swiper-pagination-bullet-active {
	background-color: #FFA000;
	transform: scale(1.3);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.hero-swiper-content-wrapper {
		padding: 50px 40px;
		gap: 40px;
		flex-direction: column;
	}

	.hero-swiper-title {
		font-size: 60px;
	}

	.hero-swiper-subtitle {
		font-size: 16px;
	}

	.hero-swiper-featured-image {
		max-width: 500px;
	}

	.srmunera-hero-swiper .swiper-button-prev {
		left: 20px;
	}

	.srmunera-hero-swiper .swiper-button-next {
		right: 20px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.hero-swiper-content-wrapper {
		padding: 40px 25px;
		gap: 30px;
	}

	.hero-swiper-title {
		font-size: 48px;
		margin-bottom: 15px;
	}

	.hero-swiper-subtitle {
		font-size: 15px;
		margin-bottom: 25px;
	}

	.hero-swiper-button {
		padding: 12px 30px;
		font-size: 15px;
	}

	.hero-swiper-featured-image {
		max-width: 100%;
	}

	.srmunera-hero-swiper .swiper-button-prev,
	.srmunera-hero-swiper .swiper-button-next {
		width: 40px;
		height: 40px;
	}

	.srmunera-hero-swiper .swiper-button-prev:after,
	.srmunera-hero-swiper .swiper-button-next:after {
		font-size: 16px;
	}

	.srmunera-hero-swiper .swiper-button-prev {
		left: 10px;
	}

	.srmunera-hero-swiper .swiper-button-next {
		right: 10px;
	}

	.srmunera-hero-swiper .swiper-pagination {
		bottom: 20px;
	}
}

/* Responsive - Mobile Small */
@media (max-width: 480px) {
	.hero-swiper-content-wrapper {
		padding: 30px 20px;
	}

	.hero-swiper-title {
		font-size: 36px;
	}

	.hero-swiper-subtitle {
		font-size: 14px;
	}

	.hero-swiper-button {
		padding: 10px 25px;
		font-size: 14px;
	}
}


/* =================================== 
   Specs Table Widget
   =================================== */

.specs-table-wrapper {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	padding: 36px 35px;
}

.specs-table__title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 35px;
	line-height: 1;
	color: #5154F5;
	margin: 0 0 24px 0;
}

.specs-table {
	width: 100%;
	display: grid;
	gap: 0;
}

.specs-table-row {
	display: contents;
}

.specs-table-row--header .specs-table-header {
	background-color: #5154F5;
	color: #FAFAFA;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 15px;
	text-align: center;
	padding: 16px 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border-right: 5px solid #FFFFFF;
	margin-bottom: 16px;
}

.specs-table-row--header .specs-table-header:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.specs-table-row--header .specs-table-header:last-child {
	border-right: none;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.specs-table-header-mobile {
	display: none;
}

.specs-table-cell {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	text-align: center;
}

.specs-table-label {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.2;
	color: #5154F5;
	text-transform: uppercase;
	margin: 0;
	min-height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.specs-table-content {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.3;
	color: #121212;
	margin: 0 0 8px 0;
}

@media (max-width: 768px) {
	.specs-table-wrapper {
		padding: 25px 20px;
		border-radius: 15px;
	}

	.specs-table__title {
		font-size: 24px;
		margin-bottom: 18px;
	}

	.specs-table {
		display: flex !important;
		flex-direction: column !important;
		gap: 24px;
	}

	.specs-table-row {
		display: flex !important;
		flex-direction: column !important;
		gap: 0;
	}

	.specs-table-row--header {
		display: none !important;
	}

	.specs-table-header-mobile {
		display: block !important;
		background-color: #5154F5;
		color: #FFFFFF;
		font-family: 'Roboto', sans-serif;
		font-size: 16px;
		font-weight: 700;
		padding: 12px 16px;
		border-radius: 8px;
		margin-bottom: 8px;
	}

	.specs-table-row--data {
		display: flex !important;
		flex-direction: column !important;
		gap: 24px;
	}

	.specs-table-column {
		display: flex !important;
		flex-direction: column !important;
		gap: 8px;
	}

	.specs-table-cell {
		padding: 12px 16px;
		background: #FAFAFA;
		border-left: 3px solid #5154F5;
		align-items: flex-start;
		text-align: left;
	}

	.specs-table-label {
		font-size: 11px;
		letter-spacing: 0.5px;
		margin-bottom: 4px;
		justify-content: flex-start;
	}

	.specs-table-content {
		font-size: 14px;
		line-height: 1.4;
		margin-bottom: 0;
	}
}

/* ========================================
   DOWNLOADS LIST WIDGET
   ======================================== */

/* Página de Descargas por Producto (Figma Design) */
.descargas-productos-page {
	padding: 3rem 0;
}

/* Header de la página */
.descargas-productos-page .header-section {
	margin-bottom: 2rem;
}

.descargas-productos-page .header-section h1 {
	font-family: 'Roboto', sans-serif;
	font-size: 45px;
	font-weight: 700;
	color: #121212;
	margin-bottom: 0;
	line-height: 1;
}

.descargas-productos-page .downloads-intro {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #121212;
	line-height: 1;
	margin-bottom: 1rem;
}

.descargas-productos-page .product-search-box {
	display: flex;
	align-items: center;
	background: rgba(18, 18, 18, 0.05);
	border: none;
	border-radius: 10px;
	padding: 11px 15px;
	margin-top: 1rem;
}

.descargas-productos-page .product-search-box input {
	flex: 1;
	border: none;
	outline: none;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #121212;
	background: transparent;
}

.descargas-productos-page .product-search-box input::placeholder {
	color: #121212;
	opacity: 0.3;
}

.descargas-productos-page .product-search-box svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

/* Divisor de sección */
.descargas-productos-page .section-divider {
	border: none;
	border-top: 1px solid rgba(18, 18, 18, 0.1);
	margin: 2rem 0;
}

/* Sección de serie */
.descargas-productos-page .serie-section {
	margin-bottom: 3rem;
}

.descargas-productos-page .serie-title {
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #121212;
	margin-bottom: 0.88rem;
	line-height: 1;
}

.descargas-productos-page .serie-divider {
	border: none;
	border-top: 1px dashed rgba(0, 0, 0, 0.2);
	margin: 0 0 2rem 0;
}

/* Bloque de producto con descargas */
.descargas-productos-page .producto-downloads-block {
	margin-bottom: 2rem;
}

.descargas-productos-page .producto-name {
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #5154F5;
	margin-bottom: 1rem;
}

.descargas-productos-page .producto-downloads-block > .row {
	align-items: stretch;
}

.descargas-productos-page .producto-downloads-block > .row > [class*="col-"] {
	display: flex;
	flex-direction: column;
}

/* Pestañas de tipos de descarga */
.descargas-productos-page .downloads-tabs-wrapper {
	margin-bottom: 0;
	flex-shrink: 0;
}

.descargas-productos-page .downloads-tabs {
	display: flex;
	gap: 1px;
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
	flex-wrap: wrap;
}

.descargas-productos-page .downloads-tabs .nav-item {
	margin: 0;
}

.descargas-productos-page .downloads-tabs .nav-link {
	background: #FFFFFF;
	border: none;
	border-radius: 20px 20px 0 0;
	padding: 20px 30px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #121212;
	line-height: 1;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.10);
	white-space: normal;
}

.descargas-productos-page .downloads-tabs .nav-link:hover {
	color: #5154F5;
	background: #FFFFFF;
	box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.10);
}

.descargas-productos-page .downloads-tabs .nav-link.active {
	color: #5154F5;
	background: #FFFFFF;
	border-bottom: none;
	box-shadow: 0 4px 10px 1px rgba(81, 84, 245, 0.2);
	z-index: 2;
}

/* Contenido de las pestañas */
.descargas-productos-page .downloads-tab-content {
	background: #FFFFFF;
	border-radius: 0 20px 20px 20px;
	box-shadow: 0px 8px 10px 1px rgba(0, 0, 0, 0.1);
	margin-top: -1px;
	position: relative;
	z-index: 2;
	flex: 1;
	min-height: 500px;
}

.descargas-productos-page .downloads-tab-content .tab-pane {
	padding: 40px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: none;
	flex-direction: column;
	overflow-y: auto;
}

.descargas-productos-page .downloads-tab-content .tab-pane.active {
	display: flex;
}

.descargas-productos-page .download-separator {
	border: none;
	border-top: 1px solid rgba(18, 18, 18, 0.1);
	margin: 30px 0;
}

.descargas-productos-page .tab-pane > .download-card-wrapper {
	flex: 1;
	display: flex;
}

.descargas-productos-page .tab-pane > .download-card-wrapper > .row {
	align-items: stretch;
	flex: 1;
}

/* Columna info (izquierda dentro del tab) */
.descargas-productos-page .download-info-card {
	display: flex;
	flex-direction: column;
	gap: 38px;
	height: 100%;
}

.descargas-productos-page .download-info-card > div:first-child {
	display: flex;
	flex-direction: column;
	gap: 5px;
	flex: 1;
}

.descargas-productos-page .download-title {
	font-family: 'Roboto', sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #5154F5;
	margin-bottom: 0;
	line-height: 1;
}

.descargas-productos-page .download-title .producto-name {
	color: #5154F5;
}

.descargas-productos-page .download-description {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #121212;
	line-height: 1;
	margin-bottom: 0;
}

.descargas-productos-page .download-description p {
	margin: 0;
	line-height: 1;
}

.descargas-productos-page .download-notes {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 400;
	color: #121212;
	line-height: 1;
	margin-bottom: 0;
	margin-top: 5px;
}

.descargas-productos-page .download-notes p {
	margin: 0;
	line-height: 1;
}

.descargas-productos-page .download-info-card .btn {
	align-self: flex-start;
}

/* Columna detalles (derecha dentro del tab) */
.descargas-productos-page .download-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
	height: 100%;
	border-left: 1px dashed rgba(18, 18, 18, 0.2);
	padding-left: 30px;
}

.descargas-productos-page .detail-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.descargas-productos-page .detail-label {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	color: #121212;
	margin: 0;
	line-height: 1;
}

.descargas-productos-page .detail-value {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #121212;
	line-height: 1;
	margin: 0;
}

.descargas-productos-page .detail-value p {
	margin: 0;
	line-height: 1;
}

.descargas-productos-page .detail-value ol,
.descargas-productos-page .detail-value ul {
	margin: 5px 0 0 22.5px;
	padding: 0;
	list-style-position: outside;
}

.descargas-productos-page .detail-value li {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1;
	padding-left: 0;
}

.descargas-productos-page .detail-value li span {
	line-height: 1;
}

/* Imagen del producto (FIJA, fuera de las pestañas) */
.descargas-productos-page .product-image-wrapper {
	position: sticky;
	top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	flex: 1;
	padding: 20px;
}

.descargas-productos-page .product-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	max-height: 100%;
}

.descargas-productos-page .no-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 200px;
	color: rgba(18, 18, 18, 0.2);
	font-size: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
	.descargas-productos-page .header-section h1 {
		font-size: 28px;
	}
	
	.descargas-productos-page .downloads-tabs {
		gap: 1px;
		overflow-x: auto;
		padding-bottom: 0;
	}
	
	.descargas-productos-page .downloads-tabs .nav-link {
		white-space: nowrap;
		font-size: 13px;
		padding: 15px 20px;
	}
	
	.descargas-productos-page .downloads-tab-content .tab-pane {
		padding: 25px;
	}
	
	.descargas-productos-page .producto-downloads-block > .row > [class*="col-"] {
		display: block;
	}
	
	.descargas-productos-page .downloads-tab-content {
		flex: none;
		display: block;
	}
	
	.descargas-productos-page .tab-pane {
		flex: none;
		display: block;
	}
	
	.descargas-productos-page .tab-pane > .download-card-wrapper {
		flex: none;
		display: block;
	}
	
	.descargas-productos-page .download-card-wrapper {
		padding: 25px;
		min-height: auto;
	}
	
	.descargas-productos-page .download-info-card .download-title {
		font-size: 20px;
	}
	
	.descargas-productos-page .download-info-card .download-description {
		font-size: 16px;
	}
	
	.descargas-productos-page .download-details {
		border-left: none;
		border-top: 1px dashed rgba(18, 18, 18, 0.2);
		padding-left: 0;
		padding-top: 20px;
		margin-top: 20px;
	}
	
	.descargas-productos-page .product-image-wrapper {
		margin-top: 2rem;
		position: static;
		flex: none;
		min-height: 250px;
	}
	
	.descargas-productos-page .product-image {
		max-height: 250px;
	}
}

/* End of Downloads List Widget */

/* ========================================
   EVENTOS LIST WIDGET
   ======================================== */

/* ============================================
   EVENTOS LIST WIDGET - Diseño Figma VIPcolor
   ============================================ */

.srmunera-eventos-widget {
	width: 100%;
}

/* Eventos Pasados - Diseño según Figma */
.eventos-pasados-section {
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	padding: 35px;
	margin-bottom: 2rem;
}

.eventos-pasados-grid {
	display: grid;
	gap: 35px;
	position: relative;
}

.eventos-pasados-grid.eventos-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.eventos-pasados-grid.eventos-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.eventos-pasados-grid.eventos-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Evento individual */
.evento-pasado {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: transparent;
	padding: 0;
	position: relative;
}

/* Separador horizontal discontinuo debajo de cada evento */
.evento-pasado::after {
	content: '';
	display: block;
	width: 120px;
	height: 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
	margin-top: 15px;
}

/* Eliminar separador del último evento */
.evento-pasado:last-child::after {
	display: none;
}

/* Separadores verticales discontinuos entre columnas del grid */
/* Grid 2 columnas: línea a la derecha de elementos impares (1, 3, 5...) */
.eventos-pasados-grid.eventos-cols-2 .evento-pasado:nth-child(odd):not(:last-child) {
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	padding-right: 17.5px;
	margin-right: 17.5px;
}

/* Grid 3 columnas: línea en elementos que no son múltiplos de 3 */
.eventos-pasados-grid.eventos-cols-3 .evento-pasado:not(:nth-child(3n)) {
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	padding-right: 17.5px;
	margin-right: 17.5px;
}

/* Grid 4 columnas: línea en elementos que no son múltiplos de 4 */
.eventos-pasados-grid.eventos-cols-4 .evento-pasado:not(:nth-child(4n)) {
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	padding-right: 17.5px;
	margin-right: 17.5px;
}

.evento-pasado .evento-title {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #121212;
	margin: 0;
	line-height: 1;
}

/* Permitir formato mixto en títulos (bold + regular) */
.evento-pasado .evento-title span,
.evento-pasado .evento-title strong,
.evento-pasado .evento-title b {
	font-weight: inherit;
}

.evento-pasado .evento-title .regular {
	font-weight: 400;
}

.evento-pasado .evento-meta-small {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
}

.evento-pasado .evento-fecha,
.evento-pasado .evento-ubicacion {
	display: inline-flex;
}

/* ========================================
   VIDEO CTA WIDGET
   ======================================== */

/* Container */
.srmunera-video-cta {
	position: relative;
	width: 100%;
}

.video-cta-container {
	position: relative;
	width: 100%;
	min-height: 500px;
	overflow: hidden;
	cursor: pointer;
	border-radius: 20px;
}

/* Poster Image */
.video-cta-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-blend-mode: multiply;
	background-color: rgb(250, 250, 250);
	transition: opacity 0.3s ease;
}

.video-cta-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
	transition: opacity 0.3s ease;
}

/* Video Player */
.video-cta-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.video-cta-player iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Play Button */
.video-cta-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	transition: opacity 0.3s ease;
	cursor: pointer;
	width: 50px;
	height: 80px;
	opacity: 1;
}

.video-cta-container:hover .video-cta-play-button {
	opacity: 0.8;
}

.video-cta-play-button svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.video-cta-container.playing .video-cta-play-button {
	opacity: 0;
	pointer-events: none;
}

/* Content Overlay */
.video-cta-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 40px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-cta-container.playing .video-cta-content {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

.video-cta-title {
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: #FFFFFF;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-cta-button {
	display: inline-block;
	padding: 15px 30px;
	background-color: #5154F5;
	color: #FFFFFF;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s ease;
	align-self: flex-start;
	box-shadow: 0 4px 12px rgba(81, 84, 245, 0.3);
}

.video-cta-button:hover {
	background-color: #4143D3;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(81, 84, 245, 0.4);
}

/* Fullscreen Button */
.video-cta-fullscreen-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 4;
	background: rgba(0, 0, 0, 0.6);
	border: none;
	border-radius: 6px;
	padding: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	display: none;
}

.video-cta-container.playing .video-cta-fullscreen-btn {
	display: block;
}

.video-cta-fullscreen-btn:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: scale(1.1);
}

.video-cta-fullscreen-btn svg {
	display: block;
	width: 24px;
	height: 24px;
}

/* Paused state (when video is paused, show content again) */
.video-cta-container.paused .video-cta-content {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.video-cta-container.paused .video-cta-play-button {
	opacity: 1;
	pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
	.video-cta-container {
		min-height: 400px;
	}

	.video-cta-content {
		padding: 30px 20px;
		gap: 15px;
	}

	.video-cta-title {
		font-size: 28px;
	}

	.video-cta-button {
		padding: 12px 24px;
		font-size: 14px;
	}

	.video-cta-play-button {
		width: 40px;
		height: 66px;
	}
}

@media (max-width: 480px) {
	.video-cta-container {
		min-height: 300px;
		border-radius: 15px;
	}

	.video-cta-content {
		padding: 20px 15px;
		gap: 12px;
	}

	.video-cta-title {
		font-size: 22px;
	}

	.video-cta-button {
		padding: 10px 20px;
		font-size: 13px;
	}

	.video-cta-play-button {
		width: 30px;
		height: 50px;
	}

	.video-cta-fullscreen-btn {
		top: 10px;
		right: 10px;
		padding: 8px;
	}

	.video-cta-fullscreen-btn svg {
		width: 20px;
		height: 20px;
	}
}
	align-items: center;
	gap: 2px;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #5154F5;
	white-space: nowrap;
}

.evento-pasado .evento-meta-small svg {
	flex-shrink: 0;
	width: 19px;
	height: 19px;
}

/* Eventos Próximos - Full Width */
.eventos-proximos-section {
	margin-bottom: 2rem;
}

.evento-proximo {
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	overflow: visible;
	transition: all 0.3s ease;
	margin-bottom: 2rem;
}

.evento-proximo:hover {
	box-shadow: 0px 6px 20px 2px rgba(0, 0, 0, 0.15);
	transform: translateY(-4px);
}

.evento-proximo-content {
	display: flex;
	flex-direction: row;
	gap: 2.5rem;
	padding: 35px;
	align-items: flex-start;
}

/* Badge de Fecha/Hora */
.evento-fecha-badge {
	flex: 0 0 180px;
	max-width: 180px;
	min-height: 180px;
	background: #FFFFFF;
	border: 2px solid #5154F5;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.fecha-badge-mes {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #121212;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.fecha-badge-dia {
	font-family: 'Roboto', sans-serif;
	font-size: 72px;
	font-weight: 700;
	color: #121212;
	line-height: 1;
	margin-bottom: 10px;
}

.fecha-badge-hora {
	font-family: 'Roboto', sans-serif;
	font-size: 32px;
	font-weight: 700;
	color: #121212;
	line-height: 1;
}

.evento-proximo .evento-info {
	flex: 1;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	align-self: center;
	gap: 0;
}

/* Content area (75%) */
.evento-proximo .evento-content {
	flex: 0 0 75%;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-right: 2.5rem;
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	margin-right: 2.5rem;
}

/* Ubicación arriba del título */
.evento-ubicacion-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #5154F5;
	margin-bottom: 0.5rem;
}

.evento-ubicacion-top svg {
	flex-shrink: 0;
	width: 19px;
	height: 19px;
}

.evento-proximo .evento-title {
	font-family: 'Roboto', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #121212;
	margin: 0;
	line-height: 1.3;
}

/* Permitir formato mixto en títulos (bold + regular) */
.evento-proximo .evento-title span,
.evento-proximo .evento-title strong,
.evento-proximo .evento-title b {
	font-weight: inherit;
}

.evento-proximo .evento-title .regular {
	font-weight: 400;
}

.evento-proximo .evento-excerpt {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #121212;
}

.evento-proximo .evento-btn {
	flex: 0 0 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	background: transparent;
	color: #FFA000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid #FFA000;
	transition: all 0.3s ease;
	align-self: center;
	cursor: pointer;
	text-align: center;
}

.evento-proximo .evento-btn:hover {
	background: #FFA000;
	color: #121212;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 160, 0, 0.3);
}

/* Grid de Eventos Próximos (después del primero) */
.eventos-proximos-grid {
	display: grid;
	gap: 35px;
	position: relative;
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
	padding: 35px;
	margin-bottom: 2rem;
}

.eventos-proximos-grid.eventos-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.eventos-proximos-grid.eventos-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.eventos-proximos-grid.eventos-cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Evento próximo individual en formato compacto */
.evento-proximo-compacto {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	gap: 15px;
	background: transparent;
	padding: 0;
	position: relative;
}

/* Contenido del evento (título + metadata) */
.evento-compacto-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0; /* Para que funcione el text-overflow */
}

/* Contenedor del botón */
.evento-compacto-button {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

/* Botón compacto */
.evento-btn-compact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background: transparent;
	color: #FFA000;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
	border: 2px solid #FFA000;
	transition: all 0.3s ease;
	cursor: pointer;
	white-space: nowrap;
}

.evento-btn-compact:hover {
	background: #FFA000;
	color: #121212;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 160, 0, 0.3);
}

/* Separador horizontal discontinuo debajo de cada evento */
.evento-proximo-compacto::after {
	content: '';
	position: absolute;
	bottom: -17.5px;
	left: 0;
	width: 120px;
	height: 0;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
}

/* Eliminar separador del último evento */
.evento-proximo-compacto:last-child::after {
	display: none;
}

/* Separadores verticales discontinuos entre columnas del grid */
/* Grid 2 columnas: línea a la derecha de elementos impares (1, 3, 5...) */
.eventos-proximos-grid.eventos-cols-2 .evento-proximo-compacto:nth-child(odd):not(:last-child) {
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	padding-right: 17.5px;
	margin-right: 17.5px;
}

/* Grid 3 columnas: línea en elementos que no son múltiplos de 3 */
.eventos-proximos-grid.eventos-cols-3 .evento-proximo-compacto:not(:nth-child(3n)) {
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	padding-right: 17.5px;
	margin-right: 17.5px;
}

/* Grid 4 columnas: línea en elementos que no son múltiplos de 4 */
.eventos-proximos-grid.eventos-cols-4 .evento-proximo-compacto:not(:nth-child(4n)) {
	border-right: 1px dashed rgba(0, 0, 0, 0.2);
	padding-right: 17.5px;
	margin-right: 17.5px;
}

.evento-proximo-compacto .evento-title {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #121212;
	margin: 0;
	line-height: 1.2;
}

/* Permitir formato mixto en títulos (bold + regular) */
.evento-proximo-compacto .evento-title span,
.evento-proximo-compacto .evento-title strong,
.evento-proximo-compacto .evento-title b {
	font-weight: inherit;
}

.evento-proximo-compacto .evento-title .regular {
	font-weight: 400;
}

.evento-proximo-compacto .evento-meta-small {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
}

.evento-proximo-compacto .evento-fecha,
.evento-proximo-compacto .evento-ubicacion {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	color: #5154F5;
	white-space: nowrap;
}

.evento-proximo-compacto .evento-meta-small svg {
	flex-shrink: 0;
	width: 19px;
	height: 19px;
}

/* Botón Ver Todos */
.eventos-archive-button-wrapper {
	text-align: center;
	margin-top: 3rem;
}

.evento-btn-archive {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	background: #FFA000;
	color: #121212;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.evento-btn-archive:hover {
	background: #121212;
	color: #FFA000;
}

/* ============================================
   RESPONSIVE - Eventos Widget
   ============================================ */

@media (max-width: 991px) {
	/* Eventos próximos: layout vertical en tablet */
	.evento-proximo-content {
		flex-direction: column;
		gap: 1.5rem;
		align-items: center;
	}

	.evento-fecha-badge {
		width: 100%;
		max-width: 200px;
	}

	.evento-proximo .evento-info {
		width: 100%;
		flex-direction: column;
		gap: 1.5rem;
	}

	.evento-proximo .evento-content {
		flex: 1;
		padding-right: 0;
		border-right: none;
		margin-right: 0;
	}

	.evento-proximo .evento-btn {
		flex: 1;
		width: 100%;
	}

	/* Grid de eventos pasados: 2 columnas en tablet */
	.eventos-pasados-grid.eventos-cols-3,
	.eventos-pasados-grid.eventos-cols-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	/* En tablet con 2 columnas: línea solo en elementos impares */
	.eventos-pasados-grid.eventos-cols-3 .evento-pasado,
	.eventos-pasados-grid.eventos-cols-4 .evento-pasado {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}

	.eventos-pasados-grid.eventos-cols-3 .evento-pasado:nth-child(odd):not(:last-child),
	.eventos-pasados-grid.eventos-cols-4 .evento-pasado:nth-child(odd):not(:last-child) {
		border-right: 1px dashed rgba(0, 0, 0, 0.2);
		padding-right: 15px;
		margin-right: 15px;
	}

	/* Grid de eventos próximos: 2 columnas en tablet */
	.eventos-proximos-grid.eventos-cols-3,
	.eventos-proximos-grid.eventos-cols-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	/* En tablet con 2 columnas: línea solo en elementos impares */
	.eventos-proximos-grid.eventos-cols-3 .evento-proximo-compacto,
	.eventos-proximos-grid.eventos-cols-4 .evento-proximo-compacto {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}

	.eventos-proximos-grid.eventos-cols-3 .evento-proximo-compacto:nth-child(odd):not(:last-child),
	.eventos-proximos-grid.eventos-cols-4 .evento-proximo-compacto:nth-child(odd):not(:last-child) {
		border-right: 1px dashed rgba(0, 0, 0, 0.2);
		padding-right: 15px;
		margin-right: 15px;
	}
}

@media (max-width: 767px) {
	/* Ajustes móvil para eventos próximos */
	.evento-proximo {
		border-radius: 16px;
	}

	.evento-proximo .evento-title {
		font-size: 22px;
	}

	.evento-proximo-content {
		padding: 25px;
	}

	.evento-fecha-badge {
		max-width: 160px;
		min-height: 160px;
		padding: 15px;
	}

	.fecha-badge-dia {
		font-size: 56px;
	}

	.fecha-badge-hora {
		font-size: 24px;
	}

	.evento-proximo .evento-btn {
		width: 100%;
		justify-content: center;
		padding: 14px 25px;
		font-size: 16px;
	}

	/* Grid de eventos pasados: 1 columna en móvil */
	.eventos-pasados-grid.eventos-cols-2,
	.eventos-pasados-grid.eventos-cols-3,
	.eventos-pasados-grid.eventos-cols-4 {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* Eliminar todos los bordes verticales en móvil (1 columna) */
	.evento-pasado {
		border-right: none !important;
		padding-right: 0 !important;
		margin-right: 0 !important;
	}

	/* Grid de eventos próximos: 1 columna en móvil */
	.eventos-proximos-grid.eventos-cols-2,
	.eventos-proximos-grid.eventos-cols-3,
	.eventos-proximos-grid.eventos-cols-4 {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* Eliminar todos los bordes verticales en móvil (1 columna) */
	.evento-proximo-compacto {
		border-right: none !important;
		padding-right: 0 !important;
		margin-right: 0 !important;
	}

	.eventos-proximos-grid {
		padding: 25px;
		border-radius: 16px;
	}

	/* Layout vertical para eventos compactos en móvil */
	.evento-proximo-compacto {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.evento-compacto-button {
		width: 100%;
		justify-content: center;
	}

	.evento-btn-compact {
		width: 100%;
		justify-content: center;
		font-size: 14px;
		padding: 10px 16px;
	}

	.evento-proximo-compacto .evento-title {
		font-size: 16px;
	}

	.evento-proximo-compacto .evento-fecha,
	.evento-proximo-compacto .evento-ubicacion {
		font-size: 14px;
	}

	.evento-proximo-compacto .evento-meta-small svg {
		width: 16px;
		height: 16px;
	}

	/* Ajustar posición del separador en móvil con layout vertical */
	.evento-proximo-compacto::after {
		bottom: -10px;
	}

	.eventos-pasados-section {
		padding: 25px;
		border-radius: 16px;
	}

	.evento-pasado .evento-title {
		font-size: 16px;
	}

	.evento-pasado .evento-fecha,
	.evento-pasado .evento-ubicacion {
		font-size: 14px;
	}

	.evento-pasado .evento-meta-small svg {
		width: 16px;
		height: 16px;
	}

	.evento-btn-archive {
		width: 100%;
		padding: 14px 30px;
		font-size: 16px;
	}
}

/* End of Eventos List Widget */
