/**
 * Componente: Portfolio Gallery
 * Sin hover, sin enlaces, sin animaciones.
 */

.bc-portfolio-gallery {
	--bc-portfolio-gallery-bg: #ffffff;
	--bc-portfolio-gallery-text: #000000;
	--bc-portfolio-gallery-placeholder: #f0f0f0;
	--bc-portfolio-gallery-font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
	--bc-portfolio-gallery-max: 1440px;
	--bc-portfolio-gallery-padding-x: clamp(1.25rem, 4vw, 3.5rem);

	background: var(--bc-portfolio-gallery-bg);
	color: var(--bc-portfolio-gallery-text);
	font-family: var(--bc-portfolio-gallery-font);
	width: 100%;
}

.bc-portfolio-gallery__inner {
	margin: 0 auto;
	max-width: var(--bc-portfolio-gallery-max);
	padding: clamp(3rem, 8vw, 6rem) var(--bc-portfolio-gallery-padding-x);
}

.bc-portfolio-gallery__title {
	font-size: var(--bc-title-size, clamp(2.75rem, 9vw, 6.5rem));
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 0.95;
	margin: 0 0 clamp(2.5rem, 6vw, 4rem);
	text-transform: uppercase;
}

.bc-portfolio-gallery__grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.75rem);
	grid-template-columns: repeat(2, 1fr);
}

.bc-portfolio-gallery__item {
	pointer-events: none;
	user-select: none;
}

.bc-portfolio-gallery__media {
	aspect-ratio: 4 / 3;
	background: var(--bc-portfolio-gallery-placeholder);
	line-height: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.bc-portfolio-gallery__img,
.bc-portfolio-gallery__video {
	display: block;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	width: 100%;
}

/* Sin efectos hover */
.bc-portfolio-gallery__item:hover,
.bc-portfolio-gallery__media:hover,
.bc-portfolio-gallery__img:hover {
	opacity: 1;
	transform: none;
}

@media (max-width: 640px) {
	.bc-portfolio-gallery__grid {
		grid-template-columns: 1fr;
	}

	.bc-portfolio-gallery__title {
		font-size: var(--bc-title-size-mobile, var(--bc-title-size, clamp(2.25rem, 12vw, 3.25rem)));
	}
}
