/* =============================================================
   Radyz Theme — Main Stylesheet
   Mobile-first. No frameworks. No !important.
   ============================================================= */

/* ─────────────────────────────────────────────
   CSS Custom Properties
   ───────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:          #FFFFFF;
  --color-bg-alt:      #F7F7F5;
  --color-text:        #1A1A1A;
  --color-text-muted:  #6B6B6B;
  --color-accent:      #C94A24;
  --color-border:      #E0E0E0;
  --color-footer-bg:   #111111;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width:       1100px;
  --article-width:   680px;
  --spacing-section: 48px;
  --radius-card:     10px;
  --radius-badge:    4px;
}

/* ─────────────────────────────────────────────
   Reset & Base
   ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

/* ─────────────────────────────────────────────
   Layout Utilities
   ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ─────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}

.btn--accent {
  background: var(--color-accent);
  color: #fff;
}

.btn--accent:hover {
  opacity: 0.88;
}

/* ─────────────────────────────────────────────
   Badge / Category
   ───────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-badge);
  margin-bottom: 8px;
  text-decoration: none;
}

.badge:hover {
  opacity: 0.88;
}

/* ─────────────────────────────────────────────
   Site Header
   ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 0.5px solid var(--color-border);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: var(--color-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-header__logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo .dot,
.site-footer__logo .dot {
  color: var(--color-accent);
}

.site-header__logo img {
  height: 32px;
  width: auto;
}

/* Primary nav */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.site-nav__list a {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item a {
  color: var(--color-text);
}

/* Actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-toggle {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.search-toggle:hover {
  color: var(--color-text);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger__line {
  display: block;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Inline search bar */
.search-bar {
  border-top: 0.5px solid var(--color-border);
  background: var(--color-bg);
}

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

.search-bar__form {
  display: flex;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.search-bar__input {
  flex: 1;
  height: 48px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  outline: none;
}

.search-bar__input::placeholder {
  color: var(--color-text-muted);
}

.search-bar__btn {
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--color-text-muted);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  list-style: none;
}

.mobile-menu__list a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 190;
  display: none;
}

.mobile-menu__overlay.is-visible {
  display: block;
}

/* ─────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 45vh;
  max-height: 400px;
  background: var(--color-text) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.25) 100%),
    linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0) 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px 44px;
  max-width: calc(var(--max-width) + 48px);
  width: 100%;
  margin: 0 auto;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  color: #fff;
  max-width: 620px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

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

.hero__title a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
}

.hero__excerpt {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.hero__meta {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
}

/* ─────────────────────────────────────────────
   "Právě teď" Strip
   ───────────────────────────────────────────── */
.strip {
  border-bottom: 0.5px solid var(--color-border);
}

.strip__inner {
  display: flex;
  align-items: center;
  height: 44px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  gap: 0;
  overflow: hidden;
}

.strip__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  padding-right: 16px;
  border-right: 0.5px solid var(--color-border);
  white-space: nowrap;
  flex-shrink: 0;
}

.strip__ticker {
  position: relative;
  flex: 1;
  height: 44px;
  overflow: hidden;
  padding-left: 16px;
}

.strip__item {
  position: absolute;
  top: 0;
  left: 16px;
  right: 0;
  height: 44px;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.strip__item:hover {
  color: var(--color-text);
}

/* ─────────────────────────────────────────────
   Sections
   ───────────────────────────────────────────── */
.section {
  padding: var(--spacing-section) 0;
}

.section--latest {
  background: var(--color-bg);
}

.section--split {
  background: var(--color-bg-alt);
}

.section--newsletter {
  background: var(--color-bg-alt);
}

.section__heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

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

.section__heading--small {
  font-size: 16px;
  margin-bottom: 16px;
}

/* ─────────────────────────────────────────────
   Grid
   ───────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 24px;
}

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

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

/* ─────────────────────────────────────────────
   Split Layout
   ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ─────────────────────────────────────────────
   Article Card — Large
   ───────────────────────────────────────────── */
.card--large {
  position: relative;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-bg);
  transition: border-color 0.2s;
}

.card--large:hover {
  border-color: #AAAAAA;
}

.card--large .card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card--large .card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card--large .card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card--large .card__image--placeholder {
  background: var(--color-bg-alt);
}

.card--large .card__body {
  padding: 14px 16px 16px;
}

.card--large .card__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card--large .card__title a {
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.card--large .card__meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────
   Article Card — Mini
   ───────────────────────────────────────────── */
.card--mini {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--color-border);
}

.card--mini:last-child {
  border-bottom: none;
}

.card--mini .card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.card--mini .card__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
}

