<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.blog-posts__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: flex-start;
	margin-bottom: 30px;
}

.blog-posts__post {
	width: calc(33.33% - 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
	padding-bottom: 20px;
}

.blog-posts__image-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f3f3f3;
}

.blog-posts__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.blog-posts__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.blog-posts__btn {
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(4px);
	padding: 12px 24px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	transition: transform 0.3s ease, background 0.3s ease;
	transform: translateY(0);
	pointer-events: auto;
}

.blog-posts__image-wrapper:hover .blog-posts__image {
	transform: scale(1.05);
}

.blog-posts__image-wrapper:hover .blog-posts__btn {
	transform: translateY(-5px);
	background: rgba(217, 61, 146, 0.8);
}

.blog-posts__title-contn {
	margin-top: 10px;
	font-size: 1rem;
	font-weight: bold;
}

.blog-posts__post-title {
	text-decoration: none;
	color: #222;
	transition: color 0.2s ease;
}

.blog-posts__post-title:hover {
	color: #c00093;
}

/* Single Post Styles */
.blog-post {
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 15px;
	box-sizing: border-box;
}

.blog-post__header {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.blog-posts__image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* TÃ­tulo encima de la imagen */
.blog-post__title-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(255, 255, 255, 0.65);
	padding: 20px 30px;
	text-align: center;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
	max-width: 90%;
}

.blog-post__title {
	font-size: 26px;
	font-weight: 700;
	color: #333;
	margin: 0;
	line-height: 1.3;
}

.blog-post__content {
	margin-top: 40px;
	font-size: 17px;
	line-height: 1.7;
	color: #444;
}

.blog-post__text {
	margin-bottom: 40px;
}

/* NavegaciÃģn entre posts */
.blog-post__navigation {
	width: 100%;
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

.blog-post__navigation a {
	color: #d51a7b;
	text-decoration: none;
	font-weight: 600;
	transition: 0.2s ease-in-out;
}

.blog-post__navigation a span {
	display: block;
	font-size: 14px;
	color: #666;
	font-weight: normal;
}

.blog-post__navigation a:hover {
	color: #aa1260;
}

/* Responsive */
@media (max-width: 768px) {
	.blog-post__title {
		font-size: 15px;
	}

	.blog-post__title-wrapper {
		padding: 15px 20px;
		min-widht: 80%;
	}

	.blog-posts__image {
		border-radius: 0;
		box-shadow: none;
	}

	.blog-post {
		padding: 20px 10px;
	}

	.blog-posts__post {
		width: 100%;
	}
}

/* Home Page Styles */
.last-blogs-home { margin-top: 50px; }
.last-blogs-home .titu { color: #382d5c; font-size: 22PX; font-weight: 400; text-transform: uppercase; line-height: 22PX; margin: 0px; width: 100%; text-align: left; font-family: "Boris Black Bloxx"; margin-bottom: 44px;}
.last-blogs-home .titu A {color:#d93d92;}

@media (max-width: 768px) {
	.last-blogs-home .titu {font-size: 20px;}
	.last-blogs-home .blog-posts__wrapper {display: flex;flex-wrap: nowrap;overflow-x: auto;-webkit-overflow-scrolling: touch;scroll-snap-type: x mandatory;gap: 20px;padding-left: 15px;padding-right: 50px;scrollbar-width: none; -ms-overflow-style: none;}
	.last-blogs-home .blog-posts__wrapper::-webkit-scrollbar {display: none;}
	.last-blogs-home .blog-posts__post {min-width: 75%;flex: 0 0 auto;scroll-snap-align: start;}
	.last-blogs-home .web-cntd {padding: 0;margin: 0;overflow-x: hidden;}
	.last-blogs-home {position: relative;}
	.last-blogs-home::after { content: ""; position: absolute; top: 0; right: 0; width: 50px; height: 100%; pointer-events: none; background: linear-gradient(to left, #fff 40%, transparent); z-index: 2; } }
}


</pre></body></html>