@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-bold.woff2") format("woff2");
}

:root {
  --lane-primary: #094170;
  --lane-primary-dark: #062d50;
  --lane-accent: #e22835;
  --lane-ink: #132238;
  --lane-muted: #627083;
  --lane-border: #dfe6ed;
  --lane-surface: #ffffff;
  --lane-bg: #f4f7fa;
  --lane-radius: 14px;
  --lane-radius-sm: 9px;
  --lane-shadow: 0 12px 35px rgba(9, 38, 65, 0.09);
  --lane-container: 1180px;
  --lane-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.drawer-open,
body.search-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--lane-primary);
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--lane-accent);
}

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  overflow-wrap: break-word;
  word-break: normal;
  -webkit-hyphens: none;
  hyphens: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--lane-ink);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

::selection {
  background: var(--lane-primary);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(226, 40, 53, 0.35);
  outline-offset: 3px;
}

.site-container {
  width: min(calc(100% - 40px), var(--lane-container));
  margin-inline: auto;
}

.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,
.skip-link:focus {
  position: fixed !important;
  z-index: 999999;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  background: #fff;
  color: var(--lane-primary);
  border-radius: 6px;
  box-shadow: var(--lane-shadow);
}

.icon {
  display: block;
  width: 1.25em;
  height: 1.25em;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
}

.brand-header {
  background: #e7eef2;
}

.brand-inner {
  display: flex;
  justify-content: center;
  min-height: 110px;
}

.header-banner-link,
.custom-logo-link {
  display: flex;
  width: 100%;
  justify-content: center;
}

.header-banner,
.custom-logo {
  display: block;
  width: 100%;
  max-width: 1500px;
  max-height: 315px;
  object-fit: contain;
}

.navigation-bar {
  position: sticky;
  top: 0;
  z-index: 110;
  background: linear-gradient(100deg, var(--lane-primary-dark), var(--lane-primary));
  color: #fff;
  box-shadow: 0 5px 16px rgba(3, 31, 55, 0.18);
}

.admin-bar .navigation-bar {
  top: 32px;
}

.navigation-inner {
  display: flex;
  align-items: center;
  min-height: 56px;
  gap: 22px;
}

