﻿/**
 * Bloque reel vertical — home (debajo del hero)
 */
.acr-home-reel-section {
	padding: clamp(2.25rem, 5vw, 3.75rem) 0;
	background: #f8f8f8;
}

.acr-home-reel-section .acr-home-reel-section__inner {
	max-width: min(1360px, 100%);
	margin: 0 auto;
}

.acr-home-reel-section__title {
	font-family: "Roboto", sans-serif;
	font-size: clamp(1.25rem, 3.2vw, 1.75rem);
	font-weight: 600;
	color: #181818;
	margin: 0 0 0.35rem;
	letter-spacing: -0.02em;
	line-height: 1.25;
	scroll-margin-top: 96px;
}

.acr-home-reel-section__subtitle {
	font-family: "Roboto", sans-serif;
	font-size: clamp(0.9rem, 2.2vw, 1rem);
	font-weight: 400;
	color: #666;
	margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
	line-height: 1.5;
}

.acr-home-reel-section__videos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 2.5vw, 1.35rem);
	align-items: start;
	justify-items: stretch;
	width: 100%;
}

@media only screen and (max-width: 359px) {
	.acr-home-reel-section__videos {
		grid-template-columns: 1fr;
		justify-items: center;
	}
}

@media only screen and (min-width: 1100px) {
	.acr-home-reel-section__videos {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(1rem, 2vw, 1.5rem);
	}
}

.acr-home-reel-section__frame {
	display: block;
	width: 100%;
	max-width: none;
	aspect-ratio: 9 / 16;
	margin: 0;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow:
		0 16px 48px rgba(0, 0, 0, 0.12),
		0 6px 16px rgba(0, 0, 0, 0.08);
	background: #111;
	line-height: 0;
}

.acr-home-reel-section__video {
	display: block;
	width: 100%;
	height: 100%;
	vertical-align: top;
	object-fit: cover;
	background: #000;
}

@media only screen and (max-width: 359px) {
	.acr-home-reel-section__frame {
		max-width: min(320px, 92vw);
	}
}

@media only screen and (min-width: 992px) {
	.acr-home-reel-section__frame {
		border-radius: 1.125rem;
	}
}

/* Video reel dentro de la grilla de galería (#portafolio) — mismo ratio UI que Resultados reales */
.gallery-item.gallery-item--video-reel {
	overflow: hidden;
}

.gallery-item.gallery-item--video-reel .acr-gallery-reel-frame {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 3px;
	background: #111;
	line-height: 0;
}

#portafolio .gallery-item.gallery-item--video-reel .acr-gallery-reel-frame .acr-home-reel-section__video,
#gallery .gallery-item.gallery-item--video-reel .acr-gallery-reel-frame .acr-home-reel-section__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: top;
	background: #000;
}
