/* Modern News Design - Blue Ice Theme */

/* Header */
.modern-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 5px;
}

.modern-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    /* Blue Gradient: Cyan to Deep Blue */
    background: linear-gradient(135deg, rgb(102, 163, 216) 0%, rgb(63, 101, 136) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    /* Muted Blue */
    color: rgb(150, 180, 200);
    border: 1px solid rgba(150, 180, 200, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.modern-view-all:hover {
    color: #66a3d8;
    border-color: #66a3d8;
    background: rgba(63, 101, 136, 0.2);
}

.modern-view-all span {
    font-size: 13px;
    font-weight: 500;
}

.icon-chevron-right {
    height: 16px;
    width: 16px;
    transition: transform 0.3s;
}

.modern-view-all:hover .icon-chevron-right {
    transform: translateX(3px);
}

/* Featured Card */
.modern-featured-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    /* Dark Blue BG */
    background: linear-gradient(135deg, rgba(16, 20, 28, 0.6) 0%, rgba(9, 12, 18, 0.8) 100%);
    /* Blue Border */
    border: 1px solid rgba(63, 101, 136, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    text-decoration: none !important;
    height: 100%;
}

.featured-image-container {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.modern-featured-card:hover .featured-image {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    /* Gradient to Dark Blue/Black */
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 6, 12, 0.3) 40%, rgba(5, 7, 10, 0.95) 100%);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
}

.featured-badge {
    display: inline-block;
    padding: 4px 12px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
    border-radius: 20px;
    /* Blue Badge */
    background: linear-gradient(135deg, rgb(63, 101, 136) 0%, rgb(102, 163, 216) 100%);
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px rgba(63, 101, 136, 0.4);
}

.featured-title {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: rgb(220, 230, 240);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin: 0 0 12px 0;
    transition: color 0.3s;
    line-height: 1.2;
}

.modern-featured-card:hover .featured-title {
    color: #66a3d8;
    /* Hover Blue */
}

.featured-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgb(150, 170, 190);
    font-size: 13px;
}

.icon-calendar {
    margin-right: 8px;
    color: #66a3d8;
}

.featured-desc {
    color: rgb(150, 170, 190);
    font-size: 15px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
}

.read-more {
    display: flex;
    align-items: center;
    color: #66a3d8;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 5px;
}

