:root {
	--color-bg: #f3f5f7;
	--color-page-band: #e9edf2;
	--color-surface: #ffffff;
	--color-surface-strong: #eef2f6;
	--color-text: #14171c;
	--color-muted: #626b76;
	--color-border: #d7dde5;
	--color-accent: #e11928;
	--color-accent-contrast: #ffffff;
	--color-teal: #00796b;
	--color-gold: #b67a00;
	--color-ink: #101318;
	--color-ink-muted: #c4cbd6;
	--color-header: #ffffff;
	--color-footer: #101318;
	--color-footer-text: #f7f9fc;
	--color-footer-muted: #aeb7c4;
	--color-footer-border: rgba(255, 255, 255, 0.14);
	--shadow-soft: 0 18px 52px rgba(15, 23, 42, 0.10);
	--shadow-card: 0 14px 34px rgba(15, 23, 42, 0.10);
	--radius: 8px;
	--wrap: 1200px;
	--font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-serif: Georgia, "Times New Roman", serif;
	color-scheme: light;
}

html[data-theme="dark"] {
	--color-bg: #0f1216;
	--color-page-band: #151a20;
	--color-surface: #171c23;
	--color-surface-strong: #202731;
	--color-text: #f2f5f8;
	--color-muted: #a7b0bd;
	--color-border: #2e3743;
	--color-accent: #ff3447;
	--color-accent-contrast: #ffffff;
	--color-teal: #22c7ae;
	--color-gold: #f1b84b;
	--color-ink: #07090d;
	--color-ink-muted: #aeb7c4;
	--color-header: #12171d;
	--color-footer: #07090d;
	--color-footer-text: #f7f9fc;
	--color-footer-muted: #9da8b6;
	--color-footer-border: rgba(255, 255, 255, 0.12);
	--shadow-soft: 0 18px 52px rgba(0, 0, 0, 0.36);
	--shadow-card: 0 18px 44px rgba(0, 0, 0, 0.30);
	color-scheme: dark;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: auto;
}

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--color-accent);
}

img,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	cursor: pointer;
}

::selection {
	background: var(--color-accent);
	color: var(--color-accent-contrast);
}

.wrap {
	width: min(100% - 32px, var(--wrap));
	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;
}

.skip-link:focus {
	position: fixed;
	top: 14px;
	left: 14px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--color-accent);
	color: var(--color-accent-contrast);
	border-radius: var(--radius);
}

.icon {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--color-header);
	background: color-mix(in srgb, var(--color-header) 96%, transparent);
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
	backdrop-filter: blur(14px);
}

.topline {
	background: var(--color-ink);
	color: var(--color-footer-text);
	font-size: 0.86rem;
}

.topline__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 38px;
	overflow: hidden;
}

.today {
	flex: 0 0 auto;
	color: var(--color-ink-muted);
}

.ticker {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	gap: 10px;
	text-decoration: none;
}

.ticker strong {
	flex: 0 0 auto;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--color-accent);
	color: var(--color-accent-contrast);
	font-size: 0.75rem;
	line-height: 1.45;
}

.ticker span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.masthead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 76px;
}

.branding {
	min-width: 0;
}

.custom-logo-link,
.site-title {
	display: inline-flex;
	align-items: center;
	max-width: min(360px, 68vw);
	text-decoration: none;
}

.custom-logo {
	width: auto;
	max-height: 64px;
}

.site-title {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	color: var(--color-text);
	letter-spacing: 0;
}

.site-description {
	margin: 8px 0 0;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.35;
}

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.icon-button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface-strong);
	color: var(--color-text);
}

.icon-button:hover,
.icon-button:focus-visible {
	border-color: var(--color-accent);
	color: var(--color-accent);
	outline: none;
}

.theme-toggle .icon-moon {
	display: none;
}

html[data-theme="dark"] .theme-toggle .icon-sun {
	display: none;
}

html[data-theme="dark"] .theme-toggle .icon-moon {
	display: block;
}

.menu-toggle {
	display: none;
}

.header-search {
	padding-bottom: 16px;
}

.header-search[hidden] {
	display: none;
}

.primary-nav {
	border-top: 1px solid var(--color-border);
	background: var(--color-header);
}

.primary-nav .wrap {
	overflow-x: auto;
	scrollbar-width: thin;
}

.menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu a {
	display: block;
	padding: 13px 12px;
	color: var(--color-muted);
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.menu a:hover,
.menu .current-menu-item > a,
.menu .current-cat > a {
	color: var(--color-accent);
}

.search-form {
	display: flex;
	align-items: stretch;
	width: min(100%, 620px);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	overflow: hidden;
}

.search-form label {
	display: flex;
	flex: 1;
}

.search-field {
	width: 100%;
	min-height: 46px;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: var(--color-text);
	outline: none;
}

.search-submit {
	display: inline-grid;
	place-items: center;
	width: 52px;
	border: 0;
	border-left: 1px solid var(--color-border);
	background: var(--color-accent);
	color: var(--color-accent-contrast);
}

.front-hero {
	padding: 28px 0 34px;
	background: linear-gradient(180deg, var(--color-bg), var(--color-page-band));
}

.front-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 22px;
	align-items: stretch;
}

.hero-slider {
	position: relative;
	min-width: 0;
}

.hero-slider__viewport {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	box-shadow: var(--shadow-soft);
	cursor: grab;
	touch-action: pan-y;
}

.hero-slider__track {
	display: flex;
	min-width: 0;
	transform: translate3d(0, 0, 0);
	transition: transform 260ms ease-out;
	will-change: transform;
}

.hero-slider.is-dragging .hero-slider__viewport {
	cursor: grabbing;
}

.hero-slider.is-dragging .hero-slider__track {
	transition: none;
}

.hero-slide {
	display: grid;
	flex: 0 0 100%;
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
	grid-template-rows: minmax(460px, 1fr);
	min-width: 0;
	background: var(--color-surface);
}

.hero-slide.is-active {
	animation: haberHeroFade 220ms ease-out;
}

.hero-slider__button {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: var(--radius);
	background: rgba(17, 24, 39, 0.68);
	color: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.22);
	transform: translateY(-50%);
}

.hero-slider__button:hover,
.hero-slider__button:focus-visible {
	background: var(--color-accent);
	outline: none;
}

.hero-slider__button--prev {
	left: 14px;
}

.hero-slider__button--next {
	right: 14px;
}

.hero-slider__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	min-height: 18px;
	margin-top: 14px;
}

.hero-slider__dot {
	width: 12px;
	height: 12px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: color-mix(in srgb, var(--color-muted) 34%, transparent);
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
	background: var(--color-muted);
	outline: none;
}

.hero-slider__dot.is-active {
	background: var(--color-accent);
}

.featured-story {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.hero-slide.featured-story {
	grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
	grid-template-rows: minmax(460px, 1fr);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.featured-story__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--color-surface-strong);
	overflow: hidden;
}

.hero-slide .featured-story__media {
	height: 100%;
	min-height: 460px;
	aspect-ratio: auto;
}

.featured-story__image,
.post-card__image,
.headline-item__image,
.single-media__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-story__content {
	padding: 28px;
}

.hero-slide .featured-story__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px;
	border-left: 1px solid var(--color-border);
}

.featured-story h1,
.featured-story h2 {
	margin: 12px 0 14px;
	font-size: 3.15rem;
	line-height: 1.04;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.featured-story h1 a,
.featured-story h2 a,
.post-card__title a,
.headline-item h3 a {
	text-decoration: none;
}

.featured-story__excerpt {
	max-width: 62ch;
	color: var(--color-muted);
	font-size: 1rem;
}

.featured-story__excerpt p,
.post-card__excerpt p {
	margin: 0;
}

.headline-panel,
.widget,
.author-box,
.comments-area,
.no-results,
.not-found {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.headline-panel {
	padding: 18px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.section-heading h2 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.2;
}

.section-heading--with-line {
	margin-bottom: 20px;
}

.section-heading--with-line::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--color-border);
}

.headline-item {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 12px;
	padding: 14px 0;
	border-top: 1px solid var(--color-border);
}

.headline-item:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.headline-item__media {
	aspect-ratio: 1;
	border-radius: var(--radius);
	background: var(--color-surface-strong);
	overflow: hidden;
}

.headline-item h3 {
	margin: 6px 0 4px;
	font-size: 0.98rem;
	line-height: 1.35;
}

.headline-item time {
	color: var(--color-muted);
	font-size: 0.82rem;
}

.category-badge {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	padding: 4px 8px;
	border-radius: 4px;
	background: var(--color-surface-strong);
	background: color-mix(in srgb, var(--color-accent) 12%, var(--color-surface));
	color: var(--color-accent);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
	text-transform: uppercase;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--color-muted);
	font-size: 0.86rem;
}

.entry-meta a {
	color: inherit;
}

