.page-banner {
	background: linear-gradient(120deg, rgba(15, 39, 66, 0.94), rgba(31, 95, 155, 0.15)),
		url('../products/img/tl-ship-loading-spout-banner.webp') center/cover no-repeat;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 26px;
}

.hero-stat {
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 15px;
}

.hero-stat strong {
	display: block;
	font-size: 25px;
	margin-bottom: 6px;
}

.company-panel {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 24px;
	margin-top: 36px;
}

.company-card,
.company-stats {
	background: white;
	border-radius: 24px;
	padding: 34px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(219, 228, 238, 0.75);
}

.company-card h3,
.company-stats h3 {
	margin: 14px 0 12px;
	font-size: 30px;
	line-height: 1.2;
	color: var(--navy);
}

.company-card p,
.company-stats p {
	color: var(--muted);
	margin: 0;
	font-size: 15px;
	font-weight: 400;
}

.mini-list {
	margin: 20px 0 0;
	padding-left: 20px;
	color: var(--muted);
}

.mini-list li {
	margin-bottom: 15px;
	font-size: 15px;
	font-weight: 400;
}

.company-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 22px;
}

.stat-box {
	background: var(--soft);
	border-radius: 18px;
	padding: 20px;
	color: var(--navy);
	font-weight: 700;
}

.stat-box strong {
	display: block;
	font-size: 34px;
	margin-bottom: 8px;
	color: var(--blue-2);
}

.news-home-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.news-home-head-copy {
	max-width: 820px;
}

.news-home-list {
	display: grid;
	gap: 20px;
	margin-top: 36px;
}

.news-home-card {
	display: block;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, .9);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	text-decoration: none;
	color: inherit;
}

.news-home-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 42px rgba(15, 23, 42, .10);
	border-color: rgba(30, 103, 146, .28);
}

.news-home-card-inner {
	display: grid;
	grid-template-columns: 320px 1fr;
}

.news-home-media {
	position: relative;
	overflow: hidden;
	background: #dbe7f0;
}

.news-home-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
	display: block;
}

.news-home-card:hover .news-home-media img {
	transform: scale(1.04);
}

.news-home-body {
	padding: 20px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-home-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	font-size: 13px;
	color: #64748B;
}

.news-home-body h3 {
	margin: 0 0 10px;
	font-size: 18px;
}

.news-home-body p {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: 15px;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-home-readmore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--blue-2);
	justify-content: flex-end;
}

.news-home-readmore::after {
	content: "→";
	transition: transform .2s ease;
}

.news-home-card:hover .news-home-readmore::after {
	transform: translateX(3px);
}

.news-home-empty {
	background: #fff;
	border: 1px solid #E2E8F0;
	border-radius: 20px;
	padding: 34px 24px;
	text-align: center;
	color: #64748B;
	box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
	.company-panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 980px) {
	.news-home-head {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 900px) {
	.news-home-card-inner {
		grid-template-columns: 1fr;
	}

	.news-home-media {
		min-height: 220px;
	}

	.news-home-body h3 {
		font-size: 24px;
	}
}

@media (max-width: 850px) {

	.hero-stats,
	.company-stats-grid {
		grid-template-columns: 1fr;
	}
	.company-card,
	.company-stats {
		padding: 15px;
	
	}
}

@media (max-width: 640px) {
	.news-home-body {
		padding: 20px 18px;
	}

	.news-home-body h3 {
		font-size: 21px;
	}

	.news-home-body p {
		font-size: 14px;
	}
}