/* ============================================================
   Theme: Midnight Ledger
   Visual DNA: Clinic Bootstrap Template adaptation
   Editorial portal — Polish language
   ============================================================ */

/* -----------------------------------------------
   CSS Variables
   ----------------------------------------------- */
:root {
  --bg: #ffffff;
  --bg-alt: #f3f7fc;
  --bg-dark: #0b1a2e;
  --bg-dark-surface: #132742;
  --text: #3b4251;
  --text-light: #6b7486;
  --heading: #0e1f3d;
  --accent: #1a5fd6;
  --accent-light: #e8f0fd;
  --accent-hover: #1248a8;
  --border: #dde4ee;
  --border-light: #eaeff6;
  --surface: #ffffff;
  --contrast: #ffffff;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(14,31,61,0.06);
  --shadow: 0 4px 16px rgba(14,31,61,0.08);
  --shadow-lg: 0 12px 40px rgba(14,31,61,0.12);
  --font-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-nav: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --transition: 0.3s ease;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.25;
  font-weight: 700;
}

ul, ol { list-style: none; }

/* -----------------------------------------------
   Utility
   ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* -----------------------------------------------
   Topbar — dark accent strip
   ----------------------------------------------- */
.topbar {
  background: var(--bg-dark);
  color: var(--contrast);
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.01em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__email a {
  color: var(--contrast);
  opacity: 0.85;
}
.topbar__email a:hover { opacity: 1; }
.topbar__email svg {
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  fill: currentColor;
}
.topbar__tagline {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}

/* -----------------------------------------------
   Header / Branding
   ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  box-shadow: 0 1px 8px rgba(14,31,61,0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  color: var(--heading);
  text-decoration: none;
}
.site-logo:hover { color: var(--heading); }
.site-logo img {
  height: 34px;
  width: auto;
}

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: var(--text);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* -----------------------------------------------
   Section common
   ----------------------------------------------- */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-dark);
  color: var(--contrast);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--contrast); }

/* Section title — distinctive double-line decoration */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  padding-bottom: 18px;
  position: relative;
  display: inline-block;
}
.section-title h2::before {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%; transform: translateX(-50%);
  width: 140px; height: 1px;
  background: var(--border);
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 50px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
}

.section--dark .section-title h2::before { background: rgba(255,255,255,0.15); }
.section--dark .section-title p { color: rgba(255,255,255,0.65); }

/* -----------------------------------------------
   Hero — split layout text + decorative panel
   ----------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--bg) 0%, var(--accent-light) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(26,95,214,0.06);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(26,95,214,0.04);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero__badge svg { width: 14px; height: 14px; fill: currentColor; }
.hero__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero__title .highlight {
  color: var(--accent);
  position: relative;
}
.hero__title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 8px;
  background: rgba(26,95,214,0.12);
  border-radius: 2px;
  z-index: -1;
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero__subtitle p { margin: 0; }
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--contrast);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(26,95,214,0.25);
}
.hero__cta:hover {
  background: var(--accent-hover);
  color: var(--contrast);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,95,214,0.3);
}
.hero__cta svg { width: 16px; height: 16px; fill: currentColor; }

/* Hero visual side — floating card aesthetic */
.hero__visual {
  position: relative;
}
.hero__visual-main {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--contrast);
  position: relative;
  overflow: hidden;
}
.hero__visual-main::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-surface) 100%);
  z-index: 0;
}
.hero__visual-main > * { position: relative; z-index: 1; }
.hero__stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.hero__stat {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__stat-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--contrast);
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Floating badge on hero visual */
.hero__floating-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__floating-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
}
.hero__floating-icon svg { width: 18px; height: 18px; fill: var(--accent); }
.hero__floating-text strong { font-size: 14px; color: var(--heading); display: block; }
.hero__floating-text span { font-size: 12px; color: var(--text-light); }

/* -----------------------------------------------
   Topics — asymmetric 2-col + 3-col grid
   ----------------------------------------------- */
.topics-grid {
  display: grid;
  gap: 24px;
}
.topics-grid--featured {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
}
.topics-grid--secondary {
  grid-template-columns: repeat(3, 1fr);
}

.topic-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--surface);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.topic-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}
.topic-card:hover::before { transform: scaleY(1); }

.topic-card__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.topic-card__name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.topic-card__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.topic-card__desc p { margin: 0; }

/* Featured (larger) cards */
.topic-card--featured { padding: 40px 34px; }
.topic-card--featured .topic-card__name { font-size: 22px; }

/* -----------------------------------------------
   Latest Posts — editorial list with sidebar feel
   ----------------------------------------------- */
.posts-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.posts-main { display: flex; flex-direction: column; gap: 0; }

.post-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.post-item:first-child { padding-top: 0; }
.post-item:last-child { border-bottom: none; }

.post-item__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/2;
}
.post-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-item:hover .post-item__image img { transform: scale(1.04); }