.reading-time {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.reading-time .icon {
	width: 16px;
	height: 16px;
}

.content-layout {
	display: block;
	max-width: 1120px;
	margin-inline: auto;
	padding-top: 30px;
}

.main-feed {
	min-width: 0;
	width: 100%;
	margin-inline: auto;
}

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

.post-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
	display: grid;
	grid-template-rows: auto 1fr;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	min-width: 0;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.post-card:hover,
.post-card:focus-within {
	border-color: color-mix(in srgb, var(--color-accent) 36%, var(--color-border));
	box-shadow: var(--shadow-card);
	transform: translateY(-2px);
}

.post-card__media {
	display: block;
	aspect-ratio: 16 / 9;
	background: var(--color-surface-strong);
	overflow: hidden;
}

.post-card__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 18px;
}

.post-card__title {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.34;
	overflow-wrap: anywhere;
}

.post-card__excerpt {
	color: var(--color-muted);
	font-size: 0.94rem;
}

.post-card .entry-meta {
	margin-top: auto;
	padding-top: 8px;
}

.media-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	min-height: 100%;
	background: var(--color-surface-strong);
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--color-teal) 22%, var(--color-surface-strong)), var(--color-surface-strong));
	color: var(--color-muted);
	font-weight: 900;
}

.sidebar {
	display: none !important;
}

.widget {
	padding: 18px;
}

.widget-title {
	margin: 0 0 14px;
	font-size: 1rem;
}

.widget ul,
.category-list {
	margin: 0;
	padding-left: 18px;
}

.widget li {
	margin: 8px 0;
}

.archive-shell {
	padding-block: 32px 46px;
}

.archive-header {
	max-width: 1120px;
	margin: 0 auto 24px;
}

.archive-header h1,
.single-header h1,
.not-found h1 {
	margin: 12px 0;
	font-size: 3rem;
	line-height: 1.1;
	letter-spacing: 0;
}

.archive-description {
	max-width: 760px;
	color: var(--color-muted);
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--color-muted);
	font-size: 0.86rem;
}

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

.single-shell {
	padding-bottom: 52px;
}

.single-header {
	width: min(100% - 32px, 920px);
	padding-top: 34px;
	padding-bottom: 22px;
}

.single-header h1 {
	max-width: 920px;
}

.dek {
	max-width: 780px;
	margin: 0 0 18px;
	color: var(--color-muted);
	font-size: 1.18rem;
	line-height: 1.55;
}

.single-media {
	width: min(100% - 32px, 1040px);
	margin-bottom: 30px;
}

.single-media img,
.single-media .media-placeholder {
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	background: var(--color-surface-strong);
}

.single-media figcaption {
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 0.85rem;
}

.single-layout {
	display: block;
	width: min(100% - 32px, 820px);
}

.entry-content {
	min-width: 0;
	font-size: 1.06rem;
	line-height: 1.78;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin: 1.6em 0 0.55em;
	line-height: 1.25;
}

.entry-content p {
	margin: 0 0 1.2em;
}

.entry-content a {
	color: var(--color-accent);
}

.entry-content img {
	height: auto;
	border-radius: var(--radius);
}

.entry-content blockquote {
	margin: 1.5em 0;
	padding: 14px 18px;
	border-left: 4px solid var(--color-accent);
	background: var(--color-surface);
	color: var(--color-muted);
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
	overflow-wrap: anywhere;
}

.entry-content th,
.entry-content td {
	padding: 10px;
	border: 1px solid var(--color-border);
	text-align: left;
}

.entry-content pre {
	max-width: 100%;
	overflow: auto;
	padding: 14px;
	border-radius: var(--radius);
	background: var(--color-surface-strong);
}

.article-aside {
	display: none !important;
}

.author-box {
	display: flex;
	gap: 14px;
	padding: 18px;
}

.author-box img {
	flex: 0 0 auto;
	width: 72px;
	height: 72px;
	border-radius: 50%;
}

.author-box h2 {
	margin: 0 0 4px;
	font-size: 1rem;
}

.author-box p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.tag-list a {
	display: inline-flex;
	padding: 6px 10px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	color: var(--color-muted);
	font-size: 0.88rem;
	text-decoration: none;
}

.post-navigation {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}

.post-navigation a {
	display: block;
	min-height: 92px;
	padding: 16px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	text-decoration: none;
	font-weight: 800;
}

.post-navigation span {
	display: block;
	margin-bottom: 5px;
	color: var(--color-muted);
	font-size: 0.78rem;
	text-transform: uppercase;
}

.related-posts {
	margin-top: 44px;
}