.card--mini .card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--mini .card__thumb--placeholder {
  background: var(--color-bg-alt);
}

.card--mini .card__body {
  flex: 1;
  min-width: 0;
}

.card--mini .card__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.card--mini .card__title a {
  color: inherit;
  position: relative;
  z-index: 2;
}

.card--mini .card__date {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────
   Newsletter
   ───────────────────────────────────────────── */
.newsletter {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.newsletter__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.newsletter__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter__input {
  flex: 1;
  min-width: 220px;
  height: 44px;
  padding: 0 16px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter__input:focus {
  border-color: var(--color-accent);
}

/* ─────────────────────────────────────────────
   Site Footer
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-footer__logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 12px;
}

.site-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

.site-footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────────
   Reading Progress Bar
   ───────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--color-accent);
  z-index: 99;
  transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────
   Article Page
   ───────────────────────────────────────────── */
.article-page {
  padding-bottom: 80px;
}

/* Article Header */
.article-header {
  padding-top: 36px;
  padding-bottom: 32px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb__sep {
  color: var(--color-border);
}

.breadcrumb__current {
  color: var(--color-text);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* Badge + readtime row */
.article-header__meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.readtime {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Title */
.article-header__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--color-text);
  max-width: var(--article-width);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Excerpt */
.article-header__excerpt {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-muted);
  font-style: italic;
  max-width: var(--article-width);
  margin-bottom: 20px;
  border-left: 3px solid var(--color-accent);
  padding-left: 16px;
  line-height: 1.6;
}

/* Author meta bar */
.article-header__author {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.author-avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
}

.article-header__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
}

.author-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0.5px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}

.share-btn:hover {
  color: var(--color-text);
  border-color: #AAAAAA;
}

/* Hero image */
.article-hero-image {
  margin-bottom: 40px;
}

.article-hero-image__img {
  width: 100%;
  max-width: var(--article-width);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

/* Article body layout */
.article-body {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Sticky social share — desktop only, hidden on mobile */
.sticky-share {
  display: none;
}

/* Content column */
.article-content {
  max-width: var(--article-width);
  margin: 0 auto;
}

/* Article body text */
.article-content__body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text);
}

.article-content__body p {
  margin-bottom: 1.5em;
}

.article-content__body h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  margin-top: 2em;
  margin-bottom: 0.75em;
  letter-spacing: -0.02em;
}

.article-content__body h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.article-content__body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(201,74,36,0.35);
  transition: text-decoration-color 0.2s;
}

.article-content__body a:hover {
  text-decoration-color: var(--color-accent);
}

.article-content__body ul,
.article-content__body ol {
  list-style: initial;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.article-content__body li {
  margin-bottom: 0.4em;
}

.article-content__body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: 8px 0 8px 20px;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 2em 0;
}

/* Breakout images in article */
.article-content__body figure.breakout {
  max-width: 900px;
  margin: 2em calc(-110px);
}

.article-content__body img {
  border-radius: 6px;
  margin: 1.5em 0;
}

/* TOC */
.toc {
  background: var(--color-bg-alt);
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin-bottom: 2em;
}

.toc__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toc a {
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2em 0;
}

.tag {
  display: inline-block;
  font-size: 13px;
  color: var(--color-text-muted);
  border: 0.5px solid var(--color-border);
  border-radius: 20px;
  padding: 4px 12px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.tag:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Author box */
.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 0.5px solid var(--color-border);
  border-bottom: 0.5px solid var(--color-border);
  padding: 20px 0;
  margin: 2em 0;
}

