:root {
	--ite-section-ink: #163a2f;
	--ite-section-green: #2c6b52;
	--ite-section-gold: #b8924d;
	--ite-section-red: #a13f2d;
	--ite-section-text: #1f2b2a;
	--ite-section-muted: #60707a;
	--ite-section-soft: #f5f8f6;
	--ite-section-line: #d9e4de;
	--ite-section-radius: 18px;
	--ite-section-shadow: 0 8px 24px rgba(15, 30, 22, 0.04);
}

.ite-section-archive {
	background: #fff;
	color: var(--ite-section-text);
}

.ite-section-container {
	width: min(1480px, calc(100% - 64px));
	margin: 0 auto;
}

.ite-section-header {
	padding: 54px 0 34px;
	border-bottom: 1px solid var(--ite-section-line);
	background:
		linear-gradient(180deg, rgba(245, 248, 246, 0.94) 0%, rgba(255, 255, 255, 0) 100%);
}

.ite-section-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 22px;
	color: var(--ite-section-muted);
	font-size: 13px;
}

.ite-section-breadcrumb a {
	color: var(--ite-section-muted);
	text-decoration: none;
}

.ite-section-breadcrumb a:hover {
	color: var(--ite-section-green);
}

.ite-section-title {
	margin: 0;
	max-width: 980px;
	color: var(--ite-section-ink);
	font-size: clamp(44px, 5vw, 70px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.ite-section-description {
	max-width: 820px;
	margin-top: 18px;
	color: var(--ite-section-muted);
	font-size: 18px;
	line-height: 1.7;
}

.ite-section-accent {
	display: flex;
	gap: 10px;
	margin-top: 26px;
}

.ite-section-accent span {
	display: block;
	width: 54px;
	height: 5px;
	border-radius: 999px;
}

.ite-section-accent__gold {
	background: var(--ite-section-gold);
}

.ite-section-accent__green {
	background: var(--ite-section-green);
}

.ite-section-accent__red {
	background: var(--ite-section-red);
}

.ite-ad-slot {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	overflow: hidden;
}

.ite-section-top-ad {
	margin-top: 12px;
	margin-bottom: 64px;
}

.ite-section-bottom-ad {
	margin-top: 64px;
	padding-bottom: 72px;
}

.ite-ad-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: min(970px, 100%);
	min-height: 180px;
	padding: 24px;
	border: 1px dashed #b9cbd5;
	border-radius: 12px;
	color: #405468;
	background:
		repeating-linear-gradient(
			-45deg,
			#f8fbfc,
			#f8fbfc 14px,
			#eef4f7 14px,
			#eef4f7 28px
		);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ite-ad-placeholder strong {
	font-size: 14px;
}

.ite-ad-placeholder span {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
}

.ite-section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ite-section-line);
}

.ite-section-heading h2 {
	margin: 0;
	color: var(--ite-section-ink);
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 600;
	letter-spacing: -0.025em;
}

.ite-section-heading > a {
	flex: 0 0 auto;
	color: var(--ite-section-ink);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.ite-top-stories {
	margin-bottom: 82px;
}

.ite-top-stories__grid {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
	gap: 24px;
	align-items: stretch;
}

.ite-lead-story,
.ite-secondary-story {
	overflow: hidden;
	border: 1px solid var(--ite-section-line);
	border-radius: var(--ite-section-radius);
	background: #fff;
}

.ite-lead-story {
	box-shadow: var(--ite-section-shadow);
}

.ite-lead-story__image,
.ite-secondary-story__image,
.ite-article-card__image,
.ite-sidebar-story__image {
	display: block;
	overflow: hidden;
	background: var(--ite-section-soft);
}

.ite-lead-story__image {
	aspect-ratio: 16 / 9;
}

.ite-lead-story__image img,
.ite-secondary-story__image img,
.ite-article-card__image img,
.ite-sidebar-story__image img,
.ite-story-image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 220ms ease;
}

.ite-lead-story:hover img,
.ite-secondary-story:hover img,
.ite-article-card:hover img,
.ite-sidebar-story:hover img {
	transform: scale(1.025);
}

