:root {
  --ink: #0f2a43;
  --paper: #f7f2ea;
  --paper-2: #fffef8;
  --copper: #c0673f;
  --teal: #547a77;
  --slate: #213646;
  --line: rgba(15, 42, 67, 0.16);
  --muted: #576776;
  --shell: min(1120px, calc(100% - 52px));
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 10%, #f0e6d3 0%, transparent 37%),
    radial-gradient(circle at 90% 0%, #f7f2ea 0%, transparent 32%),
    var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }

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

.skip-link {
  position: fixed;
  left: 18px;
  top: -120px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  transition: top 0.18s ease;
}

.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; }

.site-header { background: rgba(247, 242, 234, 0.95); border-bottom: 1px solid var(--line); }

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 10px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo { width: 194px; height: auto; }

.brand-signature {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.context-lockup,
.náhled-chip {
  margin: 0;
  border: 1px solid rgba(192, 103, 63, 0.36);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--copper);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.context-lockup .context-name { display: block; font-size: 0.6rem; }
.context-lockup .context-note { display: block; margin-top: 2px; }
.náhled-chip span,
.náhled-chip strong { display: block; }
.náhled-chip span { font-size: 0.58rem; }
.náhled-chip strong { margin-top: 2px; font-size: 0.64rem; }

.lk-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 208px;
  padding: 10px 13px;
  border: 1px solid rgba(15, 42, 67, 0.22);
  background: rgba(255, 254, 248, 0.72);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(15, 42, 67, 0.08);
}

.lk-brand-link:hover { border-color: rgba(192, 103, 63, 0.56); color: var(--copper); }

.lk-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-2);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lk-brand-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.lk-brand-copy strong {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.08rem;
}

.lk-brand-copy span {
  color: var(--teal);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.lk-brand-link--small {
  min-width: 184px;
  padding: 8px 11px;
}

.lk-brand-link--small .lk-brand-mark {
  width: 34px;
  height: 34px;
  font-size: 0.95rem;
}

.lk-brand-link--small .lk-brand-copy strong { font-size: 0.96rem; }
.lk-brand-link--small .lk-brand-copy span { font-size: 0.58rem; }

.region-line {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.74rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.region-link { color: var(--ink); text-decoration: none; }
.region-link:hover { color: var(--copper); }
.region-náhled { color: var(--ink); font-weight: 700; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 0 14px;
  font-size: 0.88rem;
}

.main-nav a { text-decoration: none; }
.main-nav a:hover { color: var(--copper); }
.main-nav .nav-context { margin-left: auto; color: var(--copper); font-weight: 700; }

.masthead {
  padding: 72px 0 58px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.04;
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.2rem, 7vw, 4.4rem);
}

h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); }

.masthead-dek {
  max-width: 70ch;
  color: var(--muted);
  margin: 16px 0;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn:hover { opacity: 0.92; }

.featured-grid {
  margin: 34px 0 48px;
  display: grid;
  grid-template-columns: 1.4fr .86fr .86fr;
  gap: 14px;
}

.story-card {
  position: relative;
  display: block;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--slate);
  text-decoration: none;
  isolation: isolate;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 38, 64, 0.14) 0%, rgba(12, 38, 64, 0.82) 100%);
  z-index: -1;
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: -2;
}

.story-card:hover img { transform: scale(1.03); }

.story-card--lead { min-height: 550px; grid-row: span 2; }
.story-card--small { min-height: 260px; }

.story-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px;
  display: grid;
  gap: 8px;
  color: var(--paper-2);
}

.story-kicker {
  color: #f5c28c;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.story-title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.35rem, 2.6vw, 2.05rem);
  line-height: 1.06;
  text-wrap: balance;
}

.story-meta {
  color: #f1ebdd;
  font-size: 0.75rem;
}

.rubric-count {
  color: #f1ebdd;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.topic-section { margin-top: 24px; }

.section-line {
  display: grid;
  gap: 6px;
  justify-items: start;
  margin-bottom: 20px;
}

.section-line .eyebrow {
  margin-bottom: 0;
}

.section-line h2 {
  max-width: 680px;
  text-align: left;
  text-wrap: balance;
}

.masthead--directory { padding-bottom: 38px; }

.rubric-directory {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 14px 0;
  background: rgba(247, 242, 234, 0.94);
  border-bottom: 1px solid var(--line);
}

.rubric-directory a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--teal);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rubric-directory a:hover { border-color: var(--copper); color: var(--copper); }

.rubric-detail-grid {
  display: grid;
  gap: 18px;
  margin: 28px 0 54px;
}

