/* ==========================================================================
   Pine Bluff Commercial — Homepage Styles
   ========================================================================== */

.pbc-featured-story .entry-title a {
	color: var(--pbc-ink);
}

.pbc-featured-story:hover .entry-title a {
	color: var(--pbc-link);
}

/* Original business directory grid styles — commented out 2026-04-06.
   See design_info/business-directory-original.md to restore.
.pbc-business-item:hover {
	background-color: var(--pbc-warm) !important;
}

.pbc-business-item:hover .entry-title {
	color: var(--pbc-link);
}
*/

.pbc-category-pod a.entry-title:hover {
	color: var(--pbc-link);
}

/* Category strips: first/last padding adjustments */
.pbc-category-strips-grid > div:first-child .pbc-category-pod {
	padding-left: 0;
}

.pbc-category-strips-grid > div:last-child .pbc-category-pod {
	padding-right: 0;
}

@media (max-width: 1024px) {
	.pbc-category-strips-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}

	.pbc-newsroom-grid--cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.pbc-category-strips-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.pbc-category-strips-grid > div {
		border-left: none !important;
		border-bottom: 1px solid var(--pbc-rule-row);
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	/* .pbc-business-grid { grid-template-columns: repeat(2, 1fr) !important; } — see design_info/business-directory-original.md */

	.pbc-newsroom-grid,
	.pbc-newsroom-grid--cols-3 {
		grid-template-columns: 1fr;
	}

	.pbc-category-pod {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

@media (max-width: 480px) {
	/* .pbc-business-grid { grid-template-columns: 1fr !important; } — see design_info/business-directory-original.md */

	.pbc-category-strips-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ==========================================================================
   The Newsroom Video Grid
   ========================================================================== */

.pbc-newsroom-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.pbc-newsroom-grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.pbc-newsroom-thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	cursor: pointer;
	background: var(--pbc-near-black);
}

.pbc-newsroom-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.2s ease;
}

.pbc-newsroom-thumb:hover img {
	opacity: 0.85;
}

.pbc-newsroom-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	transition: transform 0.2s ease;
}

.pbc-newsroom-thumb:hover .pbc-newsroom-play {
	transform: translate(-50%, -50%) scale(1.1);
}

.pbc-newsroom-thumb iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.pbc-newsroom-title {
	font-family: var(--pbc-font-headline);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--pbc-ink);
	margin: 10px 0 4px;
}

.pbc-newsroom-card:hover .pbc-newsroom-title {
	color: var(--pbc-link);
}

.pbc-newsroom-date {
	font-family: var(--pbc-font-ui);
	font-size: 11px;
	color: var(--pbc-faint);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