.menu-toggle,
.search-toggle,
.drawer-close,
.search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.menu-toggle {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle:hover {
  background: #fff;
  color: var(--lane-primary);
}

.desktop-navigation {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

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

.primary-menu {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.primary-menu::-webkit-scrollbar {
  display: none;
}

.primary-menu > li {
  flex: 0 0 auto;
  position: relative;
}

.primary-menu > li > a {
  display: block;
  padding: 17px 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-cat > a {
  color: #fff;
}

.primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  background: var(--lane-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.primary-menu > li > a:hover::after,
.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-cat > a::after {
  transform: scaleX(1);
}

.primary-menu .sub-menu {
  display: none;
}

.navigation-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
}

.follow-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: inherit;
}

.social-svg {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header-socials .social-svg,
.footer-socials .social-svg,
.share-row .social-svg {
  filter: brightness(0) invert(1);
}

.header-socials {
  color: #fff;
}

.header-socials a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-1px);
}

.search-toggle {
  width: 38px;
  height: 38px;
  margin-left: 3px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: #fff;
}

.site-drawer {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: min(390px, calc(100vw - 34px));
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 25px 0 60px rgba(0, 20, 40, 0.25);
  transform: translateX(-105%);
  visibility: hidden;
  transition: transform 240ms ease, visibility 240ms ease;
}

.site-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-backdrop {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(2, 18, 33, 0.66);
  opacity: 0;
  transition: opacity 220ms ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 15px 22px;
  background: var(--lane-primary);
  color: #fff;
}

.drawer-header strong {
  font-size: 17px;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.drawer-navigation {
  flex: 1;
  padding: 14px 22px;
  overflow-y: auto;
}

.drawer-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--lane-border);
  color: var(--lane-ink);
  font-weight: 750;
}

.drawer-menu a:hover {
  padding-left: 5px;
  color: var(--lane-primary);
}

.drawer-menu .sub-menu {
  margin: 0 0 0 15px;
  padding: 0;
  list-style: none;
}

.drawer-menu .sub-menu a {
  min-height: 40px;
  color: var(--lane-muted);
  font-size: 14px;
}

.drawer-footer {
  padding: 20px 22px 24px;
  background: #f1f5f8;
}

.drawer-footer p {
  margin: 0 0 10px;
  color: var(--lane-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-socials {
  color: var(--lane-primary);
}

.drawer-socials a {
  background: #fff;
  box-shadow: 0 3px 10px rgba(9, 38, 65, 0.1);
}

.search-panel {
  position: fixed;
  z-index: 999;
  inset: 0;
  padding-top: clamp(100px, 18vh, 200px);
  background: rgba(4, 30, 51, 0.94);
}

.search-panel-inner {
  position: relative;
  max-width: 760px;
}

.search-close {
  position: absolute;
  top: -65px;
  right: 0;
  width: 44px;
  height: 44px;
  color: #fff;
}

.search-form {
  display: flex;
  width: 100%;
  gap: 8px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid var(--lane-border);
  border-radius: 8px;
  background: #fff;
  outline: 0;
}

.search-field:focus {
  border-color: var(--lane-primary);
  box-shadow: 0 0 0 3px rgba(9, 65, 112, 0.13);
}

.search-submit,
.button-link,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: var(--lane-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.search-submit:hover,
.button-link:hover,
input[type="submit"]:hover {
  background: var(--lane-primary-dark);
  color: #fff;
}

.search-panel .search-field {
  min-height: 64px;
  border: 0;
  border-radius: 12px;
  font-size: 18px;
}

.search-panel .search-submit {
  min-height: 64px;
  background: var(--lane-accent);
}

/* Shared headings and layout */
.site-main {
  min-height: 50vh;
}

.home-main {
  padding: 30px 0 70px;
}

.eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--lane-accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  gap: 18px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
}

.section-line {
  flex: 1;
  height: 1px;
  margin-bottom: 7px;
  background: linear-gradient(90deg, var(--lane-border), transparent);
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 34px;
}

.primary-content {
  min-width: 0;
}

.home-ad {
  margin-bottom: 28px;
  text-align: center;
}

.home-ad .widget,
.footer-banners .widget {
  margin: 0;
}

.home-ad .widget-title,
.footer-banners .widget-title {
  margin: 0 0 7px;
  color: var(--lane-muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-ad img,
.footer-banners img {
  display: block;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--lane-radius-sm);
}

.featured-section {
  margin-bottom: 42px;
}

.section-heading-compact {
  margin-bottom: 18px;
}

.section-heading h1.featured-title {
  margin: 0;
  color: var(--lane-accent);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.9fr;
  grid-template-rows: repeat(2, 220px);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--lane-radius);
  background: var(--lane-primary-dark);
  box-shadow: 0 7px 24px rgba(4, 33, 57, 0.12);
}

.feature-main {
  grid-row: 1 / 3;
}

.feature-media,
.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-media img {
  object-fit: cover;
  transition: transform 450ms ease;
}

.feature-card:hover .feature-media img {
  transform: scale(1.025);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 20% 0 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(2, 16, 28, 0.9));
}

.feature-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
}

.feature-main .feature-overlay {
  padding: 25px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--lane-primary);
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.category-badge:hover {
  background: var(--lane-accent);
  color: #fff;
}

.feature-overlay h2 {
  margin: 9px 0 8px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: clamp(16px, 1.6vw, 21px);
  font-weight: 700;
}

.feature-main .feature-overlay h2 {
  max-width: 780px;
  font-size: clamp(25px, 3.2vw, 40px);
}

.feature-overlay h2 a {
  color: #fff;
}

.feature-overlay .post-meta {
  color: rgba(255, 255, 255, 0.75);
}

.home-content-layout {
  padding-top: 2px;
}

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

.grid-full {
  grid-column: 1 / -1;
}

.post-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--lane-border);
  border-radius: var(--lane-radius);
  background: var(--lane-surface);
  box-shadow: 0 5px 20px rgba(13, 48, 77, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card:hover {
  border-color: #cad6df;
  box-shadow: var(--lane-shadow);
  transform: translateY(-3px);
}

.post-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe8ef;
}