.author-box__avatar {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.author-box__name {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 4px;
}

.author-box__bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Related articles */
.article-related {
  padding-top: 48px;
}

/* ─────────────────────────────────────────────
   Archive / Search / 404
   ───────────────────────────────────────────── */
.archive-header,
.article-header {
  padding-top: 36px;
  padding-bottom: 32px;
}

.archive-header__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.archive-header__title em {
  font-style: italic;
  color: var(--color-text-muted);
}

.archive-header__desc {
  font-size: 15px;
  color: var(--color-text-muted);
}

.archive-page .container,
.search-page .container {
  padding-bottom: 64px;
}

.no-results {
  padding: 40px 0;
  font-size: 16px;
  color: var(--color-text-muted);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 48px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-badge);
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* 404 */
.error-page {
  padding: 80px 24px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page__content {
  max-width: 480px;
}

.error-page__code {
  display: block;
  font-family: var(--font-heading);
  font-size: 96px;
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.error-page__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

/* Search form */
.search-form {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.search-field {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 0.5px solid var(--color-border);
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  outline: none;
  transition: border-color 0.2s;
}

.search-field:focus {
  border-color: var(--color-accent);
}

.search-submit {
  height: 44px;
  padding: 0 20px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-badge);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.search-submit:hover {
  opacity: 0.88;
}

/* ─────────────────────────────────────────────
   Comments
   ───────────────────────────────────────────── */
.comments-area {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 0.5px solid var(--color-border);
}

.comments-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.comment-list {
  list-style: none;
}

.comment {
  border-bottom: 0.5px solid var(--color-border);
  padding: 20px 0;
}

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

.comment-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.comment-content p {
  font-size: 15px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   Tablet — 768px
   ───────────────────────────────────────────── */
@media (min-width: 768px) {
  .site-nav {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .hero {
    height: 55vh;
    max-height: none;
  }

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

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

  .split {
    grid-template-columns: 2fr 1fr;
  }

  .site-footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .article-hero-image__img {
    max-width: 100%;
  }
}

/* ─────────────────────────────────────────────
   Desktop — 1024px
   ───────────────────────────────────────────── */
@media (min-width: 1024px) {
  .hero {
    height: 70vh;
  }

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

  /* Sticky social share — visible on desktop */
  .sticky-share {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    left: calc(50% - var(--max-width) / 2 - 56px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
  }

  .sticky-share a,
  .sticky-share button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0.5px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-muted);
    text-decoration: none;
    background: var(--color-bg);
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }

  .sticky-share a:hover,
  .sticky-share button:hover {
    color: var(--color-text);
    border-color: #AAAAAA;
  }

  /* Article breakout images */
  .article-content__body figure.breakout {
    max-width: 900px;
    margin-left: -110px;
    margin-right: -110px;
  }
}

/* ─────────────────────────────────────────────
   Scroll to top button
   ───────────────────────────────────────────── */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, color 0.2s, border-color 0.2s;
  z-index: 100;
}

.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  color: var(--color-text);
  border-color: #AAAAAA;
}

/* ─────────────────────────────────────────────
   Wide — 1280px
   ───────────────────────────────────────────── */
@media (min-width: 1280px) {
  :root {
    --spacing-section: 64px;
  }
}

/* ─────────────────────────────────────────────
   Rychl&#233; zpr&#225;vy — Custom Section
   ───────────────────────────────────────────── */

.rz-body {
  background:
    radial-gradient(circle at top left, rgba(201,74,36,0.08), transparent 28%),
    linear-gradient(180deg, #f7f3ed 0%, #f3efe8 100%);
  padding-bottom: 56px;
}

.rz-hero-shell {
  padding: 28px 0 0;
}

.rz-hero {
  background:
    radial-gradient(ellipse 55% 90% at 2% 0%, rgba(242,179,157,0.09) 0%, transparent 55%),
    linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 40%),
    linear-gradient(180deg, #161616 0%, #1c1a18 100%);
  border-top: 1px solid rgba(242,179,157,0.18);
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding-top: 44px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 0;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(20,18,16,0.18);
  position: relative;
}

.rz-hero-left,
.rz-hero-right {
  position: relative;
  z-index: 1;
}

.rz-hero-left {
  padding-right: 36px;
}

.rz-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f2b39d;
  margin-bottom: 20px;
}

.rz-hero-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(242,179,157,0.6);
}

.rz-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 18px;
}

.rz-hero-sub {
  max-width: 540px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
}

.rz-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.rz-hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 11px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, background 0.2s;
}

.rz-hero-pill:hover {
  border-color: rgba(242,179,157,0.35);
  background: rgba(242,179,157,0.07);
}

.rz-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: 36px;
}

.rz-hero-date-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
  margin-bottom: 10px;
}

.rz-hero-date-value {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: normal;
  max-width: 100%;
}

.rz-hero-panel {
  margin-top: auto;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-top-color: rgba(255,255,255,0.14);
}

.rz-hero-panel-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f2b39d;
  margin-bottom: 8px;
}

.rz-hero-panel-text {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

.rz-ticker {
  margin-top: 14px;
}

.rz-ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(90deg, #c94a24 0%, #d65b35 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(201,74,36,0.14);
}

.rz-ticker-lbl {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.18);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.rz-ticker-marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.rz-ticker-marquee-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  width: max-content;
  animation: rzTickerMove 34s linear infinite;
  will-change: transform;
}

.rz-ticker-track:hover .rz-ticker-marquee-inner {
  animation-play-state: paused;
}

.rz-ticker-txt {
  flex: 0 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
}

.rz-ticker-item {
  display: inline-block;
}

