/**
 * Urban Barber College – homepage "News and Announcements" section
 * ([ubc_news], hello-elementor-child/functions.php).
 *
 * Cards come from the "News" post type. The design reproduces the original
 * Elementor-built section on the Home page (containers 0f0438c / 736a7b5):
 * same content width, spacing, card shape, image ratio and typography.
 *
 * Breakpoints follow the Elementor kit: tablet ≤ 1024px, mobile ≤ 767px.
 */

.ubc-news {
	--ubc-news-bg: var(--e-global-color-4546478, #F5F5F5);
	--ubc-news-card-bg: var(--e-global-color-474aa86, #FFFFFF);
	--ubc-news-text: var(--e-global-color-text, #1E1E1E);

	box-sizing: border-box;
	width: 100%;
	padding: 60px 20px 80px;
	background-color: var(--ubc-news-bg);
}

.ubc-news *,
.ubc-news *::before,
.ubc-news *::after {
	box-sizing: border-box;
}

.ubc-news__inner {
	max-width: 1240px;
	margin: 0 auto;
}

/* ---------- Section title ---------- */

.ubc-news .ubc-news__heading {
	margin: 0 0 35px;
	padding: 0;
	color: var(--ubc-news-text);
	font-family: "Marcellus", Sans-serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 55px;
	letter-spacing: normal;
	text-align: center;
	text-transform: none;
}

/* ---------- Grid: 3 columns, further posts continue on new rows ---------- */

.ubc-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

/* ---------- Card ---------- */

.ubc-news__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background-color: var(--ubc-news-card-bg);
	border-radius: 60px 60px 10px 60px;
}

/* Same shape as the original 415 × 350 images; other uploads are cropped to it. */
.ubc-news .ubc-news__image {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	aspect-ratio: 415 / 350;
	margin: 0;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	object-fit: cover;
}

.ubc-news .ubc-news__image--empty {
	background-color: #E9E9E9;
}

.ubc-news .ubc-news__title {
	margin: 0;
	padding: 20px 20px 24.4px;
	color: var(--ubc-news-text);
	font-family: "Montserrat", Sans-serif;
	font-size: 25px;
	font-weight: 500;
	line-height: 35px;
	letter-spacing: normal;
	text-transform: none;
	overflow-wrap: break-word;
}

/* ---------- Tablet (≤ 1024px) ---------- */

@media (max-width: 1024px) {
	.ubc-news .ubc-news__title {
		padding: 15px 15px 14.4px;
		font-size: 20px;
		line-height: 30px;
	}
}

/* ---------- Mobile (≤ 767px): cards stack ---------- */

@media (max-width: 767px) {
	.ubc-news {
		padding: 50px 20px;
	}

	.ubc-news .ubc-news__heading {
		max-width: 231px;
		margin: 0 auto 75px;
		font-size: 28px;
		line-height: 34px;
	}

	.ubc-news__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
