.full-width-news {
	margin-top: 20px;
}

.news-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	min-height: 83vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.news-carousel {
	position: relative;
	width: 100%;
}

.news-card {
	display: none;
	position: relative;
	border-radius: 36px;
	overflow: hidden;
	width: 100%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.4s ease;
}

.news-card.active {
	display: block;
}

.news-card:hover .zoomable img {
	transform: scale(1.05);
}

.news-image {
	position: relative;
	max-height: 750px;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 1.3);
}

.news-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.news-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
	z-index: 1;
}

.news-gradient {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	pointer-events: none;
	border-radius: 0 0 16px 16px;
	z-index: 2;
}

.news-date {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #5865f2;
	color: white;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 14px;
	z-index: 3;
	user-select: none;
}

.news-text {
	position: absolute;
	bottom: 15px;
	left: 20px;
	right: 20px;
	color: white;
	z-index: 4;
}

.news-text h2 {
	margin: 0 0 5px;
	font-size: 28px;
	font-weight: 700;
}

.news-text p {
	margin: 0;
	font-size: 18px;
	line-height: 1.5;
	max-height: 4.5em;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 50%;
	transition: background 0.3s ease;
}

.news-nav.left {
	left: 10px;
}

.news-nav.right {
	right: 10px;
}

.news-nav:hover {
	background: #e0e0e0;
}

body.dark-theme .news-nav {
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
}

body.dark-theme .news-nav:hover {
	background: rgba(255, 255, 255, 0.2);
}

.news-card.fade-in {
	animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.98);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.news-card.slide-left {
	animation: slideLeft 0.5s ease forwards;
}

.news-card.slide-right {
	animation: slideRight 0.5s ease forwards;
}

@keyframes slideLeft {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideRight {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