.icon-chevron {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.modern-featured-card:hover .icon-chevron {
    transform: translateX(5px);
}

.hover-glow {
    position: absolute;
    inset: 0;
    /* Blue Glow */
    background: radial-gradient(circle, rgba(63, 101, 136, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.modern-featured-card:hover .hover-glow {
    opacity: 1;
}

/* List Cards */
.hero-news-flex-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-news-flex-row>.col-md-8,
.hero-news-flex-row>.col-md-4 {
    display: flex;
    flex-direction: column;
}

.modern-news-list {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.modern-list-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* Dark Blue BG */
    background: linear-gradient(135deg, rgba(16, 20, 28, 0.7) 0%, rgba(9, 12, 18, 0.5) 100%);
    border: 1px solid rgba(63, 101, 136, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
    height: 100%;
    flex: 1;
}

.list-image-container {
    position: relative;
    height: 250px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.modern-list-card:hover .list-image {
    transform: scale(1.1);
}

.list-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(9, 12, 18, 0.8) 100%);
}

.list-content {
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.list-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: rgb(220, 230, 240);
    margin: 0 0 10px 0;
    transition: color 0.3s;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.modern-list-card:hover .list-title {
    color: #66a3d8;
}

.list-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: rgb(150, 170, 190);
    font-size: 13px;
}

.list-desc {
    color: rgb(150, 170, 190);
    font-size: 14px;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
    line-height: 1.5;
}

.icon-calendar-sm {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    color: #66a3d8;
}

.read-more-sm {
    display: flex;
    align-items: center;
    color: #66a3d8;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    gap: 4px;
    margin-top: auto;
}

.icon-chevron-sm {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.modern-list-card:hover .icon-chevron-sm {
    transform: translateX(3px);
}

.hover-glow-sm {
    position: absolute;
    inset: 0;
    /* Blue Glow */
    background: radial-gradient(circle, rgba(63, 101, 136, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.modern-list-card:hover .hover-glow-sm {
    opacity: 1;
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .modern-news-list {
        margin-top: 20px;
        height: auto;
    }

    .modern-featured-card {
        height: auto;
    }

    .featured-image-container {
        height: 250px;
    }

    .modern-list-card {
        height: auto;
    }
}

.news-entry-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.news-entry-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(6px);
}

.news-entry-modal {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 720px;
	border-radius: 22px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(18,18,18,0.98), rgba(32,32,32,0.96)),
		url('../img/news-bg.jpg') center center / cover no-repeat;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: 0 25px 70px rgba(0,0,0,0.45);
	padding: 38px 34px 28px;
	color: #fff;
	animation: newsEntryFadeUp 0.35s ease;
}

@keyframes newsEntryFadeUp {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.news-entry-close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	color: #fff;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: all 0.25s ease;
}

.news-entry-close:hover {
	background: rgba(255,255,255,0.16);
	transform: scale(1.05);
}

.news-entry-header {
	margin-bottom: 20px;
}

.news-entry-badge {
	display: inline-block;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(212, 177, 103, 0.14);
	border: 1px solid rgba(212, 177, 103, 0.35);
	color: #d4b167;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.news-entry-header h2 {
	margin: 0 0 8px 0;
	font-size: 36px;
	font-family: 'Cinzel', serif;
	color: #fff;
}

.news-entry-date {
	margin: 0;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #c9a86a;
}

.news-entry-body {
	margin-bottom: 26px;
}

.news-entry-body p {
	margin: 0 0 14px 0;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255,255,255,0.85);
}

.news-entry-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.news-entry-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	padding: 13px 22px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	border: 0;
	cursor: pointer;
	transition: all 0.25s ease;
}

.news-entry-btn.primary {
	background: linear-gradient(135deg, #a47b36, #d7b472);
	color: #111;
}

.news-entry-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(215,180,114,0.22);
}

.news-entry-btn.secondary {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	color: #fff;
}

.news-entry-btn.secondary:hover {
	background: rgba(255,255,255,0.09);
	text-decoration: none;
	color: #fff;
}

.news-entry-footer {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 16px;
}

.news-entry-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	cursor: pointer;
}

.news-entry-checkbox input {
	margin: 0;
}

.news-entry-hidden {
	display: none !important;
}

body.news-modal-open {
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.news-entry-modal {
		position: relative;
	    z-index: 2;
	    width: 100%;
	    max-width: 720px;
	    border-radius: 22px;
	    overflow: hidden;
	    background:
		linear-gradient(135deg, rgba(18,18,18,0.98), rgba(32,32,32,0.96)),
		url('../img/news-bg.jpg') center center / cover no-repeat;
	    border: 1px solid rgba(255,255,255,0.08);
    	box-shadow: 0 25px 70px rgba(0,0,0,0.45);
	    padding: 38px 34px 28px;
	    color: #fff;
	    animation: newsEntryFadeUp 0.35s ease;
	}

	.news-entry-header h2 {
		font-size: 28px;
	}

	.news-entry-btn {
		width: 100%;
	}
}

.news-entry-hidden {
	display: none !important;
}

body.news-modal-open {
	overflow: hidden;
}

.modern-news-accordion {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.news-acc-item {
	border-radius: 14px;
	border: 1px solid rgba(80,130,220,0.15);
	background: rgba(5,10,20,0.8);
	backdrop-filter: blur(6px);
	overflow: hidden;
	transition: all 0.25s ease;
}

.news-acc-item.active {
	border-color: rgba(120,180,255,0.35);
	box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.news-acc-header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #fff;
}

.news-acc-left {
	display: flex;
	align-items: center;
	gap: 12px;
}

.news-acc-badge {
	background: rgba(100,170,255,0.15);
	color: #8ecbff;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: bold;
}

.news-acc-header h3 {
	margin: 0;
	font-family: 'Cinzel';
	font-size: 20px;
}

.news-acc-right {
	font-size: 12px;
	color: #aaa;
}

.news-acc-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	transition: all 0.3s ease;
}

.news-acc-item.active .news-acc-content {
	max-height: 200px;
	padding: 0 20px 20px;
}

.news-acc-content p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.6;
}

.news-acc-btn {
	display: inline-block;
	margin-top: 10px;
	color: #6fb0ff;
	font-weight: bold;
	text-decoration: none;
}

.news-acc-btn:hover {
	color: #9fd0ff;
}

/* ================================
   🔥 ULTRA NEWS SYSTEM
================================ */

/* CONTENEDOR */
.ultra-news-wrap {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ITEM */
.ultra-news-item {
	position: relative;
	border-radius: 20px;
	border: 1px solid rgba(91, 143, 235, 0.14);
	background: linear-gradient(180deg, rgba(5,10,18,0.86) 0%, rgba(3,7,14,0.94) 100%);
	backdrop-filter: blur(12px);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
	transition: all 0.35s ease;
}

/* GLOW */
.ultra-news-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at left top, rgba(90,150,255,0.15), transparent 50%);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.ultra-news-item:hover::before {
	opacity: 0.6;
}

/* ACTIVO */
.ultra-news-item.active {
	border-color: rgba(120,180,255,0.4);
	box-shadow: 0 20px 50px rgba(0,0,0,0.45);
	transform: translateY(-2px);
}

.ultra-news-item.active::before {
	opacity: 1;
}

/* ================================
   HEADER
================================ */

.ultra-news-trigger {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	color: #fff;
	text-align: left;
	transition: all 0.3s ease;
}

.ultra-news-trigger:hover {
	background: rgba(255,255,255,0.02);
}

/* LEFT */
.ultra-news-trigger-left {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.ultra-news-badge {
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(100,170,255,0.15);
	color: #8ecbff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
}

/* TITLE */
.ultra-news-title {
	margin: 0;
	font-family: 'Cinzel', serif;
	font-size: 24px;
	color: #eef5ff;
	text-shadow: 0 4px 15px rgba(0,0,0,0.4);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* RIGHT */
.ultra-news-trigger-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ultra-news-date {
	font-size: 13px;
	color: #9fb8d9;
}

/* FLECHA */
.ultra-news-arrow {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.05);
	transition: all 0.3s ease;
}

.ultra-news-item.active .ultra-news-arrow {
	transform: rotate(180deg);
	background: rgba(100,170,255,0.15);
}

/* ================================
   CONTENT
================================ */

.ultra-news-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.ultra-news-item.active .ultra-news-content {
	grid-template-rows: 1fr;
}

.ultra-news-content-inner {
	overflow: hidden;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 24px;
	padding: 0 24px;
}

/* ACTIVO */
.ultra-news-item.active .ultra-news-content-inner {
	padding: 24px;
	border-top: 1px solid rgba(255,255,255,0.06);
}

/* ================================
   IMAGE
================================ */

.ultra-news-image-box {
	position: relative;
	width: 100%;
	height: 240px;
	border-radius: 16px;
	overflow: hidden;
	background: #0b1422;
}

.ultra-news-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ultra-news-item.active .ultra-news-image {
	transform: scale(1.05);
}

/* OVERLAY */
.ultra-news-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.1),
		rgba(0,0,0,0.5)
	);
}