.rz-ticker-sep {
  color: rgba(255,255,255,0.45);
  margin: 0 8px;
}

@keyframes rzTickerMove {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.rz-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  padding-top: 28px;
}

.rz-main {
  min-width: 0;
}

.rz-week-block,
.rz-archive-panel {
  margin-bottom: 30px;
}

.rz-week-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.rz-week-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d8377;
}

.rz-week-line {
  flex: 1;
  height: 1px;
  background: rgba(111,95,75,0.16);
}

.rz-week-range {
  font-size: 11px;
  color: #9f9589;
  white-space: nowrap;
}

.rz-week-block.is-previous {
  opacity: 0.84;
}

.rz-week-block.is-archive {
  opacity: 0.68;
}

.rz-day-row {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(162,145,123,0.18);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(73,55,37,0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.rz-day-row:hover {
  transform: translateY(-1px);
  border-color: rgba(201,74,36,0.28);
  box-shadow: 0 18px 34px rgba(73,55,37,0.07);
}

.rz-day-row.open {
  border-color: rgba(201,74,36,0.44);
  box-shadow: 0 22px 40px rgba(201,74,36,0.08);
}

.rz-day-row.today-row {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,249,244,0.94) 100%);
}

.rz-day-header {
  width: 100%;
  display: grid;
  grid-template-columns: 34px minmax(132px, 190px) minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 10px;
  padding: 17px 18px;
  text-align: left;
}

.rz-day-wday {
  font-size: 11px;
  font-weight: 600;
  color: #9e9387;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rz-day-date {
  font-size: 13px;
  font-weight: 600;
  color: #1f1d1a;
}

.rz-day-headline {
  min-width: 0;
  font-size: 13px;
  color: #645c54;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rz-day-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #1c1c1c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

.rz-day-arrow {
  font-size: 16px;
  color: #aa9e92;
  transform-origin: center;
  transition: transform 0.2s ease, color 0.2s ease;
}

.rz-day-row.open .rz-day-arrow {
  transform: rotate(90deg);
  color: var(--color-accent);
}

.rz-today-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(201,74,36,0.12);
  color: var(--color-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rz-day-body {
  display: none;
  border-top: 1px solid rgba(162,145,123,0.14);
  padding: 6px;
}

.rz-day-row.open .rz-day-body {
  display: block;
}

.rz-lead-item {
  padding: 18px 18px 16px;
  border-radius: 14px;
}

.rz-lead-item + .rz-lead-item {
  border-top: 1px solid rgba(162,145,123,0.12);
}

.rz-item-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rz-item-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rz-item-tag.hlavni {
  background: #c94a24;
  color: #fff;
}

.rz-item-tag.cn {
  background: #244f8d;
  color: #fff;
}

.rz-item-tag.infra {
  background: #315f3b;
  color: #fff;
}

.rz-item-tag.modely {
  background: #6941a5;
  color: #fff;
}

.rz-item-tag.regulace {
  background: #9b6b12;
  color: #fff;
}

.rz-item-tag.byznys {
  background: #525252;
  color: #fff;
}

.rz-item-index {
  font-size: 11px;
  color: #ad9f90;
  letter-spacing: 0.08em;
}

.rz-item-hl {
  font-family: var(--font-heading);
  font-size: clamp(21px, 2.8vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #181614;
  margin-bottom: 10px;
}

.rz-item-hl a {
  color: inherit;
}

.rz-item-hl a:hover {
  color: var(--color-accent);
}

.rz-item-body {
  max-width: 70ch;
  font-size: 14px;
  line-height: 1.72;
  color: #655d54;
}

.rz-item-why {
  margin-top: 14px;
  padding: 14px 16px;
  border-left: 3px solid var(--color-accent);
  border-radius: 0 14px 14px 0;
  background: linear-gradient(180deg, #fff9f4 0%, #fff4eb 100%);
}

.rz-item-why-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.rz-item-why-txt {
  font-size: 13px;
  line-height: 1.6;
  color: #6a6158;
}

.rz-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-size: 11px;
  color: #978c80;
}

.rz-item-meta strong {
  font-weight: 600;
  color: #6a625b;
}

.rz-week-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rz-week-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(162,145,123,0.18);
  background: rgba(255,255,255,0.75);
  color: #61584f;
  font-size: 12px;
}

.rz-week-chip--ghost {
  background: rgba(28,28,28,0.06);
  color: #8a8074;
}

.rz-sidebar {
  min-width: 0;
}

.rz-sidebar-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(162,145,123,0.18);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: 0 12px 24px rgba(73,55,37,0.04);
  backdrop-filter: blur(10px);
}

.rz-sidebar-card--highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,248,241,0.9) 100%);
}