.post-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.post-card:hover .post-card-media img {
  transform: scale(1.025);
}

.post-card-body {
  padding: 17px 18px 16px;
}

.post-card-title {
  margin: 10px 0 8px;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  line-height: 1.28;
}

.post-card-title a {
  color: var(--lane-ink);
}

.post-card-title a:hover {
  color: var(--lane-primary);
}

.post-card-excerpt {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 15px;
  overflow: hidden;
  color: var(--lane-muted);
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  gap: 10px;
  border-top: 1px solid #edf1f4;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--lane-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #abb7c2;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--lane-primary);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.read-more .icon {
  width: 16px;
  transition: transform 160ms ease;
}

.read-more:hover .icon {
  transform: translateX(3px);
}

/* Sidebar and widgets */
.site-sidebar {
  min-width: 0;
}

.sidebar-sticky {
  position: static;
}

.about-card {
  overflow: hidden;
  margin-bottom: 25px;
  border: 1px solid var(--lane-border);
  border-radius: var(--lane-radius);
  background: #fff;
  box-shadow: var(--lane-shadow);
}

.about-heading {
  padding: 18px 20px 15px;
  border-top: 4px solid var(--lane-accent);
}

.about-heading h2 {
  margin: 0;
  color: var(--lane-primary);
  font-size: 22px;
  text-transform: uppercase;
}

.about-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 720 / 876;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  padding: 17px 20px 20px;
}

.about-content p {
  margin: 0 0 16px;
  color: #4d5b6b;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

.about-socials {
  color: var(--lane-primary);
}

.about-socials a {
  width: 32px;
  height: 32px;
  background: #edf3f7;
}

.about-socials a:hover {
  background: var(--lane-primary);
  color: #fff;
}

.about-socials a:hover .social-svg {
  filter: brightness(0) invert(1);
}

.sidebar-widgets .widget,
.site-sidebar > .widget,
.default-latest-widget {
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid var(--lane-border);
  border-radius: 9px;
  background: #fff;
}

.widget-title {
  margin: 0;
  padding: 8px 12px;
  background: var(--lane-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.sidebar-widgets .widget > :not(.widget-title),
.default-latest-widget > :not(.widget-title) {
  margin-right: 12px;
  margin-left: 12px;
}

.sidebar-widgets .widget_media_image,
.sidebar-widgets .widget_block:has(figure:only-child) {
  border: 0;
  background: transparent;
}

.sidebar-widgets .widget_media_image > :not(.widget-title),
.sidebar-widgets .widget_block:has(figure:only-child) > :not(.widget-title) {
  margin-right: 0;
  margin-left: 0;
}

.sidebar-widgets img {
  display: block;
  width: 100%;
  height: auto;
}

.sidebar-widgets figure,
.sidebar-widgets .wp-block-image {
  margin: 0;
}

.sidebar-widgets ul,
.default-latest-widget ul {
  padding: 8px 15px 12px 30px;
}

.sidebar-widgets li,
.default-latest-widget li {
  margin-bottom: 8px;
  color: var(--lane-muted);
  font-size: 13px;
}

/* Breadcrumb and archives */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
  color: #7a8794;
  font-size: 12px;
}

.breadcrumbs a {
  color: var(--lane-primary);
  font-weight: 750;
}

.listing-main,
.singular-main,
.page-main {
  padding: 30px 0 70px;
}

.archive-header {
  margin-bottom: 28px;
  padding: 26px 28px;
  border-left: 5px solid var(--lane-accent);
  border-radius: var(--lane-radius-sm);
  background: #fff;
  box-shadow: 0 5px 20px rgba(13, 48, 77, 0.05);
}

.archive-header h1 {
  margin: 0;
  color: var(--lane-primary);
  font-size: clamp(28px, 4vw, 42px);
}

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

.archive-description p {
  margin: 0;
}

.search-header .search-form {
  max-width: 650px;
  margin-top: 20px;
}

.index-layout {
  padding-top: 5px;
}

.pagination {
  margin-top: 35px;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 7px;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid var(--lane-border);
  border-radius: 7px;
  background: #fff;
  color: var(--lane-primary);
  font-size: 13px;
  font-weight: 750;
}

.pagination .current,
.pagination a:hover {
  border-color: var(--lane-primary);
  background: var(--lane-primary);
  color: #fff;
}

.empty-state {
  padding: 50px 30px;
  border: 1px solid var(--lane-border);
  border-radius: var(--lane-radius);
  background: #fff;
  text-align: center;
}

.empty-state h2 {
  margin-top: 0;
}

.empty-state .search-form {
  max-width: 560px;
  margin: 22px auto 0;
}

/* Single post */
.single-article {
  min-width: 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--lane-border);
  border-radius: var(--lane-radius);
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 48, 77, 0.06);
}

