/* Recordings Section */
.recordings-section {
	background-color: #FFFFFF;
	padding: 80px 0;
}

.recordings-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}

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

.btn-recordings-link {
	background: transparent;
	border: 2px solid #0070C1;
	color: #0070C1;
	padding: 12px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.btn-recordings-link:hover {
	background-color: #0070C1;
	color: white;
}

.btn-recordings-link svg {
	flex-shrink: 0;
}

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

.recording-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 24px;
	border: 1px solid #E0E0E0;
	border-radius: 12px;
	background-color: #FFFFFF;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 460px;
	position: relative;
}

.recording-card:hover {
	border-color: #8A0062;
	box-shadow: 0 4px 12px rgba(138, 0, 98, 0.15);
	transform: translateY(-2px);
}

.recording-card:hover .recording-card-actions {
	opacity: 1;
	pointer-events: auto;
}

.recording-content {
	display: flex;
	align-items: center;
	gap: 20px;
}

.recording-date {
	flex-shrink: 0;
}

.recording-card .date-badge {
	width: 90px;
	height: 90px;
	border: 2px solid #8A0062;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: white;
	position: relative;
	overflow: visible;
}

.recording-card .date-badge::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	height: 20px;
	background-color: #8A0062;
	border-radius: 10px 10px 0 0;
	z-index: 1;
}

.recording-card .date-badge .month {
	font-size: 12px;
	font-weight: 700;
	color: #8A0062;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	margin-top: 18px;
	position: relative;
	z-index: 2;
}

.recording-card .date-badge .day {
	font-size: 40px;
	font-weight: 700;
	color: #1A1A1A;
	line-height: 1;
	position: relative;
	z-index: 2;
}

.recording-info {
	display: flex;
	align-items: center;
}

.recording-tag {
	font-size: 22px;
	font-weight: 700;
	color: #8A0062;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.recordings-title-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}

.recording-title {
	font-size: 28px;
	font-weight: 600;
	color: #1A1A1A;
	line-height: 1.4;
	margin: 0;
}

/* Botón de acción (aparece en hover) */
.recording-card-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.recording-primary-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
	background-color: #8A0062;
	color: #ffffff;
	border: none;
}

.recording-primary-btn:hover {
	background-color: #70004c;
	box-shadow: 0 6px 18px rgba(138, 0, 98, 0.3);
	opacity: 1;
}

.recording-btn-arrow {
	font-size: 18px;
	line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
	.recordings-section {
		padding: 60px 0;
	}
	
	.recordings-title {
		font-size: 36px;
	}
	
	.recordings-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.recording-card {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.recordings-section {
		padding: 40px 0;
	}
	
	.recordings-header {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 32px;
		gap: 16px;
	}
	
	.recordings-title {
		font-size: 32px;
	}
	
	.btn-recordings-link {
		font-size: 13px;
		padding: 10px 20px;
	}
	
	.recordings-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	
	.recording-card {
		padding: 20px;
		gap: 20px;
		height: 350px;
	}
	
	.recording-content {
		gap: 16px;
	}
	
	.recording-card .date-badge {
		width: 80px;
		height: 80px;
	}
	
	.recording-card .date-badge .day {
		font-size: 36px;
	}
	
	.recording-tag {
		font-size: 24px;
	}
	
	.recording-title {
		font-size: 17px;
	}
}

@media (max-width: 480px) {
	.recordings-section {
		padding: 32px 0;
	}
	
	.recordings-title {
		font-size: 28px;
	}
	
	.btn-recordings-link {
		width: 100%;
		justify-content: center;
	}
	
	.recordings-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.recording-card {
		padding: 20px;
		height: auto;
		min-height: 300px;
	}
	
	.recording-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	
	.recording-card .date-badge {
		width: 75px;
		height: 75px;
	}
	
	.recording-card .date-badge .month {
		font-size: 11px;
	}
	
	.recording-card .date-badge .day {
		font-size: 32px;
	}
	
	.recording-tag {
		font-size: 20px;
	}
	
	.recording-title {
		font-size: 16px;
	}
}