.post-item__date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 500;
}
.post-item__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
}
.post-item__title a {
  color: var(--heading);
  transition: var(--transition);
}
.post-item__title a:hover { color: var(--accent); }
.post-item__excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.post-item__excerpt p { margin: 0; }

.post-item--no-image {
  grid-template-columns: 1fr;
}

/* Sidebar highlight panel */
.posts-sidebar-panel {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--contrast);
  position: sticky;
  top: 90px;
}
.posts-sidebar-panel h3 {
  font-size: 20px;
  color: var(--contrast);
  margin-bottom: 12px;
}
.posts-sidebar-panel p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 24px;
}
.posts-sidebar-panel .sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--contrast);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  transition: var(--transition);
}
.posts-sidebar-panel .sidebar-link:hover {
  background: rgba(255,255,255,0.08);
  color: var(--contrast);
  border-color: rgba(255,255,255,0.35);
}
.posts-sidebar-panel .sidebar-link svg {
  width: 14px; height: 14px; fill: currentColor;
}

/* -----------------------------------------------
   FAQ — editorial Q&A style (not accordion)
   ----------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.faq-item {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border);
}
.faq-item__q {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-item__q::before {
  content: 'Q';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: var(--accent);
  color: var(--contrast);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  margin-top: 1px;
}
.faq-item__a {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  padding-left: 36px;
}
.faq-item__a p { margin: 0 0 8px; }
.faq-item__a p:last-child { margin-bottom: 0; }

/* -----------------------------------------------
   Footer — multi-column with dark bg
   ----------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--contrast);
  margin-bottom: 14px;
}
.footer__brand-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.footer__email a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.footer__email a:hover { color: var(--contrast); }
.footer__email svg {
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 6px;
  fill: currentColor;
}

.footer__heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--contrast);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
}
.footer__nav a:hover { color: var(--contrast); padding-left: 4px; }

.footer__bottom {
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* -----------------------------------------------
   Page template
   ----------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-surface) 100%);
  padding: 80px 0 50px;
  color: var(--contrast);
}
.page-header h1 {
  font-size: 36px;
  color: var(--contrast);
  font-weight: 700;
}
.page-content {
  padding: 56px 0;
  max-width: 780px;
  margin: 0 auto;
}
.page-content h1, .page-content h2, .page-content h3 { margin-top: 32px; margin-bottom: 14px; }
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content a { text-decoration: underline; }

/* -----------------------------------------------
   Blog index
   ----------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.blog-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}
.blog-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__body { padding: 24px; }
.blog-card__date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.blog-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card__title a { color: var(--heading); }
.blog-card__title a:hover { color: var(--accent); }
.blog-card__excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.blog-card__excerpt p { margin: 0; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 0 12px;
  transition: var(--transition);
}
.pagination a:hover,
.pagination a.active {
  background: var(--accent);
  color: var(--contrast);
  border-color: var(--accent);
}

/* -----------------------------------------------
   Post single
   ----------------------------------------------- */
.post-header {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-surface) 100%);
  padding: 80px 0 50px;
  color: var(--contrast);
}
.post-header h1 {
  font-size: 34px;
  color: var(--contrast);
  max-width: 780px;
}
.post-header__date {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}
.post-cover {
  max-width: 780px;
  margin: -30px auto 0;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.post-body {
  padding: 48px 0 64px;
  max-width: 780px;
  margin: 0 auto;
}
.post-body h2, .post-body h3 { margin-top: 32px; margin-bottom: 14px; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.post-body a { text-decoration: underline; }
.post-body .post-excerpt {
  font-size: 18px;
  color: var(--text-light);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.post-body .post-excerpt p { margin: 0; }

/* -----------------------------------------------
   Scroll to top
   ----------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  cursor: pointer;
  border: none;
}
.scroll-top:hover { background: var(--accent-hover); color: var(--contrast); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top svg { width: 18px; height: 18px; fill: currentColor; }

/* -----------------------------------------------
   Mobile responsive
   ----------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 480px; }
  .hero__title { font-size: 34px; }

  .posts-layout { grid-template-columns: 1fr; }
  .posts-sidebar-panel { position: static; }

  .topics-grid--featured { grid-template-columns: 1fr; }
  .topics-grid--secondary { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }

  .topbar__tagline { display: none; }

  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: var(--shadow);
    gap: 2px;
    border-top: 1px solid var(--border-light);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 10px 14px;
    width: 100%;
    border-radius: 0;
  }
  .main-nav a::after { display: none; }

  .hero { padding: 70px 0 60px; }
  .hero__title { font-size: 28px; }
  .hero__floating-card { position: static; margin-top: 20px; display: inline-flex; }

  .post-item { grid-template-columns: 1fr; gap: 14px; }
  .post-item__image { max-width: 280px; }

  .blog-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .topics-grid--secondary { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .page-header h1 { font-size: 28px; }
  .post-header h1 { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero__stat-grid { grid-template-columns: 1fr; gap: 14px; }
  .hero__title { font-size: 24px; }
  .section-title h2 { font-size: 24px; }
}
