.news-block {
	padding: 80px 0;
}

.news-block__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 60px;
}

.news-block__title {
	font-size: 40px;
	text-align: left;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0;
	line-height: 130%;
}

/* Two-column layout: Featured post + Grid of 3 posts */
.news-block__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

/* Featured post - takes full height on left */
.news-block__featured {
	border: 1px solid #3D4141;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.news-block__featured:hover {
	border-color: var(--color-secondary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-block__featured-image {
	width: 100%;
	height: 400px;
	overflow: hidden;
	position: relative;
}

.news-block__featured-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.news-block__featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-block__featured:hover .news-block__featured-image img {
	transform: scale(1.05);
}

.news-block__featured-content {
	padding: 16px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	background: transparent;
}

.news-block__featured-title {
	font-size: 20px;
	font-weight: 800;
	line-height: 130%;
	margin-bottom: 10px;
}

.news-block__featured-title a {
	color: var(--color-text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-block__featured-excerpt {
	font-size: 14px;
	line-height: 150%;
	font-weight: 600;
	color: #F7F5F5;
	margin-bottom: 20px;
	flex-grow: 1;
}

.news-block__featured-excerpt p {
	margin: 0 0 10px 0;
}

/* Grid for 3 smaller posts on right */
.news-block__grid {
	display: grid;
	grid-template-rows: repeat(3, 1fr);
	gap: 20px;
}

/* Smaller cards for posts 2-4 */
.news-block__card {
	border: 1px solid var(--color-border);
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: grid;
	grid-template-columns: 213px 1fr;
	gap: 20px;
}

.news-block__card:hover {
	border-color: var(--color-secondary);
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-block__card-image {
	width: 213px;
	height: 100%;
	min-height: 140px;
	overflow: hidden;
	position: relative;
}

.news-block__card-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.news-block__card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-block__card:hover .news-block__card-image img {
	transform: scale(1.1);
}

.news-block__card-content {
	padding: 20px 20px 20px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-block__card-title {
	font-size: 20px;
	font-weight: 800;
	line-height: 130%;
	margin-bottom: 10px;
}

.news-block__card-title a {
	color: var(--color-text-light);
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-block__card-date {
	font-size: 16px;
	font-weight: 700;
	color: #F7F5F5;
	margin-bottom: 10px;
}

.news-block__card-excerpt {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--color-text-gray);
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-block__card-excerpt p {
	margin: 0;
}

.news-block__card-link {
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
	font-size: 14px;
}

.news-block__card-link:hover {
	color: white;
}


.news-block__card-link svg {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.news-block__card-link svg path {
	transition: stroke 0.3s ease;
}

.news-block__card-link:hover svg {
	transform: translate(2px, -2px);
}

.news-block__card-link:hover svg path {
	stroke: white;
}

.news-block__empty {
	text-align: center;
	color: var(--color-text-gray);
	font-size: 1.125rem;
	padding: 60px 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.news-block {
		padding: 60px 0;
	}

	.news-block__header {
		margin-bottom: 40px;
	}

	.news-block__title {
		font-size: 2rem;
	}

	.news-block__layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.news-block__featured-image {
		height: 300px;
	}

	.news-block__grid {
		grid-template-rows: auto;
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.news-block {
		padding: 40px 0;
	}

	.news-block__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		margin-bottom: 30px;
	}

	.news-block__title {
		font-size: 1.75rem;
	}

	.news-block__featured-image {
		height: 250px;
	}

	.news-block__featured-content {
		padding: 20px;
	}

	.news-block__featured-title {
		font-size: 1.5rem;
	}

	.news-block__card {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.news-block__card-image {
		width: 100%;
		height: 180px;
		min-height: 180px;
	}

	.news-block__card-content {
		padding: 20px;
	}

	.news-block__card-title {
		font-size: 1.125rem;
	}
}
.btn_container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	.btn-primary {
		background: transparent;
		padding: 17px 40px;
		border: 2px solid #FFFFFF;
		border-radius: 4px;
		position: relative;
		transition: all 0.3s ease;
	}
	.btn-primary::before {
		content: '';
		position: absolute;
		top: 4px;
		left: 4px;
		right: -8px;
		bottom: -9px;
		border-right: 2px solid #FFFFFF;
		border-radius: 4px;
		transition: opacity 0.3s
		ease;
		border-bottom: 2px solid #FFFFFF;
	}
	.btn-primary:hover::before {
		opacity: 0;
	}
}