.rubric-detail-card {
  scroll-margin-top: 92px;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.rubric-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.rubric-detail-card__body {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(22px, 4vw, 42px);
}

.rubric-detail-card__body p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.article-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.article-list__item {
  display: grid;
  gap: 5px;
  padding: 13px 15px;
  border: 1px solid rgba(15, 42, 67, 0.14);
  background: rgba(247, 242, 234, 0.62);
  color: var(--ink);
  text-decoration: none;
}

.article-list__item:hover { border-color: rgba(192, 103, 63, 0.5); }
.article-list__item--pending { color: var(--muted); }

.article-status {
  color: var(--teal);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}

.reader-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
  gap: 28px;
  margin: 36px 0 48px;
  padding: 34px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.reader-path--choice { background: linear-gradient(170deg, #fffdf7, #f2ece0); }

.reader-path__intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  max-width: 66ch;
}

.reader-path__form { display: grid; gap: 10px; padding: 16px; }
.reader-path__input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }

.reader-path__input-row input {
  border: 1px solid rgba(14, 38, 67, 0.25);
  border-radius: 2px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.reader-path__input-row button {
  border: 1px solid var(--copper);
  background: var(--copper);
  color: var(--paper-2);
  font: inherit;
  font-weight: 700;
  padding: 12px 16px;
  cursor: pointer;
}

.lead-choice-links { display: grid; gap: 12px; align-content: center; }
.lead-choice-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
  color: var(--teal);
}

.lead-choice-link--primary {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--paper-2);
}

.reader-path--newsletter {
  background: linear-gradient(170deg, #fffef8, #f7efe3);
  align-items: start;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(15, 42, 67, 0.14);
  background: rgba(255, 254, 248, 0.82);
}

.newsletter-form__bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-form__field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

.newsletter-form__field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(14, 38, 67, 0.25);
  border-radius: 2px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
}

.newsletter-form__consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.newsletter-form__consent input {
  margin-top: 4px;
}

.newsletter-form__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: #96a3ac;
}

.form-note {
  margin: 3px 0 0;
  color: #7c8a94;
  font-size: 0.76rem;
  min-height: 1.4rem;
}

.magazine-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 8px 0 72px;
  padding: 22px;
  background: var(--ink);
  color: var(--paper);
}

.magazine-note__mark { color: var(--copper); font-size: 1.4rem; }
.magazine-note p { margin: 0; font-family: "Georgia", "Times New Roman", serif; font-size: 1.35rem; }
.magazine-note a { color: #f5c28c; text-underline-offset: 4px; }

.náhled-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(192, 103, 63, 0.45);
  background: #fcf0d8;
}