.ite-story-image-placeholder {
	min-height: 100%;
	background: linear-gradient(135deg, #e8eff2, #dce7eb);
}

.ite-lead-story__content {
	padding: 28px 30px 32px;
}

.ite-story-category {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--ite-section-green);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.07em;
}

.ite-lead-story__title {
	margin: 0;
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.03em;
}

.ite-lead-story__title a,
.ite-secondary-story h3 a,
.ite-article-card__title a,
.ite-sidebar-story h3 a {
	color: var(--ite-section-text);
	text-decoration: none;
}

.ite-lead-story__title a:hover,
.ite-secondary-story h3 a:hover,
.ite-article-card__title a:hover,
.ite-sidebar-story h3 a:hover {
	color: var(--ite-section-green);
}

.ite-story-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin-top: 14px;
	color: var(--ite-section-muted);
	font-size: 13px;
}

.ite-lead-story__excerpt {
	max-width: 850px;
	margin: 18px 0 0;
	color: #53606b;
	font-size: 16px;
	line-height: 1.65;
}

.ite-secondary-stories {
	display: grid;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.ite-secondary-story {
	display: grid;
	grid-template-columns: minmax(145px, 42%) minmax(0, 1fr);
	min-height: 0;
}

.ite-secondary-story__image {
	height: 100%;
	min-height: 220px;
}

.ite-secondary-story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px;
}

.ite-secondary-story h3 {
	margin: 0;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.28;
	letter-spacing: -0.02em;
}

.ite-secondary-story time,
.ite-sidebar-story time {
	display: block;
	margin-top: 12px;
	color: var(--ite-section-muted);
	font-size: 12px;
}

.ite-section-feed {
	margin-top: 24px;
}

.ite-section-feed__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 52px;
	align-items: start;
}

.ite-section-feed__articles {
	min-width: 0;
}

.ite-article-card {
	display: grid;
	grid-template-columns: minmax(220px, 31%) minmax(0, 1fr);
	gap: 26px;
	padding: 26px 0;
	border-bottom: 1px solid var(--ite-section-line);
}

.ite-article-card:first-child {
	padding-top: 0;
}

.ite-article-card__image {
	aspect-ratio: 16 / 10;
	border-radius: 12px;
}

.ite-article-card__content {
	align-self: center;
	min-width: 0;
}

.ite-article-card__title {
	margin: 0;
	font-size: clamp(22px, 2.2vw, 31px);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.ite-article-card__excerpt {
	margin: 14px 0 0;
	color: #596570;
	font-size: 15px;
	line-height: 1.65;
}

.ite-section-feed__articles > .ite-ad-slot {
	margin: 42px 0;
}

.ite-section-feed__articles > .ite-ad-slot .ite-ad-placeholder {
	min-height: 150px;
}

.ite-section-sidebar {
	min-width: 0;
}

.ite-section-sidebar__sticky {
	position: sticky;
	top: 32px;
	display: grid;
	gap: 34px;
}

.ite-section-sidebar .ite-ad-placeholder {
	min-height: 430px;
}

.ite-sidebar-panel {
	padding-top: 4px;
}

.ite-sidebar-panel__title {
	margin: 0 0 18px;
	padding-bottom: 13px;
	border-bottom: 1px solid var(--ite-section-line);
	color: var(--ite-section-ink);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}

.ite-sidebar-stories {
	display: grid;
	gap: 18px;
}

.ite-sidebar-story {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
}

.ite-sidebar-story__image {
	aspect-ratio: 3 / 2;
	border-radius: 8px;
}

.ite-sidebar-story h3 {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.ite-sidebar-empty {
	margin: 0;
	color: var(--ite-section-muted);
	font-size: 14px;
	line-height: 1.6;
}

.ite-newsletter-box {
	padding: 30px;
	border-radius: var(--ite-section-radius);
	color: #fff;
	background: var(--ite-section-ink);
}

.ite-newsletter-box__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #d9bd7b;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.ite-newsletter-box h2 {
	margin: 0;
	color: #fff;
	font-size: 28px;
	line-height: 1.15;
}

.ite-newsletter-box p {
	margin: 14px 0 22px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 14px;
	line-height: 1.6;
}

.ite-newsletter-box a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 7px;
	color: var(--ite-section-ink);
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.ite-pagination {
	margin-top: 42px;
}

.ite-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ite-pagination a,
.ite-pagination span {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	padding: 8px 13px;
	border: 1px solid var(--ite-section-line);
	border-radius: 7px;
	color: var(--ite-section-text);
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.ite-pagination .current {
	border-color: var(--ite-section-ink);
	color: #fff;
	background: var(--ite-section-ink);
}

.ite-pagination a:hover {
	border-color: var(--ite-section-green);
	color: var(--ite-section-green);
}

.ite-section-empty {
	padding: 54px 30px;
	border: 1px solid var(--ite-section-line);
	border-radius: var(--ite-section-radius);
	background: var(--ite-section-soft);
	text-align: center;
}

.ite-section-empty h2 {
	margin: 0;
	color: var(--ite-section-ink);
	font-size: 30px;
}

.ite-section-empty p {
	margin: 14px 0 24px;
	color: var(--ite-section-muted);
}

.ite-section-empty a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	padding: 10px 18px;
	border-radius: 7px;
	color: #fff;
	background: var(--ite-section-ink);
	font-weight: 600;
	text-decoration: none;
}

@media (max-width: 1199px) {
	.ite-top-stories__grid {
		grid-template-columns: 1fr;
	}

	.ite-secondary-stories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-template-rows: none;
	}

	.ite-secondary-story {
		display: block;
	}

	.ite-secondary-story__image {
		aspect-ratio: 16 / 9;
		min-height: 0;
	}

	.ite-section-feed__layout {
		grid-template-columns: minmax(0, 1fr) 310px;
		gap: 34px;
	}
}

