/* ----------------------------------------
   Listing hero
---------------------------------------- */
.noticias-page .site-content,
.nt-single-page.site-content {
	padding: 0;
}

.nt-hero {
	padding: 72px 0 40px;
	text-align: center;
}

.nt-hero h1 {
	font-size: 56px;
	margin-bottom: 20px;
}

.nt-hero p {
	max-width: 780px;
	margin: 0 auto;
	font-size: 20px;
	font-weight: 500;
	color: var(--th-navy-soft);
}

/* ----------------------------------------
   Card grid (shared by listing + related)
---------------------------------------- */
.nt-grid-section {
	padding: 40px 0 80px;
}

.nt-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.nt-card {
	background: var(--th-gray-100);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.nt-card__media {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: var(--th-gray-300);
}

.nt-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nt-card__body {
	position: relative;
	padding: 24px 56px 28px 24px;
	flex: 1 1 auto;
}

.nt-card__title {
	font-size: 22px;
	line-height: 1.3;
	margin-bottom: 12px;
}

.nt-card__title a {
	color: var(--th-navy);
}

.nt-card__title a:hover {
	text-decoration: none;
	opacity: 0.8;
}

.nt-card__excerpt {
	font-size: 16px;
	font-weight: 500;
	color: var(--th-navy-soft);
	margin: 0;
}

.nt-card__arrow {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--th-green);
	color: var(--th-white);
	transition: transform 0.2s ease;
}

.nt-card__arrow:hover {
	transform: scale(1.1);
}

.nt-pagination {
	margin-top: 48px;
}

.nt-pagination .nav-links {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-weight: 600;
}

.nt-pagination a {
	color: var(--th-navy);
}

/* ----------------------------------------
   Single post
---------------------------------------- */
.nt-single__header {
	background: var(--th-gray-100);
	padding: 32px 0 48px;
}

.nt-single__back {
	margin: 0 0 20px;
}

.nt-single__back a {
	font-weight: 600;
	font-size: 15px;
	color: var(--th-navy);
}

.nt-single__header h1 {
	font-size: 44px;
	max-width: 920px;
	margin-bottom: 16px;
}

.nt-single__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: var(--th-navy-soft);
}

.nt-single__meta-sep {
	opacity: 0.6;
}

.nt-single__media {
	margin-top: -32px;
}

.nt-single__media img {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	border-radius: 16px;
}

.nt-single__body {
	padding: 56px 0;
	max-width: 800px;
}

.nt-single__content {
	font-size: 18px;
	font-weight: 500;
	color: var(--th-navy);
	line-height: 1.7;
}

.nt-single__content p {
	margin: 0 0 1.4em;
}

.nt-single__footer {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid var(--th-gray-300);
	font-size: 14px;
	color: var(--th-navy-soft);
}

.nt-single-nav {
	border-top: 1px solid var(--th-gray-300);
	padding: 32px 0;
}

.nt-single-nav__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.nt-single-nav__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	max-width: 45%;
}

.nt-single-nav__link--next {
	text-align: right;
	margin-left: auto;
}

.nt-single-nav__link span {
	font-size: 13px;
	font-weight: 700;
	color: var(--th-green);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.nt-single-nav__link strong {
	font-size: 16px;
	color: var(--th-navy);
	font-weight: 700;
}

.nt-related {
	background: var(--th-gray-50);
	padding: 64px 0;
}

.nt-related__title {
	font-size: 32px;
	margin-bottom: 32px;
}

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 980px) {
	.nt-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.nt-hero h1 {
		font-size: 40px;
	}

	.nt-single__header h1 {
		font-size: 32px;
	}
}

@media (max-width: 640px) {
	.nt-grid {
		grid-template-columns: 1fr;
	}

	.nt-single-nav__inner {
		flex-direction: column;
	}

	.nt-single-nav__link,
	.nt-single-nav__link--next {
		max-width: 100%;
		text-align: left;
		margin-left: 0;
	}
}