.article-header {
  margin-bottom: 24px;
}

.article-title {
  margin: 14px 0 12px;
  color: #102033;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: clamp(29px, 4.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.article-lead {
  margin: 0 0 16px;
  color: var(--lane-muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.48;
}

.article-meta {
  padding-top: 14px;
  border-top: 1px solid var(--lane-border);
  font-size: 13px;
}

.meta-author a {
  font-weight: 800;
}

.entry-content figcaption,
.wp-caption-text {
  margin-top: 7px;
  color: #758290;
  font-size: 12px;
  font-style: normal;
  text-align: center;
}

.share-row {
  display: flex;
  align-items: center;
  margin: 0 0 26px;
  padding: 12px 14px;
  gap: 8px;
  border-radius: 9px;
  background: #f0f4f7;
}

.share-row > span {
  margin-right: 4px;
  color: var(--lane-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
}

.share-row .social-svg {
  width: 19px;
  height: 19px;
}

.share-row a:hover {
  color: #fff;
  filter: brightness(0.92);
  transform: translateY(-2px);
}

.share-whatsapp { background: #19a95b; }
.share-facebook { background: #1877f2; }
.share-x { background: #111; }
.share-telegram { background: #229ed9; }

.article-content {
  color: #26384b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.75;
}

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

.article-content p {
  margin-top: 0;
  margin-bottom: 1.05em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 1.45em 0 0.55em;
  font-family: var(--lane-font);
}

.article-content h2 { font-size: 30px; }
.article-content h3 { font-size: 24px; }

.article-content a {
  text-decoration: underline;
  text-decoration-color: rgba(9, 65, 112, 0.35);
  text-underline-offset: 3px;
}

.article-content img {
  max-width: 100%;
  height: auto;
}

.article-content figure,
.article-content .wp-block-image {
  max-width: 100%;
  margin: 1.4em auto;
  text-align: center;
}

.article-content .aligncenter,
.article-content img.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.article-content .alignleft {
  float: left;
  margin: 0.4em 1.3em 1em 0;
}

.article-content .alignright {
  float: right;
  margin: 0.4em 0 1em 1.3em;
}

.article-content .alignwide {
  width: min(100%, 940px);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.article-content blockquote {
  margin: 1.5em 0;
  padding: 18px 22px;
  border-left: 4px solid var(--lane-accent);
  background: #f5f7f9;
  color: #31485f;
  font-size: 1.08em;
}

.article-content iframe,
.article-content video {
  width: 100%;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--lane-font);
  font-size: 15px;
}

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

.article-footer {
  display: flex;
  align-items: flex-start;
  margin-top: 28px;
  padding-top: 18px;
  gap: 10px;
  border-top: 1px solid var(--lane-border);
  color: var(--lane-muted);
  font-size: 13px;
  font-weight: 800;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-list a {
  padding: 3px 9px;
  border-radius: 99px;
  background: #eef3f6;
  font-weight: 650;
}

.related-section {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--lane-border);
}

.related-section .section-heading h2 {
  font-size: 25px;
}

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

.related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--lane-border);
  border-radius: 9px;
  background: #fff;
}

.related-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8eef3;
}

.related-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.related-card:hover .related-media img {
  transform: scale(1.025);
}

.related-card > div {
  padding: 14px 15px 17px;
}

.related-card .category-badge {
  min-height: 20px;
  padding: 2px 7px;
  font-size: 8px;
}

.related-card h3 {
  margin: 9px 0 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.33;
}

.related-card h3 a {
  color: var(--lane-ink);
}

/* Pages and comments */
.page-container {
  max-width: 960px;
}

.page-article {
  padding: clamp(24px, 5vw, 55px);
  border: 1px solid var(--lane-border);
  border-radius: var(--lane-radius);
  background: #fff;
}

.page-header h1 {
  margin: 0 0 30px;
  font-size: clamp(32px, 5vw, 50px);
}

.comments-area {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--lane-border);
}

.comments-title,
.comment-reply-title {
  font-size: 24px;
}

.comment-list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin-left: 28px;
  list-style: none;
}

.comment-body {
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 9px;
  background: #f4f7f9;
}

.comment-meta {
  font-size: 13px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 750;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--lane-border);
  border-radius: 7px;
  background: #fff;
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.comment-form-cookies-consent label {
  font-weight: 400;
}

/* 404 */
.error-main {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 60px 0;
  background: radial-gradient(circle at top right, rgba(9, 65, 112, 0.1), transparent 35%);
}

.error-card {
  max-width: 760px;
  padding: clamp(35px, 7vw, 75px);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--lane-shadow);
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: -18px;
  color: rgba(9, 65, 112, 0.1);
  font-size: clamp(90px, 20vw, 180px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.error-card h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 5vw, 45px);
}

