:root {
  --hf-accent: #70ad47;
  --hf-accent-dark: #4f8730;
  --hf-ink: #202524;
  --hf-muted: #6f7774;
  --hf-bg: #f4f6f5;
  --hf-surface: #fff;
  --hf-surface-2: #eef2ef;
  --hf-border: #dfe5e1;
  --hf-header: #1e2425;
  --hf-shadow: 0 18px 55px rgba(23, 32, 28, .09);
  --hf-radius: 10px;
  --hf-transition: 180ms ease;
}

[data-theme="dark"] {
  --hf-ink: #edf2ef;
  --hf-muted: #abb6b0;
  --hf-bg: #121716;
  --hf-surface: #19201e;
  --hf-surface-2: #202a27;
  --hf-border: #303c38;
  --hf-header: #0c100f;
  --hf-shadow: 0 18px 55px rgba(0, 0, 0, .28);
  color-scheme: dark;
}

html { scroll-behavior: smooth; }
body { margin: 0; background: var(--hf-bg); color: var(--hf-ink); font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.65; transition: background var(--hf-transition), color var(--hf-transition); }
body.menu-open, body.search-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: var(--hf-ink); text-decoration: none; transition: color var(--hf-transition), background var(--hf-transition), border var(--hf-transition), transform var(--hf-transition); }
a:hover { color: var(--hf-accent-dark); }
button, input, textarea, select { font: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid color-mix(in srgb, var(--hf-accent) 48%, transparent); outline-offset: 3px; }
.container { width: min(100% - 40px, 1280px); margin-inline: auto; }
.narrow-container { max-width: 940px; }
.screen-reader-text { position: absolute !important; 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: 99999; display: block; width: auto; height: auto; padding: 12px 18px; clip: auto; background: var(--hf-surface); color: var(--hf-ink); }
.skip-link { z-index: 10000; }

