﻿@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/inter-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("./fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
      --ink: #202124;
      --muted: #8f9398;
      --line: #e7e8ea;
      --teal: #1aa596;
      --bg: #ffffff;
      --soft: #f6f7f8;
      --shadow: 0 16px 35px rgba(25, 32, 36, 0.12);
      --hero-desktop-height: 470px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      background: #ffffff;
      color: var(--ink);
      font-family: "Inter", sans-serif;
      overflow-x: hidden;
    }

    .page {
      background: transparent;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      width: 100%;
      background: #030303;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      width: min(100% - 40px, 1120px);
      min-height: 72px;
      margin: 0 auto;
    }

    #logo .box,
    .site-title {
      display: flex;
      align-items: center;
    }

    .site-title {
      color: inherit;
      text-decoration: none;
      padding: 6px 0;
    }

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

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

    .main-menu a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      color: #f3f3f3;
      font-family: "Inter", sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      border-bottom: 2px solid transparent;
      transition: color 160ms ease, border-color 160ms ease;
    }

    .main-menu a:hover,
    .main-menu a[aria-current="page"] {
      color: #f6ef2c;
      border-bottom-color: #f6ef2c;
    }

    .site-title:focus-visible,
    .main-menu a:focus-visible,
    .panel-trigger:focus-visible {
      outline: 2px solid #f6ef2c;
      outline-offset: 2px;
    }

    .panel-trigger {
      display: none;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 4px;
      background: transparent;
      color: #fff;
      cursor: pointer;
      transition: border-color 160ms ease, background-color 160ms ease;
    }

    .panel-trigger:hover {
      border-color: rgba(255, 255, 255, 0.5);
      background: rgba(255, 255, 255, 0.06);
    }

    .panel-trigger .burger {
      position: relative;
      width: 18px;
      height: 12px;
      display: block;
    }

    .panel-trigger .burger-line {
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: #fff;
      transform-origin: center;
      transition: transform 220ms ease, opacity 180ms ease;
    }

    .panel-trigger .burger-line:nth-child(1) { top: 0; }
    .panel-trigger .burger-line:nth-child(2) { top: 5px; }
    .panel-trigger .burger-line:nth-child(3) { top: 10px; }

    .site-header.menu-open .panel-trigger .burger-line:nth-child(1) {
      transform: translateY(5px) rotate(45deg);
    }

    .site-header.menu-open .panel-trigger .burger-line:nth-child(2) {
      opacity: 0;
    }

    .site-header.menu-open .panel-trigger .burger-line:nth-child(3) {
      transform: translateY(-5px) rotate(-45deg);
    }

    .screen {
      width: min(100% - 40px, 1120px);
      margin: 0 auto;
      padding: 0 0 48px;
    }

    .hero-news {
      width: 100vw;
      margin: 0 0 34px calc(50% - 50vw);
      background: #0b0b0b;
      color: #f7f7f7;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.05fr 0.74fr 0.9fr;
      gap: clamp(40px, 3vw, 38px);
      width: min(100% - 32px, 1120px);
      margin: 0 auto;
      padding: 34px 0 68px;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: var(--hero-desktop-height);
    }

    .hero-copy h2 {
      margin: 0;
      font-size: 40px;
      line-height: 48px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .hero-copy h2 a,
    .side-story h3 a,
    .story h3 a {
      color: inherit;
      text-decoration: none;
    }

    .hero-copy h2 a:hover,
    .side-story h3 a:hover,
    .story h3 a:hover {
      text-decoration: underline;
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.14em;
    }

    .hero-copy p {
      margin: 26px 0 0;
      color: #c9c9c9;
      font-size: 16px;
      line-height: 1.65;
    }

    .hero-read-more {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 12px;
      color: #f6ef2c;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      text-decoration: none;
    }

    .hero-read-more:hover {
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

    .hero-read-more [data-lucide] {
      width: 14px;
      height: 14px;
      stroke-width: 2.2;
    }

    .side-story .hero-read-more {
      margin-top: 0;
      font-size: 10px;
    }

    .hero-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 13px;
      color: #c8c8c8;
      font-size: 14px;
      line-height: 1.2;
    }

    .hero-meta a {
      color: #5f646b;
      text-decoration: none;
    }

    .hero-meta a:hover {
      text-decoration: underline;
    }

    .hero-meta span + span {
      position: relative;
      padding-left: 13px;
    }

    .hero-meta span + span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 1px;
      height: 12px;
      background: #777;
      transform: translateY(-50%);
    }

    .mini-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 9px;
      color: #bdbdbd;
      font-size: 12px;
      line-height: 1.2;
    }

    .mini-meta span + span {
      position: relative;
      padding-left: 9px;
    }

    .mini-meta span + span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 1px;
      height: 10px;
      background: #777;
      transform: translateY(-50%);
    }

    .hero-image img {
      display: block;
      width: 100%;
      height: var(--hero-desktop-height);
      object-fit: cover;
    }

    .hero-image a,
    .side-story > a,
    .story > a {
      display: block;
    }

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

    .side-story {
      display: grid;
      grid-template-columns: 124px minmax(0, 1fr);
      gap: 16px;
      align-items: start;
    }

    .side-story img {
      width: 124px;
      height: 141px;
      object-fit: cover;
    }

    .side-story h3 {
      display: -webkit-box;
      margin: 11px 0 6px;
      overflow: hidden;
      color: #f6f6f6;
      font-size: 17px;
      line-height: 1.22;
      font-weight: 500;
      letter-spacing: 0;
      line-clamp: 4;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
    }

    .section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
    }

    .section-title {
      margin: 0;
      font-size: 22px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: 0;
    }

    .view-all {
      display: flex;
      align-items: center;
      gap: 8px;
      color: black;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
    }

    .archive-row {
      display: flex;
      justify-content: flex-start;
      padding-top: 16px;
      font-size: 16px;
      border-top: 1px solid rgba(231, 232, 234, 0.95);
    }

    .archive-row .view-all {
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: #4f555b;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.01em;
      box-shadow: none;
    }

    .archive-row .view-all:hover {
      color: #1d1e20;
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

    .archive-row .pagination {
      width: 100%;
    }

    .archive-row .pagination ul.page-numbers {
      list-style-type: none;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      padding: 0;
    }

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

    .archive-row .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
    }

    .archive-row ul.page-numbers > li > .page-numbers,
    .archive-row .nav-links > .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      border: 1px solid rgba(231, 232, 234, 0.95);
      border-radius: 8px;
      background: #ffffff;
      color: #4f555b;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      line-height: 1;
    }

    .archive-row a.page-numbers:hover {
      border-color: #c9ccd0;
      color: #1d1e20;
    }

    .archive-row .page-numbers.current {
      border-color: #1d1e20 !important;
      background: #1d1e20 !important;
      color: #ffffff !important;
    }

    .archive-row .page-numbers.dots {
      border: 0;
      background: transparent;
      min-width: auto;
      padding: 0 4px;
      color: var(--muted);
    }

    .archive-row .page-numbers.prev,
    .archive-row .page-numbers.next {
      padding: 0 14px;
      white-space: nowrap;
    }

    .content-page-hero {
      margin: 0;
      padding: 34px 0 16px;
      border-bottom: 1px solid rgba(231, 232, 234, 0.95);
      background: #ffffff;
      color: var(--ink);
    }

    .content-page-hero h1 {
      margin: 0;
      font-size: 48px;
      line-height: 1.16;
      font-weight: 600;
    }

    .content-kicker {
      margin: 0 0 14px;
      color: #64686d;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .content-perex {
      margin: 18px 0 0;
      max-width: 66ch;
      color: #4f555b;
      font-size: 18px;
      line-height: 1.7;
    }

    .content-page-wrap {
      padding: 26px 0 52px;
    }

    .content-breadcrumbs {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin: 0 0 22px;
      color: #72777d;
      font-size: 13px;
      line-height: 1.4;
    }

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

    .content-breadcrumbs a:hover {
      color: #1d1e20;
      text-decoration: underline;
      text-underline-offset: 0.14em;
      text-decoration-thickness: 0.08em;
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.7fr);
      gap: 34px;
      align-items: start;
    }

    .content-article {
      max-width: 68ch;
    }

    .content-article h2 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.2;
      font-weight: 700;
    }

    .content-article h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.28;
      font-weight: 700;
    }

    .content-article p {
      margin: 0 0 24px;
      color: #2d3136;
      font-size: 17px;
      line-height: 1.75;
    }

    .content-article p.article-perex {
      font-size: 18px;
      line-height: 1.6;
      font-weight: 700;
      color: #222222;
      margin-bottom: 2rem;
    }

    .content-article > .hero-meta {
      margin: 0 0 20px;
      color: #5f646b;
      font-size: 13px;
    }

    .content-article > .hero-meta span + span::before {
      background: #a1a6ad;
    }

    .content-article p.content-perex {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.65;
      color: #0c0c0c;
    }

    .entry-content {
      margin-bottom: 1rem;
    }

    .entry-content > *:last-child {
      margin-bottom: 0;
    }

    .entry-content h4,
    .entry-content h5,
    .entry-content h6 {
      margin: 0 0 10px;
      color: #1d1e20;
      line-height: 1.3;
      font-weight: 700;
    }

    .entry-content h4 {
      font-size: 19px;
    }

    .entry-content h5 {
      font-size: 17px;
    }

    .entry-content h6 {
      font-size: 15px;
    }

    .entry-content a {
      color: #1d1e20;
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.14em;
    }

    .entry-content a:hover {
      color: #000000;
    }

    .entry-content ul,
    .entry-content ol {
      margin: 0 0 24px;
      padding-left: 24px;
      color: #2d3136;
      font-size: 17px;
      line-height: 1.75;
    }

    .entry-content li + li {
      margin-top: 8px;
    }

    .entry-content blockquote {
      margin: 0 0 24px;
      padding: 4px 0 4px 18px;
      border-left: 2px solid #d6d9dd;
    }

    .entry-content blockquote p {
      margin: 0;
      color: #2d3136;
      font-size: 19px;
      line-height: 1.6;
      font-weight: 500;
    }

    .entry-content blockquote cite {
      display: block;
      margin-top: 10px;
      color: #72777d;
      font-size: 14px;
      font-style: normal;
    }

    .entry-content hr {
      margin: 26px 0;
      border: 0;
      border-top: 1px solid rgba(231, 232, 234, 0.95);
    }

    .entry-content figure {
      margin: 0 0 24px;
    }

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

    .entry-content iframe {
      max-width: 100%;
    }

    .entry-content .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 0 0 24px;
    }

    .entry-content .wp-video {
      max-width: 100%;
    }

    .entry-content .gallery-columns-1 { grid-template-columns: 1fr; }
    .entry-content .gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
    .entry-content .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
    .entry-content .gallery-columns-5 { grid-template-columns: repeat(5, 1fr); }
    .entry-content .gallery-columns-6 { grid-template-columns: repeat(6, 1fr); }

    .entry-content .gallery-item {
      margin: 0;
    }

    .entry-content .gallery-icon img {
      width: 100%;
      border-radius: 3px;
    }

    .alignleft {
      float: left;
      margin: 0 20px 16px 0;
    }

    .alignright {
      float: right;
      margin: 0 0 16px 20px;
    }

    .aligncenter {
      margin-left: auto;
      margin-right: auto;
    }

    .wp-caption {
      width: 100% !important;
    }

    .wp-caption-text {
      margin: 10px 0 0;
      color: #72777d;
      font-size: 14px;
      line-height: 1.55;
      text-align: center;
    }

    .wp-block-table {
      overflow-x: auto;
    }

    .wp-block-table table {
      width: 100%;
      border-collapse: collapse;
      font-size: 15px;
      line-height: 1.5;
    }

    .wp-block-table th,
    .wp-block-table td {
      padding: 11px 12px;
      text-align: left;
      border: 1px solid rgba(231, 232, 234, 0.95);
    }

    .wp-block-table th {
      background: #f6f7f8;
      font-weight: 700;
    }

    .wp-block-code {
      margin: 0 0 24px;
      padding: 14px 16px;
      border: 1px solid rgba(231, 232, 234, 0.95);
      background: #f6f7f8;
      overflow-x: auto;
    }

    .wp-block-code code {
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-size: 14px;
      line-height: 1.55;
      color: #1d1e20;
    }

    .wp-block-gallery {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .wp-block-gallery .wp-block-image {
      margin: 0;
    }

    .wp-block-gallery .wp-block-image img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .wp-block-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 24px;
    }

    .wp-block-button {
      display: inline-flex;
    }

    .wp-block-button__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border: 1px solid #1d1e20;
      background: #1d1e20;
      color: #ffffff !important;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      line-height: 1;
    }

    .wp-block-button.is-style-outline .wp-block-button__link {
      background: transparent;
      color: #1d1e20 !important;
    }

    .wp-block-button__link:hover {
      opacity: 0.9;
    }

    .wp-block-embed {
      margin: 0 0 24px;
    }

    .wp-block-embed__wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      background: #f6f7f8;
    }

    .wp-block-embed__wrapper iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .content-form {
      margin: 0;
    }

    .content-form p {
      margin: 0 0 16px;
    }

    .content-form label {
      display: inline-block;
      margin-bottom: 6px;
      color: #2d3136;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
    }

    .content-form input,
    .content-form select,
    .content-form textarea {
      width: 100%;
      border: 1px solid rgba(206, 210, 214, 0.95);
      border-radius: 0;
      padding: 10px 11px;
      background: #ffffff;
      color: #1d1e20;
      font: inherit;
      font-size: 15px;
      line-height: 1.45;
    }

    .content-form textarea {
      resize: vertical;
    }

    .content-form input:focus,
    .content-form select:focus,
    .content-form textarea:focus {
      outline: 2px solid #1d1e20;
      outline-offset: 0;
      border-color: #1d1e20;
    }

    .content-form button {
      min-height: 42px;
      padding: 0 18px;
      border: 1px solid #1d1e20;
      border-radius: 0;
      background: #1d1e20;
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .content-form button:hover {
      opacity: 0.9;
    }

    .content-page-hero-dark {
      padding: 48px 0 34px;
      border-bottom: 0;
      background: #0b0b0b;
      color: #f7f7f7;
    }

    .content-page-hero-dark .content-kicker {
      color: #f6ef2c;
    }

    .content-page-hero-dark h1 {
      color: #ffffff;
      max-width: 700px;
    }

    .content-page-hero-dark .content-perex {
      color: #cfd5da;
    }

    .error404 .content-page-hero {
      padding: 56px 0 44px;
      border-bottom: 0;
      background: #0b0b0b;
      color: #f7f7f7;
    }

    .error404 .page {
      background: #0b0b0b;
      color: #f3f5f7;
    }

    .error404 .content-page-wrap {
      padding-top: 18px;
      background: #0b0b0b;
    }

    .error404 .content-breadcrumbs {
      color: #959da6;
    }

    .error404 .content-breadcrumbs a:hover {
      color: #ffffff;
    }

    .error404 .content-layout {
      gap: 40px;
    }

    .error404 .content-article,
    .error404 .entry-content,
    .error404 .entry-content p,
    .error404 .entry-content ul,
    .error404 .entry-content ol,
    .error404 .entry-content li,
    .error404 .entry-content h2,
    .error404 .entry-content h3,
    .error404 .entry-content h4 {
      color: #e4e8ec;
    }

    .error404 .entry-content h2,
    .error404 .entry-content h3,
    .error404 .entry-content h4 {
      color: #ffffff;
    }

    .error404 .content-aside {
      border-left-color: rgba(255, 255, 255, 0.14);
    }

    .error404 .content-aside h3 {
      color: #ffffff;
    }

    .error404 .content-aside-link {
      color: #d3d8dd;
      border-bottom-color: rgba(255, 255, 255, 0.14);
    }

    .error404 .content-aside-link:hover {
      color: #ffffff;
    }

    .error404 .error-code {
      margin: 0 0 8px;
      color: rgba(246, 239, 44, 0.22);
      font-size: clamp(72px, 12vw, 150px);
      line-height: 0.88;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

    .error404 .content-kicker {
      color: #f6ef2c;
      margin-bottom: 12px;
    }

    .error404 .content-page-hero h1 {
      max-width: 16ch;
      font-size: clamp(42px, 6vw, 62px);
      line-height: 1.03;
      font-weight: 700;
      color: #ffffff;
    }

    .error404 .content-perex {
      max-width: 60ch;
      color: #d3d7dc;
      font-size: 19px;
      line-height: 1.65;
    }

    .error-actions {
      margin-top: 20px;
      margin-bottom: 0;
    }

    .error404 .wp-block-button__link {
      min-height: 44px;
    }

    .error404 .wp-block-button.is-style-outline .wp-block-button__link {
      border-color: rgba(255, 255, 255, 0.62);
      color: #ffffff !important;
    }

    .content-aside {
      display: grid;
      gap: 8px;
      padding: 6px 0 0 24px;
      border-left: 1px solid rgba(231, 232, 234, 0.95);
    }

    .content-aside h3,
    .latest-sidebar h3 {
      margin: 0 0 10px;
      font-size: 17px;
      line-height: 1.2;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: none;
    }

    .content-aside-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 0;
      color: #2d3136;
      text-decoration: none;
      border-bottom: 1px solid rgba(231, 232, 234, 0.95);
      font-size: 15px;
      line-height: 1.3;
      font-weight: 500;
    }

    .content-aside-link:hover {
      color: #000000;
    }

    .source {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 12px;
      color: #64686d;
      font-size: 12px;
      font-weight: 500;
    }

    .logo {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      overflow: hidden;
      background: #d71920;
      color: #fff;
      font-size: 7px;
      font-weight: 800;
      line-height: 1;
      text-align: center;
    }

    .logo.blue { background: #28a6df; }
    .logo.black { background: #151515; }
    .logo.cyan { background: #61c4d7; }

    .meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 13px;
      color: #64686d;
      font-size: 13px;
      font-weight: 400;
      line-height: 1.2;
    }

    .meta span + span {
      position: relative;
      padding-left: 13px;
    }

    .meta span + span::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      width: 1px;
      height: 12px;
      background: #c9ccd0;
      transform: translateY(-50%);
    }

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

    .actions {
      margin-left: auto;
      gap: 14px;
      color: #1d1e20;
    }

    .story-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    .latest-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
      gap: 44px;
      align-items: start;
    }

    .story {
      display: grid;
      grid-template-columns: 140px minmax(0, 1fr);
      column-gap: 20px;
      align-items: start;
      padding: 22px 0 17px;
      border: 0;
      border-bottom: 1px solid rgba(231, 232, 234, 0.95);
      background: transparent;
      box-shadow: none;
    }

    .story h3 {
      margin: 0 0 12px;
      font-size: 21px;
      line-height: 1.34;
      font-weight: 600;
      letter-spacing: 0;
    }

    .story .source {
      margin-bottom: 12px;
      color: #4f555b;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .story img {
      width: 140px;
      height: 100px;
      object-fit: cover;
      border-radius: 0;
    }

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

    .story > a {
      order: -1;
    }

    .latest-sidebar {
      display: grid;
      gap: 8px;
      padding: 6px 0 8px 24px;
      border: 0;
      border-left: 1px solid rgba(231, 232, 234, 0.95);
      background: transparent;
      box-shadow: none;
    }

    .latest-sidebar.latest-sidebar-home {
      border-left: 0;
      padding-left: 0;
    }

    .latest-sidebar h3 {
      margin: 0 0 10px;
    }

    .sidebar-list {
      display: grid;
      gap: 0;
    }

    .sidebar-item {
      display: grid;
      gap: 8px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(231, 232, 234, 0.95);
    }

    .sidebar-item:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .sidebar-item a {
      color: inherit;
      text-decoration: none;
      font-size: 16px;
      line-height: 1.45;
      font-weight: 600;
    }

    .sidebar-item a:hover {
      text-decoration: underline;
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.14em;
    }

    .sidebar-item a picture {
      display: flex;
    }

    .sidebar-meta {
      color: #6f757b;
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    @media (min-width: 761px) {
      .section-head {
        margin-bottom: 26px;
      }

      .section-title {
        font-size: 26px;
      }

      .view-all {
        font-size: 15px;
      }

      .meta {
        font-size: 13px;
      }

      .section-head {
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(231, 232, 234, 0.95);
      }

      .story:first-child {
        padding-top: 4px;
      }
    }

    .content-article,
.entry-content {
    min-width: 0;
}

.entry-content .wp-video {
    width: 100% !important;
    max-width: 100%;
}

    .site-footer {
      width: 100%;
      background: #0b0b0b;
    }

    .footer-inner {
      width: min(100% - 40px, 1120px);
      margin: 0 auto;
      padding: 44px 0 28px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(140px, 170px));
      gap: clamp(28px, 4vw, 56px);
      align-items: start;
    }

    .footer-brand-wrap {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }

    .footer-copy {
      display: grid;
      gap: 10px;
      max-width: 100%;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      max-width: 100%;
      padding: 8px 0;
      text-decoration: none;
    }

    .footer-brand svg {
      max-width: 100%;
      width: 186px;
      height: auto;
      display: block;
    }

    .footer-col {
      min-width: 0;
    }

    .footer-copy p {
      margin: 0;
      color: #d4d8dd;
      font-size: 14px;
      line-height: 1.7;
      font-weight: 400;
      overflow-wrap: anywhere;
      word-break: break-word;
      hyphens: auto;
    }

    .footer-copy p:first-child {
      color: #ffffff;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .footer-copy p + p {
      padding-top: 12px;
      border-top: 1px solid #23262b;
      color: #96a0aa;
    }

    .footer-copy p:last-child {
      color: #8a9199;
    }

    .footer-col h3 {
      margin: 0 0 16px;
      color: #f5f6f7;
      font-size: 15px;
      font-weight: 700;
        letter-spacing: -0.01em;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .footer-links a {
      color: #cfd4da;
      text-decoration: none;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 400;
      transition: color 160ms ease;
    }

    .footer-links a:hover {
      color: #ffffff;
      text-decoration: underline;
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.15em;
    }

    .footer-disclaimer {
      width: min(100% - 40px, 840px);
      margin: 0 auto;
      padding: 18px 0 10px;
      color: #8a9199;
      font-size: 12px;
      line-height: 1.65;
      text-align: center;
      overflow-wrap: anywhere;
      word-break: break-word;
      text-wrap: pretty;
    }

    .footer-legal {
      border-top: 1px solid #23262b;
      padding: 0 0 22px;
    }

    .footer-legal-row {
      width: min(100% - 40px, 1120px);
      margin: 0 auto;
      padding-top: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px 24px;
      text-align: center;
    }

    .footer-legal-row a {
      color: #8e949c;
      text-decoration: none;
      font-size: 13px;
      line-height: 1.5;
      transition: color 160ms ease;
    }

    .footer-legal-row a:hover {
      color: #ffffff;
      text-decoration: underline;
      text-decoration-thickness: 0.08em;
      text-underline-offset: 0.15em;
    }

    [data-lucide] {
      width: 17px;
      height: 17px;
      stroke-width: 2.2;
    }

    .view-all [data-lucide] {
      width: 16px;
      height: 16px;
      stroke-width: 2.0;
    }

    .wp-caption-text {
      text-align: left;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 16px 10px 16px;
      color: #ffffff;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
      font-family: system-ui, -apple-system, sans-serif;
      font-size: 0.875rem;
      line-height: 1.4;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .entry-content figure {
      position: relative;
    }

    .article-share {
  margin: 1rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color, #eaeaea);
}

.share-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #757575);
  margin-bottom: 0.75rem;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  background-color: transparent;
  color: var(--text-color, #111111);
  border: 1px solid var(--border-color, #cccccc);
  border-radius: 4px;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.share-btn:hover {
  background-color: var(--text-color, #111111);
  color: #ffffff;
  border-color: var(--text-color, #111111);
}

.bottom-latest-stories .story {
  padding: 12px 0 7px;
}

.bottom-latest-stories .story h3 {
  font-size: 18px;
}

.kb-follow,
.kb-follow * {
	box-sizing: border-box;
}

.kb-follow {
	--kb-yellow: #eef000;
	--kb-black: #111;
	--kb-border: #e3e3e3;

	font-family: inherit;
}

.kb-follow__eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 9px;
	color: var(--kb-black);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.kb-follow__title {
	margin: 0;
	color: var(--kb-black);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
}

.content-article h2#kb-follow-article-title {
  font-size: 18px;
  font-weight: 600;
}

.content-article p.kb-follow__text {
      font-size: 14px;
    line-height: 20px;
      margin-bottom: 0;
}

.kb-follow__text {
	margin: 7px 0 0;
	color: #666;
	font-size: 14px;
	line-height: 1.55;
}


/* Pod článkem */

.kb-follow--article {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin: 30px 0 42px;
	padding: 24px;
	background: #f6f6f6;
	border: 1px solid var(--kb-border);
}

.kb-follow--article .kb-follow__content {
	max-width: 390px;
}

.kb-follow__buttons {
	display: flex;
	flex-shrink: 0;
	flex-wrap: wrap;
	gap: 8px;
}

.kb-follow__button {
	display: inline-flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 9px 14px;
	background: var(--kb-black);
	border: 1px solid var(--kb-black);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		color 160ms ease;
}

.kb-follow__button:hover {
	opacity: 0.9;
}


/* Sidebar */

.kb-follow--sidebar {
	margin-top: 32px;
	padding: 24px;
	background: #0b0b0b;
	border-top: 3px solid var(--kb-yellow);
	color: #fff;
}

.kb-follow--sidebar .kb-follow__eyebrow {
	color: var(--kb-yellow);
}

.kb-follow--sidebar .kb-follow__eyebrow::before {
	display: none;
}

.kb-follow--sidebar .kb-follow__title {
	color: #fff;
}

.kb-follow--sidebar .kb-follow__text {
	color: #aaa;
}

.kb-follow__links {
	margin-top: 20px;
	border-top: 1px solid #2b2b2b;
}

.kb-follow__links a {
	display: flex;
	min-height: 47px;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid #2b2b2b;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color 160ms ease;
}

.kb-follow__links a b {
	display: inline-flex;
	width: 22px;
	justify-content: center;
	margin-right: 7px;
	font-size: 16px;
}

.kb-follow__arrow {
	color: #777;
	transition:
		color 160ms ease,
		transform 160ms ease;
}

.kb-follow__links a:hover {
	color: var(--kb-yellow);
}

.kb-follow__links a:hover .kb-follow__arrow {
	color: var(--kb-yellow);
	transform: translateX(3px);
}

.location-regions {
  margin: 4px 0 44px;
}

.location-regions__title {
  margin: 0 0 13px;
  color: #74797e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-regions__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line, #e7e8ea);
  border-left: 1px solid var(--line, #e7e8ea);
  list-style: none;
}

.location-regions__item {
  min-width: 0;
  border-right: 1px solid var(--line, #e7e8ea);
  border-bottom: 1px solid var(--line, #e7e8ea);
}

.location-regions__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 15px 17px;
  background: #fff;
  color: var(--ink, #202124);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease;
}

.location-regions__arrow {
  flex: 0 0 auto;
  color: #92969a;
  font-weight: 400;
  transition: color .15s ease, transform .15s ease;
}

.location-regions__item a:hover,
.location-regions__item a:focus-visible {
  background: #f6f7f8;
  color: #111;
}

.location-regions__item a:hover .location-regions__arrow,
.location-regions__item a:focus-visible .location-regions__arrow {
  color: #202124;
  transform: translateX(2px);
}

.locations-index .location-timeline__locations a {
  color: inherit;
  text-decoration: none;
}

.locations-index .location-timeline__locations a:hover {
  color: #202124;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .14em;
}

.locations-index .location-sidebar__intro {
  margin: -6px 0 8px;
  color: #777c81;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .location-regions__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .location-regions {
    margin-bottom: 32px;
  }

  .location-regions__item a {
    min-height: 46px;
    padding: 12px 13px;
    font-size: 14px;
  }
}

.location-archive {
    --timeline-time-width: 92px;
    --timeline-rail-width: 24px;
    --timeline-border: rgba(231, 232, 234, .95);
    --timeline-yellow: #f3dc00;
  }

  .location-layout {
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .65fr);
  }

  .location-layout > :only-child {
    grid-column: 1 / -1;
  }

  .location-timeline {
    position: relative;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .location-timeline::before {
    content: "";
    position: absolute;
    top: 19px;
    bottom: 22px;
    left: calc(var(--timeline-time-width) + (var(--timeline-rail-width) / 2));
    width: 1px;
    background: var(--timeline-border);
  }

  .location-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: var(--timeline-time-width) var(--timeline-rail-width) minmax(0, 1fr);
    align-items: start;
  }

  .location-timeline__when {
    padding: 12px 13px 0 0;
    color: #4f555b;
    text-align: right;
    line-height: 1.25;
  }

  .location-timeline__content p {
    margin: 5px 0 10px;
    font-size: 14px;
  }

  .location-timeline__date,
  .location-timeline__time {
    display: block;
  }

  .location-timeline__date {
    font-size: 12px;
    font-weight: 700;
  }

  .location-timeline__time {
    margin-top: 3px;
    color: var(--muted, #8f9398);
    font-size: 11px;
  }

  .location-timeline__rail {
    position: relative;
    min-height: 100%;
  }

  .location-timeline__dot {
    position: absolute;
    z-index: 1;
    top: 15px;
    left: 50%;
    width: 9px;
    height: 9px;
    border: 2px solid #202124;
    border-radius: 50%;
    background: #fff;
    transform: translateX(-50%);
  }

  .location-timeline__card {
    min-width: 0;
    padding: 10px 0 20px 14px;
    border-bottom: 1px solid var(--timeline-border);
  }

  .location-timeline__item:last-child .location-timeline__card {
    border-bottom: 0;
  }

  .location-timeline__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .location-timeline__body--has-image {
    grid-template-columns: minmax(0, 1fr) 112px;
  }

  .location-timeline__kind {
    margin: 0 0 7px;
    color: #74797e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .location-timeline__source {
    font-weight: 400;
    font-size: 10px;
  }

  .location-timeline__headline {
    margin: 0;
    color: #202124;
    font-size: 18px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.38;
  }

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

  .location-timeline__headline a:hover {
    text-decoration: underline .08em;
    text-underline-offset: .14em;
  }

  .location-timeline__item--event-linked .location-timeline__headline a::after {
    content: " \2192";
    white-space: nowrap;
  }

  .location-timeline__item--event .location-timeline__headline {
    font-size: 16px;
  }

  .location-timeline__image {
    display: block;
    width: 112px;
    height: 76px;
    overflow: hidden;
    background: #f1f2f3;
  }

  .location-timeline__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .location-sidebar__parent {
    display: grid;
    gap: 5px;
    margin-bottom: 8px;
    padding: 14px 0 16px;
    border-bottom: 1px solid var(--timeline-border);
  }

  .location-sidebar__eyebrow,
  .location-sidebar__group-title {
    color: #777c81;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .location-sidebar__parent a,
  .location-sidebar__item a {
    color: #202124;
    text-decoration: none;
  }

  .location-sidebar__parent a {
    font-size: 17px;
    font-weight: 700;
  }

  .location-sidebar__parent a:hover span:not(.location-sidebar__arrow),
  .location-sidebar__item a:hover span:not(.location-sidebar__arrow) {
    text-decoration: underline .08em;
    text-underline-offset: .14em;
  }

  .location-sidebar__group-title {
    margin: 12px 0 2px;
  }

  .location-sidebar__list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .location-sidebar__item {
    border-bottom: 1px solid var(--timeline-border);
  }

  .location-sidebar__item:last-child {
    border-bottom: 0;
  }

  .location-sidebar__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
  }

  .location-sidebar__arrow {
    color: #92969a;
    font-weight: 400;
  }

  @media (max-width: 700px) {
    .content-layout {
      grid-template-columns: minmax(0, 1fr);
    }

    .location-timeline {
      --timeline-rail-width: 20px;
      --timeline-time-width: 0px;
    }

    .location-timeline::before {
      left: 10px;
    }

    .location-timeline__item {
      grid-template-columns: var(--timeline-rail-width) minmax(0, 1fr);
    }

    .location-timeline__when {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      gap: 7px;
      padding: 10px 0 0 12px;
      text-align: left;
    }

    .location-timeline__time {
      margin: 0;
    }

    .location-timeline__rail {
      grid-column: 1;
      grid-row: 1 / span 2;
    }

    .location-timeline__dot {
      top: 13px;
    }

    .location-timeline__card {
      grid-column: 2;
      grid-row: 2;
      padding: 7px 0 18px 12px;
    }

    .location-timeline__body--has-image {
      grid-template-columns: minmax(0, 1fr) 92px;
      gap: 13px;
    }

    .location-timeline__image {
      width: 92px;
      height: 66px;
    }

    .location-timeline__headline {
      font-size: 16px;
    }
  }

  @media (max-width: 390px) {
    .location-timeline__body--has-image {
      grid-template-columns: minmax(0, 1fr) 78px;
    }

    .location-timeline__image {
      width: 78px;
      height: 60px;
    }
  }


/* Klávesnice */

.kb-follow a:focus-visible {
	outline: 2px solid var(--kb-yellow);
	outline-offset: 3px;
}

.kb-follow--article,
	.kb-follow--article * {
		box-sizing: border-box;
	}

	.kb-follow--article {
		--kb-yellow: #eef000;
		--kb-black: #0b0b0b;
		display: block;
		margin: 26px 0 38px;
		padding: 17px 18px 18px;
		background: var(--kb-black);
		border: 0;
		border-top: 3px solid var(--kb-yellow);
		color: #fff;
		font-family: inherit;
	}

	.kb-follow--article .kb-follow__content {
		display: grid;
		grid-template-columns: minmax(0, 1.2fr) minmax(230px, .8fr);
		align-items: end;
		gap: 6px 24px;
		max-width: none;
	}

	.kb-follow--article .kb-follow__eyebrow {
		display: block;
		grid-column: 1 / -1;
		margin: 0;
		color: var(--kb-yellow);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: .08em;
		line-height: 1.2;
		text-transform: uppercase;
	}

	.kb-follow--article .kb-follow__title {
		margin: 0;
		color: #fff;
		font-size: 18px;
		font-weight: 600;
		line-height: 1.3;
	}

	.kb-follow--article .kb-follow__text {
		margin: 0;
		color: #aaa;
		font-size: 14px;
		line-height: 1.45;
	}

	.kb-follow--article .kb-follow__links {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0;
		margin-top: 14px;
		border-top: 1px solid #2b2b2b;
		border-bottom: 1px solid #2b2b2b;
	}

	.kb-follow--article .kb-follow__links a {
		display: flex;
		min-width: 0;
		min-height: 42px;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 0 14px;
		border-right: 1px solid #2b2b2b;
		border-bottom: 0;
		color: #fff;
		font-size: 13px;
		font-weight: 600;
		line-height: 1;
		text-decoration: none;
		transition: color 160ms, background-color 160ms;
	}

	.kb-follow--article .kb-follow__links a:last-child {
		border-right: 0;
	}

	.kb-follow--article .kb-follow__links a:hover {
		background: #151515;
		color: var(--kb-yellow);
	}

	.kb-follow--article .kb-follow__arrow {
		flex: 0 0 auto;
		color: #777;
		transition: color 160ms, transform 160ms;
	}

	.kb-follow--article .kb-follow__links a:hover .kb-follow__arrow {
		color: var(--kb-yellow);
		transform: translateX(3px);
	}

	.kb-follow--article .kb-follow__links a:focus-visible {
		position: relative;
		z-index: 1;
		outline: 2px solid var(--kb-yellow);
		outline-offset: -2px;
	}

	@media (max-width: 680px) {
		.kb-follow--article .kb-follow__content {
			grid-template-columns: 1fr;
			gap: 5px;
		}

		.kb-follow--article .kb-follow__eyebrow {
			grid-column: auto;
		}

		.kb-follow--article .kb-follow__text {
			margin-top: 2px;
		}
	}

	@media (max-width: 480px) {
		.kb-follow--article {
			padding: 15px 14px 16px;
		}

		.kb-follow--article .kb-follow__links {
			margin-top: 12px;
		}

		.kb-follow--article .kb-follow__links a {
			min-height: 39px;
			gap: 6px;
			padding: 0 9px;
			font-size: 12px;
		}
	}


/* Mobil */

@media (max-width: 720px) {
	.kb-follow--article {
		align-items: stretch;
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}

	.kb-follow--article .kb-follow__content {
		max-width: none;
	}

	.kb-follow__buttons {
		width: 100%;
		flex-direction: column;
	}

	.kb-follow__button {
		width: 100%;
	}

	.kb-follow--sidebar {
		padding: 22px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kb-follow a,
	.kb-follow__arrow {
		transition: none;
	}
}

    @media (max-width: 1200px) {
      .footer-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px 24px;
      }

      .footer-brand-wrap {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 860px) {
      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-col:last-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 760px) {
      .entry-content .gallery,
      .entry-content .gallery-columns-4,
      .entry-content .gallery-columns-5,
      .entry-content .gallery-columns-6 {
        grid-template-columns: repeat(2, 1fr);
      }

      .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 20;
        margin-left: 0;
        background: #030303;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      }

      .site-header.menu-open .site-navigation {
        display: block;
      }

      .main-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 10px 20px 14px;
      }

      .main-menu a {
        display: block;
        width: 100%;
        min-height: 44px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .main-menu .menu-item:last-child a {
        border-bottom: 0;
      }

      .panel-trigger {
        display: flex;
      }

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

      .hero-copy {
        min-height: 500px;
      }

      .hero-image img {
        height: 375px;
      }

      .hero-side {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .side-story {
        grid-template-columns: 106px minmax(0, 1fr);
      }

      .side-story img {
        width: 106px;
        height: 98px;
      }
    }

    @media (max-width: 700px) {
      .page-404-template .content-aside {
        border-top-color: rgba(255, 255, 255, 0.14);
      }

      .alignleft,
      .alignright {
        float: none;
        margin: 0 0 20px;
      }

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

      .entry-content ul,
      .entry-content ol {
        padding-left: 20px;
      }

      .content-breadcrumbs {
        margin-bottom: 18px;
        font-size: 12px;
        display: none;
      }

      .content-article > .hero-meta {
        font-size: 12px;
        gap: 6px;
      }

      .hero-meta span + span {
        padding-left: 6px;
      }

      .content-layout {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .content-aside {
        padding: 14px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(231, 232, 234, 0.95);
      }

      .latest-sidebar {
        padding: 16px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(231, 232, 234, 0.95);
      }

      .latest-sidebar.latest-sidebar-home {
        padding-left: 0px;
      }

      .content-article p {
        margin-bottom: 20px;
        font-size: 17px;
        line-height: 1.7;
      }

      .latest-layout {
        gap: 24px;
      }

      .archive-row {
        margin-top: 24px;
      }
    
      .hero-news {
        width: 100vw;
        margin: 0 0 34px calc(50% - 50vw);
      }

      .hero-inner {
        width: min(100% - 32px, 1120px);
        margin: 0 auto;
        padding-bottom: 24px;
      }

      .latest-layout,
      .hero-inner,
      .story-list {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        min-height: auto;
      }

      .hero-copy p {
        margin-bottom: 24px;
      }

      .hero-image img {
        height: 315px;
      }

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

      .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 30px 26px;
      }

      .footer-brand-wrap {
        grid-column: 1 / -1;
      }

      .side-story {
        grid-template-columns: 106px minmax(0, 1fr);
      }

      .side-story img {
        width: 106px;
        height: 92px;
      }
    }

    @media (max-width: 520px) {
      .page-404-template .content-page-hero {
        padding: 34px 0 30px;
      }

      .page-404-template .content-perex {
        font-size: 17px;
        line-height: 1.62;
      }

      .error-actions {
        margin-top: 18px;
      }

      .wp-block-gallery {
        grid-template-columns: 1fr;
      }

      .wp-block-button,
      .wp-block-button__link {
        width: 100%;
      }

      .entry-content blockquote p {
        font-size: 18px;
      }

      .wp-block-code code {
        font-size: 13px;
      }

      .content-page-hero {
        padding: 28px 0 14px;
      }

      .content-page-hero h1 {
        font-size: 30px;
        line-height: 1.18;
      }

      .content-perex {
        font-size: 16px;
        line-height: 1.66;
      }

      .content-article h2 {
        font-size: 23px;
      }

      .content-article h3 {
        font-size: 19px;
      }

      .site-footer {
        margin-top: 14px;
      }

      .screen {
        width: min(100% - 32px, 980px);
      }

      .hero-copy h2 {
        font-size: 34px;
        line-height: 40px;
      }

      .section-title {
        font-size: 20px;
      }

      .view-all {
        gap: 10px;
        font-size: 16px;
      }

      .section-head .view-all {
        display: none;
      }

      .story h3 {
        font-size: 15px;
        line-height: 1.42;
      }

      .story {
        grid-template-columns: 120px minmax(0, 1fr);
        column-gap: 14px;
      }

      .story img {
        width: 120px;
        height: 96px;
      }

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

      .footer-inner {
        width: min(100% - 32px, 1120px);
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 24px;
        padding: 30px 0 18px;
      }

      .footer-brand {
        padding: 10px 6px;
      }

      .footer-brand svg {
        width: 160px;
        height: 23px;
      }

      .footer-legal-row {
        width: min(100% - 32px, 1120px);
        padding-top: 14px;
        gap: 10px 16px;
      }

      .footer-disclaimer {
        width: min(100% - 32px, 840px);
        line-height: 1.6;
      }

      .footer-copy {
        max-width: min(100%, 32ch);
      }

      .footer-legal-row a {
        font-size: 12px;
      }
    }

    @media (max-width: 390px) {
      .story {
        grid-template-columns: 116px 1fr;
        column-gap: 14px;
      }

      .story img {
        width: 116px;
        height: 104px;
      }

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

      .section-title {
        font-size: 16px;
      }

      .source {
        font-size: 14px;
      }

      .view-all {
        gap: 6px;
        font-size: 14px;
      }
    }

    /* ------------------------------------------------------------------
       Diskuze / komentáře
       ------------------------------------------------------------------ */

    .latest-sidebar h3 {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .latest-sidebar h3 svg {
      flex-shrink: 0;
    }

    .sidebar-item.sidebar-back-to-article {
      padding: 0;
      gap: 25px;
    }
    
    .sidebar-item.sidebar-back-to-article a {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .sidebar-back-to-article img {
      width: 92px;
      height: 72px;
      object-fit: cover;
      flex-shrink: 0;
    }

    .sidebar-back-to-article h4 {
      margin: 0;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 600;
    }

    .comments-area {
      margin: 0;
    }

    .comments-title,
    .comment-reply-title {
      margin: 0 0 22px;
      font-size: 22px;
      line-height: 1.28;
      font-weight: 700;
    }

    .entry-content ol.commentlist {
      margin: 50px 0 34px;
      padding: 0;
      list-style: none;
    }

    .entry-content ol.commentlist .children {
      margin: 0;
      padding-left: 0;
      list-style: none;
      border-left: 10px solid rgba(231, 232, 234, 0.95);
    }

    .entry-content ol.commentlist .children li .comment-body {
      padding-left: 20px;
    }

    .commentlist > .comment:first-child > .comment-body {
      border-top: 0;
      padding-top: 0;
    }

    .comment-body {
      padding: 20px 0;
      border-top: 1px solid rgba(231, 232, 234, 0.95);
    }

    .comment-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 4px 12px;
      margin-bottom: 10px;
    }

    .comment-author {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #1d1e20;
      font-size: 15px;
      font-weight: 700;
    }

    .comment-author .avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      object-fit: cover;
    }

    .comment-author .fn {
      font-style: normal;
    }

    .comment-author .says {
      display: none;
    }

    .comment-metadata {
      color: #6f757b;
      font-size: 12px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

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

    .comment-metadata a:hover {
      color: #1d1e20;
      text-decoration: underline;
      text-underline-offset: 0.14em;
    }

    .comment-content p {
      margin: 0 0 12px;
      color: #2d3136;
      font-size: 16px;
      line-height: 1.7;
    }

    .comment-content p:last-child {
      margin-bottom: 0;
    }

    .comment-awaiting-moderation {
      display: block;
      margin-bottom: 10px;
      padding: 8px 12px;
      background: #f6f7f8;
      color: #5f646b;
      font-size: 13px;
      font-style: normal;
    }

    .comment .reply {
      margin-top: 12px;
    }

    .comment-reply-link {
      display: inline-flex;
      align-items: center;
      color: #1d1e20;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      border-bottom: 2px solid transparent;
    }

    .comment-reply-link:hover {
      border-bottom-color: #1d1e20;
    }

    .comment-navigation,
    .comments-pagination {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin: 0 0 26px;
      font-size: 14px;
    }

    .comment-navigation a,
    .comments-pagination a {
      color: #1d1e20;
      font-weight: 600;
      text-decoration: none;
    }

    .comment-navigation a:hover,
    .comments-pagination a:hover {
      text-decoration: underline;
      text-underline-offset: 0.14em;
    }

    .no-comments,
    .comments-closed {
      margin: 0 0 24px;
      padding: 14px 16px;
      background: #f6f7f8;
      color: #5f646b;
      font-size: 15px;
    }

    /* Formulář pro nový komentář */

    .comment-respond {
      margin-top: 6px;
      padding-top: 26px;
      border-top: 1px solid rgba(231, 232, 234, 0.95);
    }

    .commentlist .comment-respond {
      margin: 14px 0 20px;
      padding: 18px;
      border: 1px solid rgba(231, 232, 234, 0.95);
      background: #f6f7f8;
    }

    .comment-reply-title small {
      margin-left: 10px;
      font-size: 13px;
      font-weight: 600;
    }

    .comment-reply-title small a {
      color: #5f646b;
      text-decoration: none;
    }

    .comment-reply-title small a:hover {
      color: #1d1e20;
      text-decoration: underline;
    }

    .comment-form p {
      margin: 0 0 16px;
    }

    .comment-notes,
    .logged-in-as {
      color: #5f646b;
      font-size: 13px;
      line-height: 1.5;
    }

    .logged-in-as a,
    .comment-form .required-field-message {
      color: #5f646b;
    }

    .comment-form label {
      display: inline-block;
      margin-bottom: 6px;
      color: #2d3136;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
      width: 100%;
      border: 1px solid rgba(206, 210, 214, 0.95);
      border-radius: 0;
      padding: 10px 11px;
      background: #ffffff;
      color: #1d1e20;
      font: inherit;
      font-size: 15px;
      line-height: 1.45;
    }

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

    .comment-form input:focus,
    .comment-form textarea:focus {
      outline: 2px solid #1d1e20;
      outline-offset: 0;
      border-color: #1d1e20;
    }

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

    .comment-form-cookies-consent input {
      width: auto;
      margin-top: 3px;
    }

    .comment-form-cookies-consent label {
      margin-bottom: 0;
      font-weight: 400;
      font-size: 13px;
      color: #5f646b;
    }

    .comment-form .form-submit {
      margin-bottom: 0;
    }

    .comment-form .submit {
      min-height: 42px;
      padding: 0 18px;
      border: 1px solid #1d1e20;
      border-radius: 0;
      background: #1d1e20;
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .comment-form .submit:hover {
      opacity: 0.9;
    }

    @media (max-width: 700px) {
      .commentlist .children {
        padding-left: 14px;
      }

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

      .comment-author .avatar {
        width: 30px;
        height: 30px;
      }
    }

    .home .latest-sidebar .location-timeline {
  --timeline-time-width: 0px;
  --timeline-rail-width: 20px;
  --timeline-border: var(--line, #e7e8ea);
}

.home .latest-sidebar .location-timeline::before {
  top: 13px;
  bottom: 18px;
  left: 10px;
}

.home .latest-sidebar .location-timeline__item {
  grid-template-columns: 20px minmax(0, 1fr);
}

.home .latest-sidebar .location-timeline__when {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 10px 0 0 12px;
  text-align: left;
}

.home .latest-sidebar .location-timeline__time {
  margin-top: 0;
}

.home .latest-sidebar .location-timeline__rail {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home .latest-sidebar .location-timeline__dot {
  top: 13px;
}

.home .latest-sidebar .location-timeline__card {
  grid-column: 2;
  grid-row: 2;
  padding: 7px 0 18px 12px;
}

.home .latest-sidebar .location-timeline__body {
  display: block;
}

.home .latest-sidebar .location-timeline__kind > span:first-child:not(.location-timeline__locations),
.home .latest-sidebar .location-timeline__kind > span[aria-hidden="true"] {
  display: none;
}

.home .latest-sidebar .location-timeline__headline {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.home .latest-sidebar .location-timeline__locations a {
      text-decoration: none;
    color: inherit;
    font-size: 10px;
    letter-spacing: 0;
    font-weight: 400;
}

.home .latest-sidebar .location-timeline__locations a:hover {
  text-decoration: underline;
}

.home .latest-sidebar .location-timeline__source {
  display: inline;
  margin-left: .35em;
  white-space: nowrap;
}
.content-article,
.entry-content {
	min-width: 0;
}

.entry-content .wp-video {
	position: relative;
	width: 100% !important;
	max-width: 100%;
	height: auto !important;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.entry-content .wp-video > video,
.entry-content .wp-video > .mejs-container {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
}

.entry-content .wp-video video {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
}

@media (max-width: 700px) {
	.content-layout {
		grid-template-columns: minmax(0, 1fr);
	}
}
.kb-lightbox-link {
	cursor: zoom-in;
}

.kb-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: clamp(20px, 4vw, 52px);
	background: rgb(5 6 7 / 94%);
	overscroll-behavior: contain;
}

.kb-lightbox[hidden] {
	display: none;
}

.kb-lightbox__figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	pointer-events: none;
}

.kb-lightbox__image {
	display: block;
	width: auto;
	height: auto;
	max-width: min(100%, 1800px);
	max-height: calc(100vh - 118px);
	max-height: calc(100dvh - 118px);
	object-fit: contain;
	box-shadow: 0 20px 70px rgb(0 0 0 / 45%);
	pointer-events: auto;
}

.kb-lightbox__caption {
	max-width: min(100%, 900px);
	margin-top: 14px;
	color: #fff;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
}

.kb-lightbox__close {
	position: fixed;
	top: max(14px, env(safe-area-inset-top));
	right: max(14px, env(safe-area-inset-right));
	z-index: 1;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgb(255 255 255 / 35%);
	border-radius: 50%;
	background: rgb(0 0 0 / 35%);
	color: #fff;
	font: 300 32px/1 Arial, sans-serif;
	cursor: pointer;
}

.kb-lightbox__close:hover {
	background: rgb(255 255 255 / 14%);
}

.kb-lightbox__close:focus-visible {
	outline: 2px solid #f6ef2c;
	outline-offset: 3px;
}

@media (max-width: 700px) {
	.kb-lightbox {
		padding: 64px 12px 18px;
	}

	.kb-lightbox__image {
		max-height: calc(100vh - 112px);
		max-height: calc(100dvh - 112px);
	}
}