.comments-area {
	margin-top: 42px;
	padding: 22px;
}

.comments-title {
	margin-top: 0;
}

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

.comment-list .comment {
	margin: 18px 0;
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-bg);
	color: var(--color-text);
}

.comment-form input[type="submit"],
.page-links a,
.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 7px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-surface);
	color: var(--color-text);
	text-decoration: none;
}

.comment-form input[type="submit"],
.page-numbers.current {
	border-color: var(--color-accent);
	background: var(--color-accent);
	color: var(--color-accent-contrast);
}

.navigation.pagination {
	margin-top: 28px;
}

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

.no-results,
.not-found {
	padding: 24px;
}

.no-results h2,
.not-found h1 {
	margin-top: 0;
}

.not-found-shell {
	padding-block: 64px;
}

.site-footer {
	margin-top: 60px;
	padding: 42px 0 24px;
	border-top: 4px solid var(--color-accent);
	background: var(--color-footer);
	color: var(--color-footer-text);
}

.site-footer a {
	color: inherit;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr) minmax(180px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.footer-brand .site-title {
	color: var(--color-footer-text);
}

.footer-brand p,
.footer-bottom,
.footer-widget {
	color: var(--color-footer-muted);
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.footer-widget-title {
	margin: 0 0 8px;
	color: var(--color-footer-text);
	font-size: 1rem;
}

.footer-menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.footer-menu a {
	text-decoration: none;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--color-footer-border);
	font-size: 0.9rem;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 1060px) {
	.front-hero__grid,
	.single-layout {
		grid-template-columns: 1fr;
	}

	.hero-slide.featured-story {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}

	.hero-slide .featured-story__media {
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.hero-slide .featured-story__content {
		border-top: 1px solid var(--color-border);
		border-left: 0;
		padding: 30px;
	}

	.featured-story h1,
	.featured-story h2 {
		font-size: 2.5rem;
	}

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

@media (max-width: 820px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.wrap {
		width: min(100% - 24px, var(--wrap));
	}

	.topline__inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
		padding: 8px 0;
	}

	.ticker {
		width: 100%;
	}

	.masthead {
		min-height: 76px;
	}

	.site-title {
		font-size: 1.6rem;
	}

	.site-description {
		display: none;
	}

	.menu-toggle {
		display: inline-grid;
	}

	.primary-nav {
		display: none;
		position: absolute;
		inset-inline: 0;
		top: 100%;
		background: var(--color-surface);
		border-bottom: 1px solid var(--color-border);
		box-shadow: var(--shadow-soft);
	}

	.site-header.is-menu-open .primary-nav {
		display: block;
	}

	.primary-nav .wrap {
		width: 100%;
	}

	.menu {
		flex-direction: column;
		align-items: stretch;
		padding: 8px 12px;
	}

	.menu a {
		padding: 12px;
	}

	.header-search {
		position: absolute;
		inset-inline: 0;
		top: 100%;
		width: 100%;
		padding: 12px;
		background: var(--color-surface);
		border-bottom: 1px solid var(--color-border);
		box-shadow: var(--shadow-soft);
	}

	.header-search .search-form {
		width: 100%;
	}

	.front-hero {
		padding-top: 20px;
	}

	.featured-story h1,
	.featured-story h2,
	.archive-header h1,
	.single-header h1,
	.not-found h1 {
		font-size: 2.1rem;
	}

	.post-grid,
	.post-grid--three,
	.footer-grid,
	.footer-widgets,
	.post-navigation {
		grid-template-columns: 1fr;
	}

	.single-header {
		padding-top: 24px;
	}
}

@media (max-width: 560px) {
	.header-actions {
		gap: 6px;
	}

	.icon-button {
		width: 38px;
		height: 38px;
	}

	.headline-item {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.featured-story__content,
	.post-card__body,
	.widget,
	.comments-area,
	.no-results,
	.not-found {
		padding: 16px;
	}

	.hero-slide .featured-story__content {
		padding: 16px;
	}

	.featured-story h1,
	.featured-story h2,
	.archive-header h1,
	.single-header h1,
	.not-found h1 {
		font-size: 1.85rem;
		line-height: 1.12;
	}

	.hero-slider__button {
		top: 34%;
		width: 38px;
		height: 38px;
	}

	.hero-slider__dots {
		gap: 6px;
	}

	.hero-slider__dot {
		width: 10px;
		height: 10px;
	}

	.entry-content {
		font-size: 1rem;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@keyframes haberHeroFade {
	from {
		opacity: 0.82;
		transform: translateY(6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
