/* ============================================================
   MARCH — Trial Box CSS
   Fiel a Milk Bar: 2 columnas full-width
   - Texto en 1 columna con padding normal
   - Imagen en la otra columna SIN padding lateral (llega al borde)
   - Texto bold uppercase, sin decoraciones
   ============================================================ */

.march-trial-box {
	padding: clamp(56px, 8vw, 100px) 0;
	overflow: hidden;
}

/* ── Grid: 2 col, imagen puede llegar al borde ── */
.march-tb-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;                     /* sin gap: el espacio viene del padding del texto */
	align-items: center;
	max-width: 100%;
}

/* Texto a la izquierda, imagen a la derecha */
.march-tb-grid--img-right .march-tb-text  { order: 1; padding: clamp(32px, 6vw, 80px) clamp(24px, 5vw, 80px); }
.march-tb-grid--img-right .march-tb-image { order: 2; }

/* Imagen a la izquierda, texto a la derecha */
.march-tb-grid--img-left .march-tb-image { order: 1; }
.march-tb-grid--img-left .march-tb-text  { order: 2; padding: clamp(32px, 6vw, 80px) clamp(24px, 5vw, 80px); }

/* ── Texto ── */
.march-tb-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

/* ── Badge ── */
.march-tb-badge {
	display: inline-block;
	font-family: 'Outfit', sans-serif;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: #111111;
	border-bottom: 2px solid #111111;
	padding-bottom: 4px;
	margin-bottom: 20px;
}

/* ── Título ── */
.march-tb-title {
	font-family: 'Outfit', sans-serif;
	font-weight: 900;
	font-size: clamp(28px, 3.5vw, 48px);
	letter-spacing: -0.03em;
	line-height: 1.0;
	text-transform: uppercase;
	margin-bottom: 16px;
}

/* ── Descripción ── */
.march-tb-desc {
	font-size: clamp(14px, 1.2vw, 16px);
	font-weight: 400;
	color: #555555;
	line-height: 1.65;
	margin-bottom: 32px;
	max-width: 440px;
}
.march-tb-desc p {
	font-size: inherit;
	color: inherit;
	line-height: inherit;
	margin-bottom: 1em;
}
.march-tb-desc p:last-child {
	margin-bottom: 0;
}

/* ── Acciones ── */
.march-tb-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.march-tb-secondary-link {
	font-family: 'Outfit', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #111111;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border-bottom: 1px solid #111111;
	padding-bottom: 2px;
	transition: opacity 0.2s ease;
}
.march-tb-secondary-link:hover { opacity: 0.6; }

/* ── Imagen — llena toda su columna, sin padding lateral ── */
.march-tb-image {
	height: 100%;
	overflow: hidden;
}

.march-tb-img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.march-tb-image:hover .march-tb-img {
	transform: scale(1.03);
}

/* ── Video nativo (.mp4 / desde librería) ── */
.march-tb-video {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

/* ── Iframe (YouTube / Vimeo) ── */
.march-tb-video-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
}
.march-tb-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.march-tb-placeholder {
	width: 100%;
	min-height: 420px;
	background: linear-gradient(135deg, #f0ede8 0%, #ddd9d0 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #aaa;
	font-size: 13px;
	text-align: center;
	padding: 40px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
	.march-trial-box { padding: 0; }
	.march-tb-grid {
		grid-template-columns: 1fr;
	}
	.march-tb-grid--img-right .march-tb-text,
	.march-tb-grid--img-left  .march-tb-text  {
		order: 2;
		padding: 40px 24px;
	}
	.march-tb-grid--img-right .march-tb-image,
	.march-tb-grid--img-left  .march-tb-image { order: 1; }
	.march-tb-img,
	.march-tb-placeholder { min-height: 280px; aspect-ratio: 3 / 2; }
}