@media (max-width: 991px) {
	.ite-section-feed__layout {
		grid-template-columns: 1fr;
	}

	.ite-section-sidebar__sticky {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.ite-section-sidebar .ite-ad-placeholder {
		min-height: 250px;
	}

	.ite-newsletter-box {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767px) {
	.ite-section-container {
		width: calc(100% - 36px);
	}

	.ite-section-header {
		padding: 36px 0 26px;
	}

	.ite-section-breadcrumb {
		margin-bottom: 18px;
	}

	.ite-section-title {
		font-size: clamp(36px, 11vw, 48px);
	}

	.ite-section-description {
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.65;
	}

	.ite-section-top-ad {
		margin-bottom: 46px;
	}

	.ite-ad-placeholder {
		min-height: 100px;
	}

	.ite-top-stories {
		margin-bottom: 58px;
	}

	.ite-secondary-stories {
		grid-template-columns: 1fr;
	}

	.ite-lead-story__content {
		padding: 22px 20px 25px;
	}

	.ite-lead-story__title {
		font-size: 29px;
	}

	.ite-lead-story__excerpt {
		font-size: 15px;
	}

	.ite-secondary-story__content {
		padding: 20px;
	}

	.ite-section-heading {
		align-items: flex-end;
	}

	.ite-section-heading h2 {
		font-size: 27px;
	}

	.ite-article-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 25px 0;
	}

	.ite-article-card__image {
		aspect-ratio: 16 / 9;
	}

	.ite-article-card__title {
		font-size: 25px;
	}

	.ite-section-sidebar__sticky {
		grid-template-columns: 1fr;
	}

	.ite-newsletter-box {
		grid-column: auto;
	}

	.ite-section-bottom-ad {
		margin-top: 48px;
		padding-bottom: 52px;
	}
}

@media (max-width: 479px) {
	.ite-section-container {
		width: calc(100% - 30px);
	}

	.ite-section-heading {
		display: block;
	}

	.ite-section-heading > a {
		display: inline-block;
		margin-top: 10px;
	}

	.ite-lead-story__excerpt,
	.ite-article-card__excerpt {
		display: none;
	}

	.ite-story-meta {
		font-size: 12px;
	}

	.ite-pagination .page-numbers {
		gap: 6px;
	}

	.ite-pagination a,
	.ite-pagination span {
		min-width: 42px;
		min-height: 42px;
		padding: 7px 10px;
	}
}