.error-card p {
  color: var(--lane-muted);
}

.error-card .search-form {
  margin: 25px auto 16px;
}

/* Footer */
.footer-banners {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 35px 0;
  gap: 18px;
}

.site-footer {
  margin-top: 10px;
  background: var(--lane-primary-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  padding: 40px 0;
  gap: 35px;
}

.footer-brand strong {
  color: #fff;
  font-size: 20px;
}

.footer-brand p {
  margin: 5px 0 0;
  font-size: 13px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 650;
}

.footer-follow > span {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-socials {
  color: #fff;
}

.footer-socials a {
  background: rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background: #fff;
  color: var(--lane-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.footer-bottom-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  gap: 15px;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  position: absolute;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}

.footer-bottom a {
  color: #fff;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 108px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--lane-accent);
  color: #fff;
  box-shadow: 0 7px 18px rgba(7, 35, 59, 0.2);
  opacity: 0;
  transform: translateY(15px);
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

@media (min-width: 901px) {
  .home-main .site-sidebar {
    align-self: stretch;
    min-height: 0;
  }

  .home-main .sidebar-sticky {
    position: sticky;
    top: 76px;
    max-height: none;
    padding-right: 0;
    overflow: visible;
    scrollbar-width: none;
  }

  .admin-bar .home-main .sidebar-sticky {
    top: 108px;
  }

  .home-main .content-with-sidebar.sidebar-is-synced .site-sidebar {
    position: relative;
  }

  .home-main .content-with-sidebar.sidebar-is-synced .sidebar-sticky {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 390px repeat(2, 200px);
  }

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

  .content-with-sidebar {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 25px;
  }

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

  .footer-navigation {
    display: none;
  }
}

@media (max-width: 900px) {
  .follow-label,
  .header-socials a:nth-child(n + 4) {
    display: none;
  }

  .desktop-navigation {
    display: none;
  }

  .navigation-actions {
    margin-left: auto;
  }

  .content-with-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-sidebar {
    margin-top: 20px;
  }

  .sidebar-sticky {
    position: static;
  }

  .about-card {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
  }

  .about-heading {
    grid-column: 1 / -1;
  }

  .about-card > img {
    height: 100%;
    min-height: 250px;
  }

  .about-content {
    align-self: center;
  }

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

  .sidebar-widgets .widget {
    align-self: start;
    margin-bottom: 0;
  }

  .single-layout .site-sidebar {
    margin-top: 0;
  }

  .footer-bottom-inner {
    justify-content: space-between;
  }

  .footer-bottom p:last-child {
    position: static;
    transform: none;
  }
}

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

@media (max-width: 700px) {
  .site-container {
    width: min(calc(100% - 28px), var(--lane-container));
  }

  .brand-inner {
    width: 100%;
    min-height: 0;
  }

  .header-banner,
  .custom-logo {
    max-height: none;
  }

  .navigation-inner {
    min-height: 52px;
  }

  .menu-toggle {
    min-height: 35px;
    padding: 0 10px;
  }

  .menu-toggle span {
    font-size: 10px;
  }

  .header-socials a {
    width: 31px;
    height: 31px;
  }

  .search-toggle {
    width: 34px;
    height: 34px;
  }

  .home-main,
  .listing-main,
  .singular-main,
  .page-main {
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .featured-section {
    margin-bottom: 32px;
  }

  .featured-grid {
    grid-template-rows: 320px repeat(2, 175px);
    gap: 9px;
  }

  .feature-main .feature-overlay {
    padding: 20px;
  }

  .feature-main .feature-overlay h2 {
    font-size: clamp(24px, 7vw, 34px);
  }

  .feature-overlay {
    padding: 12px;
  }

  .feature-secondary .feature-overlay h2 {
    display: -webkit-box;
    margin: 6px 0 0;
    overflow: hidden;
    font-size: 15px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .feature-secondary .post-meta {
    display: none;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 26px;
  }

  .posts-grid {
    gap: 16px;
  }

  .post-card-body {
    padding: 14px;
  }

  .post-card-title {
    font-size: 18px;
  }

  .post-card-excerpt {
    display: none;
  }

  .post-card-footer {
    margin-top: 12px;
  }

  .read-more {
    font-size: 0;
  }

  .read-more .icon {
    width: 19px;
    height: 19px;
  }

  .single-article {
    padding: 20px;
  }

  .article-title {
    font-size: clamp(27px, 7vw, 36px);
  }

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

  .article-content .alignleft,
  .article-content .alignright {
    float: none;
    display: block;
    margin: 1.2em auto;
  }

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

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

  .footer-main {
    grid-template-columns: 1fr;
    padding: 32px 0;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom-inner {
    position: static;
    flex-direction: column;
    justify-content: center;
    min-height: 74px;
    padding: 12px 0;
    text-align: center;
  }

  .footer-bottom p:last-child {
    position: static;
    white-space: normal;
    transform: none;
  }
}

@media (max-width: 560px) {
  .header-socials a:nth-child(n + 3) {
    display: none;
  }

  .navigation-inner {
    gap: 8px;
  }

  .search-panel .search-form,
  .search-header .search-form,
  .empty-state .search-form,
  .error-card .search-form {
    flex-direction: column;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 285px repeat(2, 155px);
  }

  .feature-main {
    grid-column: 1 / -1;
  }

  .feature-secondary .category-badge {
    font-size: 7px;
  }

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

  .post-card {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
  }

  .post-card-media {
    height: 100%;
    min-height: 155px;
    aspect-ratio: auto;
  }

  .post-card-title {
    display: -webkit-box;
    margin: 8px 0;
    overflow: hidden;
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .post-card-footer {
    border-top: 0;
  }

  .post-card .category-badge {
    min-height: 21px;
    padding: 2px 7px;
    font-size: 7px;
  }

  .home-ad-middle {
    display: block;
  }

  .about-card {
    display: block;
  }

  .about-card > img {
    min-height: 0;
  }

  .sidebar-widgets {
    grid-template-columns: 1fr;
  }

  .archive-header {
    padding: 20px;
  }

  .single-article {
    margin-right: -5px;
    margin-left: -5px;
    padding: 17px;
    border-radius: 10px;
  }

  .article-meta {
    gap: 6px;
    font-size: 11px;
  }

  .share-row {
    padding: 10px;
  }

  .share-row > span {
    display: none;
  }

  .article-content h2 { font-size: 25px; }
  .article-content h3 { font-size: 21px; }

  .article-footer {
    flex-direction: column;
  }

  .error-card {
    padding-right: 20px;
    padding-left: 20px;
  }

  .back-to-top {
    right: 14px;
    bottom: 94px;
  }
}

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

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