/* ==========================================================================
   Ofertas del mes Ramón Perea — estilos del frontend
   ========================================================================== */

.odmrp-archive {
	padding: 40px 16px 64px;
}

.odmrp-archive__inner {
	max-width: 1140px;
	margin: 0 auto;
}

.odmrp-archive__header {
	text-align: center;
	margin-bottom: 36px;
}

.odmrp-archive__title {
	margin: 0 0 8px;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	line-height: 1.15;
}

.odmrp-archive__subtitle {
	margin: 0;
	color: #6b7280;
	font-size: 1.05rem;
}

/* Cuadrícula --------------------------------------------------------------- */
.odmrp-ofertas {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 28px;
	margin: 24px 0;
}

/* Tarjeta ------------------------------------------------------------------ */
.odmrp-oferta {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(17, 24, 39, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.odmrp-oferta:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
}

/* Portada ------------------------------------------------------------------ */
.odmrp-oferta__portada {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	text-decoration: none;
	background: #f3f4f6;
}

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

.odmrp-oferta:hover .odmrp-oferta__img {
	transform: scale(1.05);
}

.odmrp-oferta__portada-pdf {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, #d63638 0%, #8a1f20 100%);
}

.odmrp-oferta__portada-pdf .dashicons {
	font-size: 56px;
	width: 56px;
	height: 56px;
	opacity: 0.9;
}

.odmrp-oferta__portada-texto {
	font-weight: 600;
	font-size: 1.05rem;
	line-height: 1.3;
}

/* Insignia de fecha -------------------------------------------------------- */
.odmrp-oferta__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #111827;
	font-size: 0.82rem;
	font-weight: 600;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.odmrp-oferta__badge .dashicons {
	font-size: 15px;
	width: 15px;
	height: 15px;
	color: #d63638;
}

/* Cuerpo ------------------------------------------------------------------- */
.odmrp-oferta__cuerpo {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px;
}

.odmrp-oferta__titulo {
	margin: 0 0 10px;
	font-size: 1.2rem;
	line-height: 1.3;
}

.odmrp-oferta__titulo a {
	color: #111827;
	text-decoration: none;
}

.odmrp-oferta__titulo a:hover {
	color: #d63638;
}

.odmrp-oferta__descripcion {
	margin: 0 0 18px;
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.55;
}

/* Acciones ----------------------------------------------------------------- */
.odmrp-oferta__acciones {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.odmrp-boton {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	border-radius: 10px;
	background: #d63638;
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	transition: background 0.2s ease, transform 0.1s ease;
}

.odmrp-boton:hover {
	background: #b32d2e;
	color: #fff;
	transform: translateY(-1px);
}

.odmrp-boton--secundario {
	background: #1f2937;
}

.odmrp-boton--secundario:hover {
	background: #111827;
}

.odmrp-boton .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
}

/* Vista individual --------------------------------------------------------- */
.odmrp-single {
	margin-top: 24px;
}

.odmrp-single .odmrp-oferta__fecha {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 16px;
	padding: 6px 14px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #374151;
	font-weight: 600;
}

.odmrp-single .odmrp-oferta__fecha .dashicons {
	color: #d63638;
	font-size: 16px;
	width: 16px;
	height: 16px;
}

.odmrp-oferta__visor {
	width: 100%;
	height: 70vh;
	min-height: 480px;
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	background: #fafafa;
}

.odmrp-oferta__fallback {
	padding: 20px;
	text-align: center;
	color: #777;
}

.odmrp-single .odmrp-oferta__acciones {
	margin-top: 16px;
}

/* Vacío -------------------------------------------------------------------- */
.odmrp-empty {
	padding: 18px;
	background: #f3f4f6;
	border-radius: 10px;
	color: #555;
	text-align: center;
}

@media (max-width: 480px) {
	.odmrp-ofertas {
		grid-template-columns: 1fr;
	}
}
