/* Editions Premio Demos Section */
.editions-premio-demos-section {
	background-color: #F8F9FA;
	padding: 80px 0;
}

.editions-header {
	margin-bottom: 40px;
}

.editions-title {
	font-size: 40px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.2;
}

.editions-cta {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.btn-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background-color: transparent;
	color: #0070c1;
	border: 1px solid #0070c1;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
	cursor: pointer;
}

.btn-view-all:hover {
	background-color: #0070c1;
	color: #ffffff;
}

.btn-view-all svg {
	flex-shrink: 0;
	width: 15px;
	height: 7px;
}

.editions-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.editions-grid[data-expanded="false"] .edition-card:nth-child(n+3) {
	display: none;
}

.edition-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.edition-card-link {
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edition-card-link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.edition-images {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.edition-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.edition-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.edition-title {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.3;
}

.edition-description {
	font-size: 16px;
	line-height: 1.6;
	color: #6c757d;
}

/* Responsive */
@media (max-width: 1024px) {
	.editions-premio-demos-section {
		padding: 60px 0;
	}

	.editions-title {
		font-size: 32px;
	}

	.editions-cta {
		margin-top: 32px;
	}

	.editions-grid {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.editions-premio-demos-section {
		padding: 40px 0;
	}

	.editions-title {
		font-size: 28px;
	}

	.editions-cta {
		margin-top: 24px;
	}

	.editions-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.editions-grid[data-expanded="false"] .edition-card:nth-child(n+3) {
		display: flex;
	}

	.edition-content {
		padding: 20px;
	}

	.edition-title {
		font-size: 20px;
	}
}