.náhled-notice strong { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; }
.náhled-notice p { margin: 0; color: #765d2f; }
.náhled-pulse {
  width: 7px; height: 7px; border-radius: 50%; display: inline-block;
  background: #c0673f; margin-right: 8px;
  animation: pulse 1.8s infinite;
}

.fk-lk-ad {
  margin: 42px 0 72px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(192, 103, 63, 0.42);
  background: linear-gradient(180deg, rgba(255, 254, 248, 0.96), rgba(252, 240, 216, 0.62));
}

.fk-lk-ad__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(192, 103, 63, 0.5);
  color: var(--copper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fk-lk-ad__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: end;
  margin-top: 18px;
}

.fk-lk-ad__body h2 {
  max-width: 16ch;
}

.fk-lk-ad__body p:not(.eyebrow),
.fk-lk-ad__actions p {
  color: var(--muted);
}

.fk-lk-ad__actions {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.fk-lk-ad__actions p {
  margin: 0;
  font-size: 0.84rem;
}

@keyframes pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

.rubric-card--upcoming { opacity: 0.94; }
.rubric-card--upcoming::after { background: linear-gradient(180deg, rgba(15, 42, 67, 0.16) 10%, rgba(15, 42, 67, 0.86) 100%); }

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 52px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr;
  gap: 30px;
}

.footer-brand { color: var(--copper); font-family: "Georgia", "Times New Roman", serif; font-size: 1.8rem; }
.footer-grid p { color: #cfd6db; }
.footer-region { color: #b6bec6; font-size: 0.82rem; }
.footer-grid h2 { margin: 0 0 10px; color: var(--copper); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; }
.footer-grid a, .footer-grid span { display: block; margin: 8px 0; color: #c2c9d0; text-decoration: none; }
.footer-grid a:hover { color: #ffffff; }

.footer-bottom {
  border-top: 1px solid rgba(249, 244, 235, 0.2);
  margin-top: 34px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  color: #b0b9c2;
  font-size: 0.76rem;
}

.article-shell { padding: 78px 0 100px; }
.article-page .site-header { margin-bottom: 0; }
.article-head { max-width: 1040px; margin: 0 auto; }
.article-head h1 { max-width: 1040px; margin-bottom: 22px; font-size: clamp(2.3rem, 4.3vw, 4.6rem); }
.article-dek { max-width: 760px; margin-bottom: 22px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.4rem); }

.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 28px; color: var(--teal); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: -8px 0 28px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-share__label {
  margin: 0 4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.article-share__link,
.article-share__copy {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
}

.article-share__link:hover,
.article-share__copy:hover {
  border-color: var(--copper);
  color: var(--copper);
}

.article-share__status {
  flex-basis: 100%;
  min-height: 1.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.article-image { margin: 0; }
.article-image img { display: block; width: 100%; aspect-ratio: 16 / 8; object-fit: cover; border: 1px solid var(--line); }
.article-image figcaption { margin-top: 10px; color: var(--muted); font-size: 0.72rem; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 250px;
  align-items: start;
  justify-content: center;
  gap: 60px;
  margin-top: 74px;
}

.article-body { min-width: 0; font-size: 1.05rem; }
.article-body p, .article-body li { max-width: 70ch; }
.article-lead {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 1.9rem);
  line-height: 1.34;
  color: var(--slate);
  margin-top: 0;
}

.article-body h2 { margin: 52px 0 16px; font-family: "Georgia", "Times New Roman", serif; font-size: clamp(1.65rem, 3.2vw, 2.55rem); line-height: 1.08; }
.article-body ul, .article-body ol { padding-left: 1.25rem; }
.article-body li { margin: 9px 0; }

.article-note { margin: 42px 0; padding: 20px 22px; border-left: 4px solid var(--copper); background: #efe6d7; }
.article-note p { margin: 7px 0 0; color: var(--muted); }

.article-cta { margin: 48px 0 30px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-cta a { color: var(--teal); font-weight: 700; text-underline-offset: 4px; }

.article-sources {
  display: grid;
  gap: 7px;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.86rem;
}

.article-sources strong { color: var(--ink); }

.article-aside {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.aside-label { margin: 0; color: var(--copper); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }
.share-button { appearance: none; border: 1px solid var(--ink); background: transparent; color: var(--ink); padding: 11px 14px; font: inherit; font-weight: 700; cursor: pointer; }
.share-button:hover { background: var(--ink); color: var(--paper); }
.share-status, .aside-small { margin: 0; color: var(--muted); font-size: 0.8rem; }
.advisory-link { color: var(--teal); text-decoration: none; font-weight: 700; text-underline-offset: 4px; }

@media (max-width: 1024px) {
  .main-nav .nav-context { margin-left: 0; width: 100%; }
  .featured-grid,
  .rubric-grid,
  .rubric-detail-card,
  .reader-path {
    grid-template-columns: 1fr 1fr;
  }

  .story-card--lead { grid-column: 1 / -1; min-height: 470px; grid-row: auto; }
  .article-layout { gap: 40px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1120px); }

  .header-top,
  .region-line,
  .main-nav,
  .section-line,
  .header-actions,
  .rubric-detail-card,
  .reader-path,
  .footer-grid,
  .article-layout,
  .featured-grid,
  .rubric-grid,
  .reader-path {
    display: block;
  }

  .brand-logo { width: 168px; }
  .header-actions { margin-top: 14px; }
  .lk-brand-link { width: 100%; min-width: 0; }
  .context-lockup { margin: 0; }
  .náhled-chip { display: inline-block; margin-bottom: 10px; }
  .main-nav {
    display: flex;
    gap: 10px 16px;
    padding-bottom: 16px;
  }
  .main-nav .nav-context { margin-left: 0; }

  .masthead { padding-top: 48px; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.1rem); }
  .hero-cta { flex-wrap: wrap; }

  .featured-grid { margin-top: 24px; }
  .story-card--lead, .story-card, .story-card--small { min-height: 330px; }
  .rubric-directory { position: static; }
  .rubric-detail-card img { min-height: 260px; }

  .reader-path { margin: 24px 0; padding: 18px; }
  .reader-path__form .reader-path__input-row { grid-template-columns: 1fr; }
  .newsletter-form { margin-top: 18px; padding: 14px; }
  .newsletter-form .btn { width: 100%; }

  .magazine-note { grid-template-columns: 1fr; margin-bottom: 56px; }
  .magazine-note__mark { display: none; }

  .náhled-notice { flex-direction: column; align-items: flex-start; }
  .fk-lk-ad { margin: 28px 0 56px; padding: 20px; }
  .fk-lk-ad__body { display: block; }
  .fk-lk-ad__actions { margin-top: 18px; }
  .footer-bottom { display: grid; gap: 6px; }

  .article-share {
    align-items: flex-start;
    gap: 8px;
  }

  .article-share__label,
  .article-share__actions {
    flex-basis: 100%;
  }

  .article-share__link,
  .article-share__copy {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; max-width: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  :focus-visible { transition: none; }
}
.lk-brand-link--logo {
  min-width: 176px;
  min-height: 64px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 254, 248, 0.9);
}
.lk-brand-logo {
  width: min(158px, 30vw);
  max-height: 52px;
  object-fit: contain;
}
@media (max-width: 760px) {
  .lk-brand-link--logo { width: auto; min-width: 160px; }
  .lk-brand-logo { width: min(150px, 48vw); }
}
.article-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 28px 0 72px; }
.article-card-v2 { display: grid; gap: 9px; min-height: 190px; padding: 22px; border: 1px solid var(--line); background: var(--paper-2); color: var(--ink); text-decoration: none; }
.article-card-v2:hover { border-color: rgba(192, 103, 63, .55); transform: translateY(-2px); }
.article-card-v2__kicker { color: var(--copper); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.article-card-v2 strong { font-family: "Georgia", "Times New Roman", serif; font-size: 1.35rem; line-height: 1.1; }
.article-card-v2 span:last-child { color: var(--muted); font-size: .92rem; }
.article-body-copy, .article-content { display: contents; }
.article-body section { margin: 32px 0; }
.article-body figure { margin: 34px 0; }
.article-body figure img { width: 100%; border: 1px solid var(--line); }
.article-body figcaption { color: var(--muted); font-size: .78rem; margin-top: 8px; }
.lk-brand-link--logo { min-width: 176px; min-height: 64px; padding: 8px 18px; border-radius: 999px; background: rgba(255, 254, 248, .9); }
.lk-brand-logo { width: min(158px, 30vw); max-height: 52px; object-fit: contain; }
@media (max-width: 900px) { .article-card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .article-card-grid { grid-template-columns: 1fr; } .lk-brand-link--logo { width: auto; min-width: 160px; } .lk-brand-logo { width: min(150px, 48vw); } }

/* FK_MOBILE_RUBRIKY_READABILITY_V1 */
@media (max-width: 760px) {
  .rubric-directory {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .rubric-directory a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .rubric-detail-grid {
    gap: 18px;
    margin-top: 18px;
  }

  .rubric-detail-card {
    display: block;
    overflow: hidden;
    border-radius: 22px;
    background: var(--paper-2);
  }

  .rubric-detail-card img {
    width: 100%;
    height: clamp(150px, 42vw, 210px);
    min-height: 0;
    max-height: 220px;
    object-fit: cover;
  }

  .rubric-detail-card__body {
    display: block;
    padding: 20px 18px 22px;
    background: linear-gradient(180deg, #fffaf2 0%, #f7efe3 100%);
  }

  .rubric-detail-card__body .eyebrow {
    margin: 0 0 8px;
  }

  .rubric-detail-card__body h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.05;
  }

  .rubric-detail-card__body p:not(.eyebrow) {
    display: block;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .rubric-detail-card .article-list {
    margin-top: 14px;
  }

  .rubric-detail-card .article-list__item {
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.62);
  }

  .rubric-detail-card .article-list__item strong {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .rubric-detail-card .article-status {
    font-size: 0.68rem;
  }
}

@media (max-width: 430px) {
  .rubric-directory {
    grid-template-columns: 1fr;
  }
}


.article-related-links,
.lk-service-bridge {
  margin: 48px 0 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-related-links h2,
.lk-service-bridge h2 {
  margin-top: 8px;
}

.article-related-links ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-related-links li {
  display: grid;
  gap: 4px;
  padding-left: 14px;
  border-left: 3px solid var(--line);
}

.article-related-links a,
.lk-service-bridge a {
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 4px;
}

.article-related-links span,
.lk-service-bridge p {
  color: var(--muted);
}

.lk-service-bridge {
  padding: 22px;
  border: 1px solid rgba(192, 103, 63, 0.28);
  background: rgba(255, 254, 248, 0.74);
}

.lk-service-bridge__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.lk-service-bridge__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-decoration: none;
}

.lk-service-bridge__actions a:hover {
  border-color: var(--copper);
  color: var(--copper);
}