/* ================================
   BODY
================================ */

.ultra-news-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ultra-news-meta {
	display: flex;
	gap: 10px;
	font-size: 13px;
	color: #9fb8d9;
	margin-bottom: 12px;
}

.ultra-news-meta-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #6fb0ff;
}

/* TEXTO */
.ultra-news-desc {
	color: #d6e3f7;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 18px;
}

/* ================================
   BOTONES
================================ */

.ultra-news-actions {
	display: flex;
	gap: 12px;
}

.ultra-news-btn {
	padding: 12px 18px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}

/* PRIMARY */
.ultra-news-btn.primary {
	background: linear-gradient(180deg, #6faeff, #4588e8);
	color: #fff;
	box-shadow: 0 8px 20px rgba(70,130,255,0.3);
}

.ultra-news-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(70,130,255,0.4);
}

/* SECONDARY */
.ultra-news-btn.secondary {
	background: rgba(255,255,255,0.05);
	color: #cfe3ff;
	border: 1px solid rgba(255,255,255,0.08);
}

.ultra-news-btn.secondary:hover {
	background: rgba(255,255,255,0.1);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
	.ultra-news-content-inner {
		grid-template-columns: 1fr;
	}

	.ultra-news-image-box {
		height: 200px;
	}

	.ultra-news-title {
		font-size: 18px;
		white-space: normal;
	}
}

@media (max-width: 576px) {
	.ultra-news-title {
		font-size: 16px;
	}

	.ultra-news-actions {
		flex-direction: column;
	}

	.ultra-news-btn {
		width: 100%;
	}
}

.ultra-news-date-mobile {
	display: none;
}

@media (max-width: 991px) {
	.ultra-news-date-mobile {
		display: block;
		margin-top: 6px;
		font-size: 12px;
		color: #9fb8d9;
	}
}

.ultra-news-trigger {
	position: relative;
	z-index: 2;
}

.ultra-news-item.active .ultra-news-content {
	position: relative;
	z-index: 3;
}

.ultra-news-content,
.ultra-news-content-inner,
.ultra-news-body,
.ultra-news-actions {
	position: relative;
	z-index: 5;
}

.ultra-news-btn {
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

.ultra-news-trigger {
	position: relative;
	z-index: 2;
}

.ultra-news-item.active .ultra-news-content {
	position: relative;
	z-index: 3;
}

.ultra-news-content,
.ultra-news-content-inner,
.ultra-news-body,
.ultra-news-actions {
	position: relative;
	z-index: 5;
}

.ultra-news-btn {
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

.ultra-news-date-mobile {
	display: none;
}

@media (max-width: 991px) {
	.ultra-news-date-mobile {
		display: block;
		margin-top: 6px;
		font-size: 12px;
		color: #9fb8d9;
	}
}

.ultra-news-fulltext {
	display: none;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.08);
	color: #dbe7f7;
	font-size: 15px;
	line-height: 1.9;
}

.ultra-news-fulltext.open {
	display: block;
}

.ultra-news-fulltext p {
	margin-bottom: 16px;
}

.ultra-news-fulltext img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 14px 0;
}