/* Header */
.site-header { position: relative; z-index: 100; background: var(--hf-surface); box-shadow: 0 4px 18px rgba(19, 28, 24, .08); }
.topbar { background: var(--hf-header); color: #f4f7f5; font-size: 13px; }
.hf-topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.top-navigation ul, .primary-menu, .footer-widget-column ul { list-style: none; margin: 0; padding: 0; }
.top-navigation ul { display: flex; gap: 30px; }
.top-navigation a { color: #d5dcda; }
.topbar-actions { display: flex; align-items: center; gap: 17px; }
.topbar-actions a, .icon-button { color: #fff; opacity: .9; }
.topbar-actions a:hover, .icon-button:hover { color: var(--hf-accent); opacity: 1; }
.icon-button { display: inline-grid; place-items: center; width: 26px; height: 26px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.main-header { background: var(--hf-surface); }
.hf-header-inner { min-height: 90px; display: grid; grid-template-columns: 290px minmax(0, 1fr) 200px; align-items: center; gap: 30px; }
.site-branding, .custom-logo-link { min-width: 0; }
.custom-logo { width: auto; max-width: 260px; max-height: 68px; }
.brand-link { display: inline-flex; align-items: center; gap: 11px; color: var(--hf-ink); }
.brand-link img { width: 56px; height: 56px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 29px; letter-spacing: .03em; }
.brand-copy strong span { color: var(--hf-accent); }
.brand-copy small { margin-top: 8px; font-size: 10px; letter-spacing: .31em; text-transform: uppercase; color: var(--hf-muted); }
.primary-menu { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 31px); }
.primary-menu > li { position: relative; }
.primary-menu a { display: block; padding: 34px 0; font-size: 13px; font-weight: 700; line-height: 1.2; text-transform: uppercase; white-space: nowrap; }
.primary-menu .current-menu-item > a, .primary-menu .current-menu-ancestor > a { color: var(--hf-accent-dark); }
.primary-menu .menu-item-has-children > a::after { content: "\f107"; margin-left: 7px; font-family: "Font Awesome 7 Free"; font-weight: 900; font-size: 10px; }
.primary-menu .sub-menu { position: absolute; top: calc(100% - 10px); left: -18px; min-width: 220px; visibility: hidden; opacity: 0; transform: translateY(8px); padding: 10px 0; margin: 0; list-style: none; background: var(--hf-surface); border: 1px solid var(--hf-border); border-radius: 7px; box-shadow: var(--hf-shadow); transition: var(--hf-transition); }
.primary-menu li:hover > .sub-menu, .primary-menu li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.primary-menu .sub-menu a { padding: 10px 18px; font-size: 12px; text-transform: none; white-space: normal; }
.primary-menu .sub-menu .sub-menu { top: 0; left: calc(100% - 5px); }
.header-search-inline .search-form { background: var(--hf-surface-2); }
.search-form { position: relative; display: flex; align-items: center; width: 100%; min-width: 0; border-radius: 999px; background: var(--hf-bg); }
.search-form label { flex: 1; min-width: 0; }
.search-field { width: 100%; height: 42px; padding: 0 48px 0 18px; border: 1px solid transparent; border-radius: 999px; outline: 0; background: transparent; color: var(--hf-ink); }
.search-field:focus { border-color: var(--hf-accent); }
.search-submit { position: absolute; right: 3px; top: 3px; display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%; background: transparent; color: var(--hf-ink); cursor: pointer; }
.search-submit:hover { background: var(--hf-accent); color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--hf-ink); transition: var(--hf-transition); }
.search-panel { position: absolute; left: 0; right: 0; top: 100%; padding: 30px 0; background: var(--hf-surface); border-top: 1px solid var(--hf-border); box-shadow: var(--hf-shadow); }
.search-panel[hidden] { display: none; }
.search-panel-inner { max-width: 760px; }
.search-panel-title { margin: 0 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.live-search-results { display: grid; gap: 1px; margin-top: 12px; overflow: hidden; border-radius: 8px; }
.live-result { display: flex; justify-content: space-between; gap: 20px; padding: 12px 16px; background: var(--hf-surface-2); }
.live-result span { color: var(--hf-muted); font-size: 13px; white-space: nowrap; }

/* Common UI */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 44px; padding: 10px 22px; border: 1px solid transparent; border-radius: 4px; font-size: 13px; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; cursor: pointer; }
.button-primary { background: var(--hf-accent); color: #fff; }
.button-primary:hover { background: var(--hf-accent-dark); color: #fff; transform: translateY(-1px); }
.button-outline { border-color: var(--hf-border); background: var(--hf-surface); color: var(--hf-ink); }
.button-outline:hover { border-color: var(--hf-accent); color: var(--hf-accent-dark); }
.category-badge { display: inline-block; margin-bottom: 9px; color: var(--hf-accent-dark); font-size: 11px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; }
.eyebrow { display: block; margin-bottom: 8px; color: var(--hf-accent-dark); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-heading { position: relative; margin-bottom: 28px; padding-bottom: 13px; border-bottom: 1px solid var(--hf-border); }
.section-heading::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 42px; height: 2px; background: var(--hf-accent); }
.section-heading h2 { margin: 0; font-size: 21px; font-weight: 750; text-transform: uppercase; }
.section-heading--link { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.section-heading--link > a { color: var(--hf-muted); font-size: 12px; font-weight: 700; text-transform: uppercase; }

/* Hero */
.hero-section { background: #2f3934; }
.hero-swiper, .hero-slide, .hero-empty { min-height: clamp(440px, 44vw, 590px); }
.hero-slide, .hero-empty { background-position: center; background-size: cover; }
.hero-empty { display: flex; align-items: center; background-image: linear-gradient(90deg,rgba(12,18,16,.86),rgba(12,18,16,.16)), url('../images/hero-fallback.svg'); }
.hero-content-wrap { display: flex; align-items: center; min-height: inherit; }
.hero-card { width: min(520px, 90%); padding: clamp(27px, 4vw, 46px); border-radius: 5px; background: rgba(18, 23, 21, .75); color: #fff; backdrop-filter: blur(4px); }
.hero-card h1, .hero-card h2 { margin: 0 0 13px; font-size: clamp(29px, 3vw, 43px); line-height: 1.16; font-weight: 760; }
.hero-card h2 a { color: #fff; }
.hero-card h2 a:hover { color: #b9dc9e; }
.hero-card .category-badge { color: #91cf68; }
.hero-excerpt, .hero-card > p { margin-bottom: 22px; color: #edf2ef; font-size: 16px; }
.hero-excerpt p { margin: 0; }
.hero-swiper .swiper-pagination-bullet { width: 10px; height: 10px; background: #fff; opacity: .86; }
.hero-swiper .swiper-pagination-bullet-active { width: 31px; border-radius: 8px; background: var(--hf-accent); }
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next { color: #fff; opacity: 0; transition: var(--hf-transition); }
.hero-swiper:hover .swiper-button-prev, .hero-swiper:hover .swiper-button-next { opacity: .82; }

/* Layouts */
.home-main { margin-top: 0; }
.home-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 38px; padding-top: 42px; padding-bottom: 72px; background: var(--hf-surface); }
.home-layout::before { content: ""; position: absolute; z-index: -1; }
.home-section + .home-section { margin-top: 44px; }
.post-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.post-card { overflow: hidden; border: 1px solid var(--hf-border); border-radius: 5px; background: var(--hf-surface); box-shadow: 0 5px 20px rgba(20,30,25,.035); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--hf-shadow); }
.post-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--hf-surface-2); }
.entry-image { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 450ms ease; }
.post-card:hover .entry-image { transform: scale(1.035); }
.post-card-body { padding: 16px 16px 18px; }
.post-card-title { margin: 0 0 9px; font-size: 18px; line-height: 1.28; font-weight: 750; }
.post-card-meta, .entry-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--hf-muted); font-size: 12px; }
.post-card-meta i, .entry-meta i { margin-right: 4px; }
.post-card-excerpt { margin-top: 10px; color: var(--hf-muted); font-size: 13px; }
.post-card-excerpt p { margin: 0; }
.section-more { margin-top: 24px; }
.content-area { padding: 42px 0 78px; }
.content-sidebar-layout { display: grid; grid-template-columns: minmax(0, 1fr) 315px; align-items: start; gap: 44px; }
.archive-header { margin: 22px 0 36px; padding: 32px 36px; border-left: 4px solid var(--hf-accent); border-radius: 4px; background: var(--hf-surface); box-shadow: var(--hf-shadow); }
.archive-header h1, .page-header h1 { margin: 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; }
.archive-description, .archive-header > p { max-width: 760px; margin-top: 13px; color: var(--hf-muted); }
.author-header { display: flex; align-items: center; gap: 24px; }
.author-header .avatar { border-radius: 50%; }
.post-list { display: grid; gap: 22px; }
.post-list-item { display: grid; grid-template-columns: 285px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--hf-border); border-radius: var(--hf-radius); background: var(--hf-surface); }
.post-list-media { min-height: 235px; overflow: hidden; }
.post-list-content { padding: 24px 27px; }
.post-list-content .entry-title { margin: 0 0 10px; font-size: 25px; line-height: 1.24; }
.entry-summary { margin: 14px 0; color: var(--hf-muted); }
.entry-summary p { margin: 0; }
.text-link { color: var(--hf-accent-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.load-more { display: flex; margin: 34px auto 0; }
.navigation.pagination { margin-top: 34px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 6px 12px; border: 1px solid var(--hf-border); border-radius: 4px; background: var(--hf-surface); }
.page-numbers.current { border-color: var(--hf-accent); background: var(--hf-accent); color: #fff; }

/* Sidebar */
.widget-area { display: grid; gap: 30px; }
.widget { padding: 24px; border: 1px solid var(--hf-border); border-radius: 5px; background: var(--hf-surface); }
.widget-title { position: relative; margin: 0 0 21px; padding-bottom: 11px; border-bottom: 1px solid var(--hf-border); font-size: 17px; text-transform: uppercase; }
.widget-title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 36px; height: 2px; background: var(--hf-accent); }
.widget ul { margin: 0; padding-left: 18px; }
.widget li + li { margin-top: 9px; }
.widget_categories ul { list-style: none; padding: 0; }
.widget_categories li { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--hf-border); }
.widget_categories li:last-child { border-bottom: 0; }
.widget_categories .cat-count { padding: 1px 8px; border-radius: 999px; background: var(--hf-accent); color: #fff; font-size: 11px; }
.popular-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: popular; }
.popular-list li { display: grid; grid-template-columns: 24px 76px minmax(0, 1fr); gap: 10px; align-items: center; }
.popular-rank { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--hf-ink); color: var(--hf-surface); font-size: 10px; }
.popular-thumb { display: block; width: 76px; height: 54px; overflow: hidden; border-radius: 3px; }
.popular-title { display: -webkit-box; overflow: hidden; font-size: 12px; font-weight: 750; line-height: 1.3; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.popular-date { display: block; margin-top: 5px; color: var(--hf-muted); font-size: 10px; }

/* Single and pages */
.breadcrumbs { margin: 0 0 19px; color: var(--hf-muted); font-size: 12px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 7px; color: var(--hf-border); }
.single-article, .page-article { overflow: hidden; border: 1px solid var(--hf-border); border-radius: var(--hf-radius); background: var(--hf-surface); box-shadow: var(--hf-shadow); }
.single-header, .page-header { padding: clamp(28px, 5vw, 56px); }
.single-header .entry-title { margin: 0 0 19px; font-size: clamp(36px, 5vw, 58px); line-height: 1.08; }
.single-featured-image { margin: 0; }
.single-featured-image img { display: block; width: 100%; max-height: 620px; object-fit: cover; }
.entry-content { padding: clamp(28px, 5vw, 58px); font-size: 18px; line-height: 1.78; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin-top: 1.8em; font-size: 32px; line-height: 1.25; }
.entry-content h3 { margin-top: 1.5em; font-size: 25px; line-height: 1.3; }
.entry-content a { color: var(--hf-accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content blockquote { margin: 2em 0; padding: 22px 26px; border-left: 4px solid var(--hf-accent); background: var(--hf-surface-2); font-size: 20px; font-style: italic; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.entry-content th, .entry-content td { padding: 12px 14px; border: 1px solid var(--hf-border); text-align: left; }
.entry-content th { background: var(--hf-surface-2); }
.alignwide { width: min(1120px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.entry-footer { padding: 0 clamp(28px, 5vw, 58px) clamp(28px, 5vw, 48px); }
.tag-list { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.tag-list a { padding: 5px 10px; border-radius: 999px; background: var(--hf-surface-2); font-size: 12px; }
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.post-navigation > div { min-width: 0; }
.post-navigation a { display: block; min-height: 100%; padding: 18px 20px; border: 1px solid var(--hf-border); border-radius: 5px; background: var(--hf-surface); font-weight: 700; }
.post-navigation span { display: block; margin-bottom: 5px; color: var(--hf-muted); font-size: 11px; text-transform: uppercase; }
.nav-next { text-align: right; }
.related-posts { margin-top: 45px; }
.comments-area { margin-top: 40px; padding: clamp(25px, 4vw, 42px); border: 1px solid var(--hf-border); border-radius: var(--hf-radius); background: var(--hf-surface); }
.comments-title { font-size: 24px; }
.comment-list { padding-left: 0; list-style: none; }
.comment-list .children { list-style: none; }
.comment-body { margin: 22px 0; padding-bottom: 22px; border-bottom: 1px solid var(--hf-border); }
.comment-meta { display: flex; align-items: center; gap: 12px; }
.comment-author .avatar { border-radius: 50%; }
.comment-form label { display: block; font-weight: 650; }
.comment-form input:not([type="checkbox"]), .comment-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--hf-border); border-radius: 4px; background: var(--hf-bg); color: var(--hf-ink); }
.form-submit .submit { min-height: 44px; padding: 10px 22px; border: 0; border-radius: 4px; background: var(--hf-accent); color: #fff; font-weight: 700; cursor: pointer; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
.contact-cards > div { padding: 28px; border-radius: 7px; background: var(--hf-surface-2); }
.contact-cards i { color: var(--hf-accent); font-size: 30px; }
.contact-cards h2 { margin: 12px 0 5px; font-size: 20px; }

/* Empty and 404 */
.no-results { padding: 58px 35px; text-align: center; border-radius: var(--hf-radius); background: var(--hf-surface); }
.empty-icon { color: var(--hf-accent); font-size: 54px; }
.no-results .search-form { max-width: 560px; margin: 22px auto 0; }
.error-404-area { display: grid; place-items: center; min-height: 66vh; padding: 70px 0; background: radial-gradient(circle at center, color-mix(in srgb, var(--hf-accent) 13%, transparent), transparent 55%); }
.error-404-content { max-width: 760px; text-align: center; }
.error-code { color: var(--hf-accent); font-size: clamp(100px, 19vw, 220px); font-weight: 900; line-height: .78; letter-spacing: -.07em; opacity: .23; }
.error-404-content h1 { margin: 28px 0 12px; font-size: clamp(31px, 5vw, 54px); }
.error-404-content p { color: var(--hf-muted); }
.error-404-content .search-form { max-width: 520px; margin: 25px auto; background: var(--hf-surface); }

/* Footer */
.site-footer { background: var(--hf-header); color: #c9d0cd; }
.footer-main { padding: 65px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 42px; }
.site-footer .brand-link { color: #fff; }
.footer-about p { max-width: 330px; color: #aab3af; font-size: 14px; }
.site-footer .widget { padding: 0; border: 0; background: transparent; }
.site-footer .widget-title { color: #fff; }
.site-footer a { color: #c9d0cd; }
.site-footer a:hover { color: var(--hf-accent); }
.footer-widget-column ul { display: grid; gap: 9px; }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.14); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; font-size: 12px; }
.back-to-top { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 3px; background: var(--hf-accent); color: #fff !important; }

@media (max-width: 1180px) {
  .hf-header-inner { grid-template-columns: 250px minmax(0, 1fr) 44px; }
  .header-search-inline { display: none; }
  .primary-menu { gap: 19px; }
  .home-layout, .content-sidebar-layout { grid-template-columns: minmax(0, 1fr) 285px; gap: 28px; }
  .post-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .post-list-item { grid-template-columns: 240px minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .top-navigation { display: none; }
  .hf-topbar-inner { justify-content: flex-end; }
  .hf-header-inner { min-height: 76px; grid-template-columns: 1fr 44px; }
  .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-navigation { position: fixed; inset: 116px 0 0; visibility: hidden; opacity: 0; overflow-y: auto; padding: 20px; background: var(--hf-surface); transform: translateX(100%); transition: var(--hf-transition); }
  .admin-bar .primary-navigation { inset-block-start: 148px; }
  .menu-open .primary-navigation { visibility: visible; opacity: 1; transform: translateX(0); }
  .primary-menu { display: block; }
  .primary-menu a { padding: 15px 8px; border-bottom: 1px solid var(--hf-border); }
  .primary-menu .sub-menu { position: static; visibility: visible; opacity: 1; transform: none; display: block; min-width: 0; margin-left: 15px; padding: 0; border: 0; box-shadow: none; }
  .primary-menu .sub-menu a { padding: 11px 8px; }
  .home-layout, .content-sidebar-layout { grid-template-columns: 1fr; }
  .widget-area { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .popular-widget { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1280px); }
  .topbar { display: none; }
  .primary-navigation { inset-block-start: 76px; }
  .admin-bar .primary-navigation { inset-block-start: 122px; }
  .custom-logo { max-width: 210px; max-height: 56px; }
  .brand-link img { width: 46px; height: 46px; }
  .brand-copy strong { font-size: 24px; }
  .brand-copy small { font-size: 8px; }
  .search-panel { position: fixed; top: 76px; bottom: 0; overflow-y: auto; }
  .hero-swiper, .hero-slide, .hero-empty { min-height: 490px; }
  .hero-card { width: 100%; }
  .hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next { display: none; }
  .home-layout { padding-top: 30px; }
  .post-card-grid { grid-template-columns: 1fr; }
  .post-list-item { grid-template-columns: 1fr; }
  .post-list-media { min-height: 210px; aspect-ratio: 16 / 10; }
  .archive-header { padding: 25px 23px; }
  .author-header { align-items: flex-start; }
  .single-header, .page-header, .entry-content { padding: 26px 22px; }
  .entry-content { font-size: 16px; }
  .entry-content h2 { font-size: 27px; }
  .alignwide, .alignfull { width: calc(100vw - 28px); }
  .post-navigation, .contact-cards { grid-template-columns: 1fr; }
  .widget-area { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
  .footer-bottom-inner { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

