.npb-grid,
.npb-post-list {
	display: grid;
	gap: 20px;
}

.npb-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npb-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.npb-thumb,
.npb-thumb img {
	display: block;
	width: 100%;
}

.npb-thumb img {
	height: 240px;
	object-fit: cover;
}

.npb-thumb.small {
	flex: 0 0 100px;
	max-width: 100px;
}

.npb-thumb.small img {
	width: 100px;
	height: 76px;
	object-fit: cover;
}

.npb-content {
	padding: 14px;
}

.npb-post-title {
	margin: 0 0 10px;
	line-height: 1.35;
	font-size: 20px;
}

.npb-post-title a {
	text-decoration: none;
}

.npb-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 12px;
	opacity: 0.8;
}

.npb-list-item {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.npb-hero-main .npb-post-title {
	font-size: 34px;
}

.npb-excerpt {
	margin-top: 10px;
	line-height: 1.6;
}

.npb-ticker {
	display: flex;
	align-items: center;
	overflow: hidden;
	gap: 15px;
	padding: 10px 14px;
	background: #111;
	color: #fff;
}

.npb-ticker-label {
	font-weight: 700;
	white-space: nowrap;
}

.npb-ticker-track {
	display: flex;
	gap: 30px;
	white-space: nowrap;
	will-change: transform;
}

.npb-ticker-item {
	color: inherit;
	text-decoration: none;
}

.npb-tabs-nav {
	display: flex;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.npb-tab-btn {
	cursor: pointer;
	border: 0;
	padding: 8px 12px;
	background: #f2f2f2;
	border-radius: 6px;
}

.npb-tab-btn.active {
	background: #111;
	color: #fff;
}

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

@media (max-width: 1024px) {
	.npb-grid,
	.npb-carousel-track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.npb-grid,
	.npb-carousel-track {
		grid-template-columns: 1fr;
	}

	.npb-list-item {
		flex-direction: column;
	}

	.npb-thumb.small,
	.npb-thumb.small img {
		width: 100%;
		max-width: none;
		height: auto;
	}
}