.ultra-news-fulltext a {
	color: #79b6ff;
}

.ultra-news-fulltext ul,
.ultra-news-fulltext ol {
	padding-left: 20px;
	margin-bottom: 16px;
}

.ultra-news-fulltext h1,
.ultra-news-fulltext h2,
.ultra-news-fulltext h3,
.ultra-news-fulltext h4 {
	color: #f2f7ff;
	margin-top: 20px;
	margin-bottom: 12px;
}

.ultra-news-content,
.ultra-news-content-inner,
.ultra-news-body,
.ultra-news-actions {
	position: relative;
	z-index: 5;
}

.ultra-news-btn {
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

.ultra-news-date-mobile {
	display: none;
}

@media (max-width: 991px) {
	.ultra-news-date-mobile {
		display: block;
		margin-top: 6px;
		font-size: 12px;
		color: #9fb8d9;
	}
}

.ultra-news-fulltext {
	display: none;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.08);
	color: #dbe7f7;
	font-size: 15px;
	line-height: 1.9;
}

.ultra-news-fulltext.open {
	display: block;
}

.ultra-news-fulltext p {
	margin-bottom: 16px;
}

.ultra-news-fulltext img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 14px 0;
}

.ultra-news-fulltext a {
	color: #79b6ff;
}

.ultra-news-fulltext ul,
.ultra-news-fulltext ol {
	padding-left: 20px;
	margin-bottom: 16px;
}

.ultra-news-fulltext h1,
.ultra-news-fulltext h2,
.ultra-news-fulltext h3,
.ultra-news-fulltext h4 {
	color: #f2f7ff;
	margin-top: 20px;
	margin-bottom: 12px;
}

.ultra-news-content,
.ultra-news-content-inner,
.ultra-news-body,
.ultra-news-actions {
	position: relative;
	z-index: 5;
}

.ultra-news-btn {
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

news-readless-btn {
	display: none;
}

.ultra-news-item .ultra-news-fulltext.open {
	display: block;
}

.ultra-news-item .ultra-news-fulltext.open {
	animation: fadeNewsText .25s ease;
}

.ultra-news-item .ultra-news-fulltext.open + * {
	display: block;
}

@keyframes fadeNewsText {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ultra-news-date-mobile {
	display: none;
}

@media (max-width: 991px) {
	.ultra-news-date-mobile {
		display: block;
		margin-top: 6px;
		font-size: 12px;
		color: #9fb8d9;
	}
}

.news-readless-btn {
	display: none;
}

.ultra-news-item.reading-more .news-readless-btn {
	display: inline-flex;
}

.ultra-news-item.reading-more .news-readmore-btn {
	display: none;
}

.ultra-news-summary-title {
	margin: 0 0 18px;
	color: #eef5ff;
	font-size: 28px;
	line-height: 1.35;
	font-family: 'Cinzel', serif;
	text-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

.ultra-news-fulltext {
	display: none;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.08);
	color: #dbe7f7;
	font-size: 15px;
	line-height: 1.9;
}

.ultra-news-fulltext.open {
	display: block;
}

.ultra-news-fulltext p {
	margin-bottom: 16px;
}

.ultra-news-fulltext img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 14px 0;
}

.ultra-news-fulltext a {
	color: #79b6ff;
}

.ultra-news-fulltext ul,
.ultra-news-fulltext ol {
	padding-left: 20px;
	margin-bottom: 16px;
}

.ultra-news-fulltext h1,
.ultra-news-fulltext h2,
.ultra-news-fulltext h3,
.ultra-news-fulltext h4 {
	color: #f2f7ff;
	margin-top: 20px;
	margin-bottom: 12px;
}

.ultra-news-content,
.ultra-news-content-inner,
.ultra-news-body,
.ultra-news-actions {
	position: relative;
	z-index: 5;
}

.ultra-news-btn {
	position: relative;
	z-index: 10;
	pointer-events: auto;
}

.news-readless-btn {
	display: none;
}

.ultra-news-item.reading-more .news-readless-btn {
	display: inline-flex;
}

.ultra-news-item.reading-more .news-readmore-btn {
	display: none;
}

.ultra-news-date-mobile {
	display: none;
}

@media (max-width: 991px) {
	.ultra-news-date-mobile {
		display: block;
		margin-top: 6px;
		font-size: 12px;
		color: #9fb8d9;
	}

	.ultra-news-summary-title {
		font-size: 20px;
	}
}