.rz-sidebar-title {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.1;
  color: #191715;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(162,145,123,0.14);
}

.rz-stat {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(162,145,123,0.12);
}

.rz-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rz-stat-lbl {
  font-size: 13px;
  color: #6d645b;
}

.rz-stat-val {
  font-size: 13px;
  font-weight: 600;
  color: #1a1816;
  white-space: nowrap;
}

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

.rz-tag-btn {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(162,145,123,0.18);
  background: #fff;
  color: #696056;
  font-size: 11px;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.rz-tag-btn:hover,
.rz-tag-btn.on {
  transform: translateY(-1px);
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
}

.rz-tag-btn.cn-t:hover,
.rz-tag-btn.cn-t.on {
  background: #244f8d;
  border-color: #244f8d;
}

.rz-tag-btn.inf-t:hover,
.rz-tag-btn.inf-t.on {
  background: #315f3b;
  border-color: #315f3b;
}

.rz-tag-btn.mod-t:hover,
.rz-tag-btn.mod-t.on {
  background: #6941a5;
  border-color: #6941a5;
}

.rz-tag-btn.biz-t:hover,
.rz-tag-btn.biz-t.on {
  background: #4d4d4d;
  border-color: #4d4d4d;
}

.rz-tag-btn.reg-t:hover,
.rz-tag-btn.reg-t.on {
  background: #9b6b12;
  border-color: #9b6b12;
}

.rz-nl {
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent 50%),
    linear-gradient(180deg, #171717 0%, #22201d 100%);
  color: #fff;
  box-shadow: 0 20px 36px rgba(17,17,17,0.16);
}

.rz-nl-hl {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 8px;
}

.rz-nl-sub {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin-bottom: 14px;
}

.rz-nl-input {
  width: 100%;
  height: 44px;
  margin-bottom: 10px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 13px;
}

.rz-nl-input::placeholder {
  color: rgba(255,255,255,0.35);
}

.rz-nl-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.2);
}

.rz-nl-btn {
  width: 100%;
  height: 44px;
  border-radius: 12px;
  background: var(--color-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.rz-nl-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.rz-side-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(162,145,123,0.12);
}

.rz-side-note:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.rz-side-note-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f4ede5;
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 700;
}

.rz-side-note-title {
  font-size: 13px;
  font-weight: 600;
  color: #1c1917;
  margin-bottom: 4px;
}

.rz-side-note-text {
  font-size: 12px;
  line-height: 1.6;
  color: #6d645b;
}

.rz-rec-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(162,145,123,0.12);
}

.rz-rec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rz-rec-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f3ece4;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.rz-rec-hl {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #1b1816;
}

.rz-rec-hl a {
  color: inherit;
}

.rz-rec-hl a:hover {
  color: var(--color-accent);
}

.rz-rec-date {
  margin-top: 4px;
  font-size: 11px;
  color: #968b80;
}

.rz-footer-note {
  padding-top: 8px;
  font-size: 12px;
  line-height: 1.6;
  color: #877c70;
}

@media (min-width: 980px) {
  .rz-page {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .rz-sidebar {
    position: sticky;
    top: 88px;
  }
}

@media (max-width: 979px) {
  .rz-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rz-hero-left {
    padding-right: 0;
  }

  .rz-hero-right {
    align-items: flex-start;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-left: 0;
    padding-top: 24px;
    gap: 20px;
  }

  .rz-hero-panel {
    margin-top: 0;
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .rz-body {
    padding-bottom: 40px;
  }

  .rz-hero-shell {
    padding-top: 16px;
  }

  .rz-hero {
    border-radius: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .rz-hero-title {
    max-width: 15ch;
  }

  .rz-ticker-track {
    min-height: 42px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .rz-page {
    gap: 22px;
    padding-top: 22px;
  }

  .rz-day-header {
    grid-template-columns: 28px minmax(0, 1fr) auto 16px;
    row-gap: 8px;
  }

  .rz-day-date {
    grid-column: 2 / 3;
  }

  .rz-day-headline {
    display: none;
  }

  .rz-day-count {
    grid-column: 3 / 4;
  }
}

@media (max-width: 560px) {
  .rz-day-header {
    padding: 15px 14px;
  }

  .rz-day-date {
    font-size: 12px;
  }

  .rz-item-hl {
    font-size: 20px;
  }

  .rz-lead-item {
    padding: 16px 14px 14px;
  }

  .rz-sidebar-card,
  .rz-nl {
    padding: 16px;
  }
}
