/**
 * TechBBQ Partners Category — Brella logo grids with gradient category pill.
 *
 * Sizes: bigger, regular, smaller (modifier on .techbbq-partners-category).
 * Breakpoints (mobile-first): 0–767 (base), 768–1023, 1024–1439, 1440+.
 */

.techbbq-partners-category {
	--techbbq-pc-grid-gap: var(--techbbq-space-1);
	--techbbq-pc-header-gap: var(--techbbq-space-3);
	--techbbq-pc-card-radius: 12px;
	--techbbq-pc-card-padding: var(--techbbq-space-2);
	--techbbq-pc-card-height: 80px;
	--techbbq-pc-grid-columns: 2;
	--techbbq-pc-card-hover-bg: url("../../images/partners/card-hover.svg");

	box-sizing: border-box;
	width: 100%;
	color: var(--techbbq-content-primary);
}

.techbbq-partners-category__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--techbbq-pc-header-gap);
	width: 100%;
}

.techbbq-partners-category--title-center .techbbq-partners-category__inner {
	align-items: center;
}

.techbbq-partners-category--title-center .techbbq-partners-category__inner > .techbbq-pill {
	align-self: center;
}

.techbbq-partners-category--title-right .techbbq-partners-category__inner {
	align-items: flex-end;
}

.techbbq-partners-category--title-right .techbbq-partners-category__inner > .techbbq-pill {
	align-self: flex-end;
}

/* ── Grid ──────────────────────────────────────────────────── */

.techbbq-partners-category__grid {
	display: grid;
	grid-template-columns: repeat(var(--techbbq-pc-grid-columns), minmax(0, 1fr));
	gap: var(--techbbq-pc-grid-gap);
	width: 100%;
	align-self: stretch;
}

.techbbq-partners-category__card {
	position: relative;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--techbbq-pc-card-height);
	padding: var(--techbbq-pc-card-padding);
	overflow: hidden;
	border-radius: var(--techbbq-pc-card-radius);
	background-color: var(--techbbq-bg-surface);
	text-decoration: none;
	cursor: pointer;
}

.techbbq-partners-category__card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background-color: transparent;
	background-image: var(--techbbq-pc-card-hover-bg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.techbbq-partners-category__card:hover::before,
.techbbq-partners-category__card:focus-visible::before {
	opacity: 1;
}

img.techbbq-partners-category__logo {
	position: relative;
	z-index: 1;
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 64px;
	object-fit: contain;
}

.techbbq-partners-category__name-fallback {
	position: relative;
	z-index: 1;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-xs-size);
	font-weight: 500;
	color: var(--techbbq-content-primary);
	text-align: center;
}

.techbbq-partners-category__empty {
	margin: 0;
	font-family: var(--techbbq-font-family-body);
	font-size: var(--techbbq-text-paragraph-m-size);
	color: var(--techbbq-content-secondary);
}

/* ── Size: bigger ──────────────────────────────────────────── */

.techbbq-partners-category--bigger {
	--techbbq-pc-card-height: 80px;
}

/* ── Size: regular ─────────────────────────────────────────── */

.techbbq-partners-category--regular {
	--techbbq-pc-card-height: 80px;
}

/* ── Size: smaller ─────────────────────────────────────────── */

.techbbq-partners-category--smaller {
	--techbbq-pc-card-height: 80px;
}

/* ── Tablet (768–1023) ─────────────────────────────────────── */
@media (min-width: 768px) {
	.techbbq-partners-category--bigger {
		--techbbq-pc-card-height: 160px;
		--techbbq-pc-grid-columns: 2;
	}

	.techbbq-partners-category--regular {
		--techbbq-pc-card-height: 104px;
		--techbbq-pc-grid-columns: 3;
	}

	.techbbq-partners-category--smaller {
		--techbbq-pc-card-height: 80px;
		--techbbq-pc-grid-columns: 4;
	}
}

/* ── Desktop (1024–1439) ───────────────────────────────────── */
@media (min-width: 1024px) {
	.techbbq-partners-category--bigger {
		--techbbq-pc-grid-columns: 3;
	}

	.techbbq-partners-category--regular {
		--techbbq-pc-grid-columns: 4;
	}

	.techbbq-partners-category--smaller {
		--techbbq-pc-grid-columns: 6;
	}
}

/* ── Wide screen (1440+) ───────────────────────────────────── */
@media (min-width: 1440px) {
	.techbbq-partners-category--bigger {
		--techbbq-pc-card-height: 160px;
	}

	.techbbq-partners-category--regular {
		--techbbq-pc-card-height: 104px;
	}

	.techbbq-partners-category--smaller {
		--techbbq-pc-card-height: 80px;
	}
}