:root {
	--ink: #111319;
	--muted: #626873;
	--paper: #f7f4ee;
	--white: #fff;
	--navy: #061d3a;
	--navy-2: #0a294f;
	--gold: #c99a4a;
	--line: #d9d4ca;
	--red: #9d1b24;
	--green: #1d5f3a;
	--serif: Georgia, "Times New Roman", Times, serif;
	--sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: var(--serif);
	line-height: 1.55;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
}

.container {
	width: min(1240px, calc(100% - 36px));
	margin-inline: auto;
}

.container-narrow {
	width: min(760px, calc(100% - 36px));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--white);
	color: var(--navy);
	font: 700 14px/1 var(--sans);
}

.menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.utility {
	background: var(--navy);
	color: #e9edf4;
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.08em;
}

.utility-inner {
	min-height: 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.utility-nav .menu {
	display: flex;
	gap: 18px;
}

.utility a:hover,
.utility a:focus-visible {
	color: var(--gold);
}

.masthead {
	background: #082241;
	border-bottom: 1px solid rgb(255 255 255 / 0.12);
	padding: 18px 0 13px;
}

.masthead-inner {
	display: grid;
	grid-template-columns: 190px minmax(0, 650px) 190px;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.masthead-tagline {
	margin: 0;
	font-family: var(--sans);
	color: #dce6f2;
	font-size: 12px;
	line-height: 1.45;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.brand {
	grid-column: 2;
	justify-self: center;
	width: min(650px, 100%);
}

.brand a,
.brand .custom-logo-link {
	display: block;
}

.brand img,
.brand .custom-logo {
	width: 100%;
	height: 150px;
	object-position: center;
	border-radius: 2px;
}

.main-nav {
	position: sticky;
	top: 0;
	z-index: 10;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.admin-bar .main-nav {
	top: 32px;
}

.nav-inner {
	min-height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-x: auto;
	scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
	display: none;
}

.nav-inner .menu {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-inner a {
	display: block;
	white-space: nowrap;
	padding: 15px 18px 13px;
	border-bottom: 3px solid transparent;
	font-family: var(--sans);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.055em;
}

.nav-inner a:hover,
.nav-inner a:focus-visible,
.nav-inner .current-menu-item > a,
.nav-inner .current-cat > a {
	color: var(--navy);
	border-bottom-color: var(--gold);
}

.breaking {
	min-height: 45px;
	margin-top: 24px;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	background: rgb(255 255 255 / 0.38);
}

.breaking strong {
	align-self: stretch;
	display: flex;
	align-items: center;
	padding: 14px 16px;
	background: var(--red);
	color: var(--white);
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.breaking > a {
	min-width: 0;
	padding: 0 18px;
	font-size: 15px;
	font-weight: 700;
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.breaking > a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.breaking > a.is-changing {
	opacity: 0;
	transform: translateY(4px);
}

@media (prefers-reduced-motion: reduce) {
	.breaking > a {
		transition: none;
	}
}

.eyebrow {
	display: block;
	width: fit-content;
	margin-bottom: 8px;
	color: var(--red);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

a.eyebrow:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hero {
	display: grid;
	grid-template-columns: 1fr 1.7fr 1fr;
	gap: 28px;
	padding: 30px 0 34px;
	border-bottom: 1px solid var(--line);
}

.hero-side {
	display: grid;
	gap: 22px;
	align-content: start;
}

.story {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.story:last-child {
	border-bottom: 0;
}

.story h1,
.story h2,
.story h3,
.story h4 {
	margin: 0 0 9px;
	font-weight: 700;
	line-height: 1.08;
}

.story h1 {
	font-size: 42px;
}

.story h2 {
	font-size: 25px;
}

.story h3 {
	font-size: 20px;
}

.story h1 a:hover,
.story h2 a:hover,
.story h3 a:hover,
.card h3 a:hover,
.dome h3 a:hover,
.dome h4 a:hover {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.story p {
	margin: 0;
	color: #4e535b;
	font-size: 15px;
}

.meta {
	margin-top: 12px;
	color: #68707a;
	font-family: var(--sans);
	font-size: 11px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.lead-img {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	margin-bottom: 16px;
	background:
		linear-gradient(135deg, rgb(8 34 65 / 0.1), rgb(201 154 74 / 0.22)),
		linear-gradient(120deg, #c9c0b1, #ece6dc);
}

.lead-img img,
.thumb img,
.video-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lead-img.is-placeholder::after {
	content: "Κεντρική φωτογραφία άρθρου";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #5e5a53;
	font-family: var(--sans);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section {
	padding: 38px 0;
	border-bottom: 1px solid var(--line);
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	padding-top: 11px;
	margin-bottom: 24px;
	border-top: 4px solid var(--ink);
}

.section-head h1,
.section-head h2 {
	margin: 0;
	font-size: 34px;
	line-height: 1;
}

.section-head > a {
	color: var(--muted);
	font-family: var(--sans);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.section-head > a:hover {
	color: var(--navy);
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.card {
	padding-right: 24px;
	border-right: 1px solid var(--line);
}

.card:last-child {
	padding-right: 0;
	border-right: 0;
}

.thumb {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	margin-bottom: 13px;
	background:
		linear-gradient(140deg, rgb(6 29 58 / 0.15), rgb(201 154 74 / 0.25)),
		#ddd7cd;
}

.thumb.is-placeholder::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 10%;
	width: 80%;
	height: 1px;
	background: rgb(0 0 0 / 0.18);
	transform: rotate(-16deg);
}

.thumb.has-image img,
.lead-img.has-image img {
	transition: transform 240ms ease;
}

.thumb.has-image:hover img,
.lead-img.has-image:hover img {
	transform: scale(1.02);
}

.card h3 {
	margin: 0 0 9px;
	font-size: 22px;
	line-height: 1.15;
}

.card p {
	margin: 0;
	color: #575c64;
	font-size: 14px;
}

.dome {
	padding: 48px 0 52px;
	background: linear-gradient(145deg, var(--navy), #031328);
	color: var(--white);
}

.dome .section-head {
	border-top-color: var(--gold);
}

.dome .section-head h2 {
	font-size: 39px;
}

.dome .section-head h2 span {
	color: var(--gold);
	font-style: italic;
}

.dome .section-head > a {
	color: #dbe3ee;
}

.dome-layout {
	display: grid;
	grid-template-columns: 1.45fr 1fr;
	gap: 32px;
}

.dome-feature {
	display: grid;
	grid-template-columns: 1.08fr 1fr;
	gap: 26px;
	align-items: center;
}

.video-frame {
	position: relative;
	min-height: 330px;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgb(255 255 255 / 0.13);
	background:
		radial-gradient(circle at center, rgb(201 154 74 / 0.22), transparent 28%),
		linear-gradient(130deg, #163d66, #08192e);
}

.play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 72px;
	height: 72px;
	display: grid;
	place-items: center;
	border: 1px solid var(--gold);
	border-radius: 50%;
	color: var(--gold);
	font-family: var(--sans);
	font-size: 22px;
	transform: translate(-50%, -50%);
	transition: background-color 160ms ease, color 160ms ease;
}

.video-frame:hover .play {
	color: var(--navy);
	background: var(--gold);
}

.dome .eyebrow {
	color: var(--gold);
}

.dome h3 {
	margin: 0 0 14px;
	font-size: 36px;
	line-height: 1.08;
}

.dome p {
	color: #ccd6e2;
}

.dome-meta {
	color: #aebccc;
}

.dome-list {
	display: grid;
	gap: 0;
	border-top: 1px solid rgb(255 255 255 / 0.16);
}

.dome-item {
	display: grid;
	grid-template-columns: 92px 1fr;
	gap: 16px;
	padding: 17px 0;
	border-bottom: 1px solid rgb(255 255 255 / 0.16);
}

.number {
	color: var(--gold);
	font-size: 34px;
	font-style: italic;
	line-height: 1;
}

.dome-item h4 {
	margin: 0;
	font-size: 20px;
	line-height: 1.15;
}

.sports .section-head {
	border-top-color: var(--green);
}

.sports .eyebrow {
	color: var(--green);
}

.empty-state {
	margin: 0;
	padding: 28px;
	border: 1px solid var(--line);
	background: rgb(255 255 255 / 0.44);
	color: var(--muted);
	font-family: var(--sans);
}

.empty-state-dark {
	border-color: rgb(255 255 255 / 0.18);
	background: rgb(255 255 255 / 0.05);
	color: #ccd6e2;
}

.site-footer {
	padding: 38px 0 28px;
	background: #050f1d;
	color: #cbd3de;
	font-family: var(--sans);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 38px;
}

.site-footer h2 {
	margin: 0 0 14px;
	color: var(--white);
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-footer .menu a {
	display: block;
	padding: 4px 0;
	color: #aeb8c5;
	font-size: 13px;
}

.site-footer .menu a:hover {
	color: var(--white);
}

.footer-logo {
	color: var(--white);
	font-family: var(--serif);
	font-size: 33px;
}

.footer-logo b {
	color: var(--gold);
}

.footer-brand p {
	max-width: 330px;
	color: #9da8b6;
	font-family: var(--serif);
}

.copyright {
	margin-top: 30px;
	padding-top: 18px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid rgb(255 255 255 / 0.1);
	color: #8793a2;
	font-size: 11px;
}

.theme-credit a {
	color: #cbd3de;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.theme-credit a:hover {
	color: var(--gold);
}

/* Archive and search views. */
.archive-section {
	min-height: 52vh;
}

.archive-head {
	align-items: flex-start;
}

.archive-description {
	max-width: 700px;
	margin-top: 12px;
	color: var(--muted);
}

.listing-grid {
	row-gap: 36px;
}

.listing-grid .card:nth-child(4n) {
	padding-right: 0;
	border-right: 0;
}

.navigation.pagination {
	margin-top: 36px;
	font-family: var(--sans);
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	min-width: 40px;
	min-height: 40px;
	display: inline-grid;
	place-items: center;
	padding: 8px 12px;
	border: 1px solid var(--line);
	background: var(--white);
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

.search-form {
	max-width: 620px;
	display: flex;
	margin: 0 0 34px;
	font-family: var(--sans);
}

.search-form label {
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	font: 16px/1.2 var(--sans);
}

.search-submit {
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid var(--navy);
	background: var(--navy);
	color: var(--white);
	font: 700 12px/1 var(--sans);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.search-submit:active {
	transform: translateY(1px);
}

/* Single articles and pages. */
.single-article,
.page-article {
	padding-top: 54px;
	padding-bottom: 60px;
}

.article-header h1 {
	margin: 0;
	font-size: clamp(40px, 6vw, 68px);
	line-height: 1.03;
}

.article-deck {
	margin: 22px 0 0;
	color: #4e535b;
	font-size: 21px;
	line-height: 1.45;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	margin-top: 22px;
	color: #737984;
	font: 700 11px/1.4 var(--sans);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.article-meta a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-meta .article-updated {
	color: var(--navy);
}

.article-meta time {
	white-space: nowrap;
}

.article-image {
	margin-top: 34px;
	margin-bottom: 34px;
}

.article-image img {
	width: 100%;
	max-height: 700px;
	object-fit: cover;
}

.article-image figcaption {
	margin-top: 8px;
	color: var(--muted);
	font: 12px/1.4 var(--sans);
}

.article-content {
	font-size: 19px;
	line-height: 1.75;
}

.article-content > * {
	max-width: 100%;
}

.article-content h2,
.article-content h3 {
	margin-top: 1.7em;
	line-height: 1.15;
}

.article-content a {
	color: var(--navy);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-content blockquote {
	margin: 1.8em 0;
	padding-left: 22px;
	border-left: 4px solid var(--gold);
	font-size: 1.25em;
	line-height: 1.45;
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 32px;
	font-family: var(--sans);
}

.post-tags a {
	padding: 6px 10px;
	border: 1px solid var(--line);
	background: var(--white);
	font-size: 12px;
}

.post-navigation {
	padding-bottom: 44px;
	font-family: var(--sans);
}

.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
	display: block;
}

.post-navigation .nav-subtitle {
	display: block;
	margin-bottom: 8px;
	color: var(--red);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.post-navigation .nav-title {
	display: block;
	color: var(--navy);
	font-family: var(--serif);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.18;
}

.post-navigation a:hover {
	text-decoration: underline;
}

.comments-area {
	padding-bottom: 60px;
}

.comment-list {
	padding-left: 24px;
}

.comment-list li {
	margin-bottom: 20px;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--line);
	background: var(--white);
	font: 16px/1.4 var(--sans);
}

.comment-form input[type="submit"] {
	padding: 13px 20px;
	border: 0;
	background: var(--navy);
	color: var(--white);
	font: 700 13px/1 var(--sans);
	cursor: pointer;
}

.error-page {
	min-height: 58vh;
	padding-top: 70px;
	padding-bottom: 80px;
}

.error-code {
	margin: 0;
	color: var(--red);
	font: 800 14px/1 var(--sans);
	letter-spacing: 0.14em;
}

.error-page h1 {
	margin: 14px 0;
	font-size: clamp(42px, 7vw, 72px);
	line-height: 1;
}

.error-page > p:not(.error-code) {
	max-width: 600px;
	color: var(--muted);
	font-size: 18px;
}

.error-page .search-form {
	margin-top: 28px;
}

.text-link {
	font: 800 12px/1.2 var(--sans);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.thumb.has-image img,
	.lead-img.has-image img,
	.play {
		transition: none;
	}
}

@media (max-width: 980px) {
	.masthead-inner {
		grid-template-columns: 1fr;
	}

	.masthead-tagline {
		display: none;
	}

	.brand {
		grid-column: 1;
	}

	.brand img,
	.brand .custom-logo {
		height: 150px;
	}

	.hero {
		grid-template-columns: 1fr 1fr;
	}

	.hero-main {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.card:nth-child(2n) {
		padding-right: 0;
		border-right: 0;
	}

	.listing-grid .card:nth-child(odd) {
		padding-right: 24px;
		border-right: 1px solid var(--line);
	}

	.dome-layout,
	.dome-feature {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	.admin-bar .main-nav {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.container,
	.container-narrow {
		width: min(100% - 24px, 1240px);
	}

	.utility-inner {
		justify-content: center;
	}

	.brand img,
	.brand .custom-logo {
		height: 80px;
	}

	.nav-inner {
		justify-content: flex-start;
	}

	.nav-inner .menu {
		justify-content: flex-start;
	}

	.hero {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hero-main {
		grid-column: auto;
	}

	.story h1 {
		font-size: 34px;
	}

	.grid-4 {
		grid-template-columns: 1fr;
	}

	.card,
	.card:nth-child(2n),
	.listing-grid .card:nth-child(odd) {
		padding-right: 0;
		padding-bottom: 22px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.dome h3 {
		font-size: 31px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.copyright {
		flex-direction: column;
	}

	.breaking {
		grid-template-columns: 1fr;
	}

	.breaking strong {
		padding: 10px 13px;
	}

	.breaking > a {
		padding: 10px 13px;
	}

	.section-head {
		align-items: flex-start;
	}

	.section-head > a {
		max-width: 130px;
		text-align: right;
	}

	.article-header h1 {
		font-size: 40px;
	}

	.article-deck {
		font-size: 18px;
	}

	.article-content {
		font-size: 17px;
	}

	.post-navigation .nav-links {
		grid-template-columns: 1fr;
	}

	.post-navigation .nav-next {
		text-align: left;
	}

	.search-form {
		display: grid;
		gap: 8px;
	}

	.search-submit {
		width: 100%;
	}
}
