/* ==========================================================================
   ClubŽena.cz — hlavní stylopis
   Vychází z návrhu (prototyp v _design/) — barvy, typografie a rozvržení
   jsou 1:1, jen přepsané z inline stylů do tříd.
   ========================================================================== */

:root {
  --paper: #FAF6F1;
  --ink: #211B1C;
  --wine: #7C2B45;
  --wine-deep: #5C1E33;
  --gold: #B08843;
  --blush: #EFE0DC;
  --muted: #8B8079;
  --card: #FFFFFF;
  --line: #E9DECF;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --wrap: 1240px;
  --pad: clamp(16px, 4vw, 40px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }   /* pojistka proti vodorovnému posuvníku */
body {
  margin: 0;
  background: #EFE6DB;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
input, textarea, button, select { font-family: inherit; }
::selection { background: var(--wine); color: var(--paper); }

@keyframes czRise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes czFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes czPop  { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.ico { width: 15px; height: 15px; flex: none; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

main { background: var(--paper); display: block; }

/* ------------------------------------------------------------ utility strip */
.utilbar { background: var(--ink); color: var(--paper); font-size: 12.5px; }
.utilbar__in { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.utilbar__date { color: rgba(250, 246, 241, .7); letter-spacing: .3px; }
.utilbar__links { display: flex; align-items: center; gap: 18px; }
.utilbar__links a { display: flex; align-items: center; gap: 7px; opacity: .85; text-decoration: none; }
.utilbar__links a:hover { opacity: 1; }
.utilbar__user { font-weight: 700; }

/* ---------------------------------------------------------------- masthead */
.mast { background: var(--paper); border-bottom: 1px solid var(--line); }
.mast__in { display: flex; align-items: center; gap: 20px; padding-top: 22px; padding-bottom: 20px; }
.mast__burger {
  display: none; width: 42px; height: 42px; flex: none;
  border: 1px solid var(--line); border-radius: 11px; background: var(--card);
  align-items: center; justify-content: center; cursor: pointer; color: var(--ink);
}
.mast__burger .ico { width: 18px; height: 18px; }
.mast__rule { flex: 1; height: 1px; background: var(--line); }
.mast__logo { flex: none; text-align: center; text-decoration: none; display: block; }
.logo { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 5vw, 54px); line-height: .9; letter-spacing: .5px; }
.logo i { color: var(--wine); font-style: italic; }
.logo--gold i { color: var(--gold); }
.logo--sm { font-size: 28px; }
.logo__sub { display: block; font-size: 10.5px; letter-spacing: 3.5px; text-transform: uppercase; color: var(--muted); margin-top: 7px; }
.mast__search {
  display: flex; align-items: center; gap: 9px; flex: none; height: 42px; padding: 0 18px;
  border: 1px solid var(--line); border-radius: 999px; background: var(--card);
  color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer;
}
.mast__search .ico { width: 16px; height: 16px; }

/* --------------------------------------------------------------- rubriky nav */
.catnav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 246, 241, .94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line); box-shadow: 0 6px 18px -14px rgba(33, 27, 28, .5);
}
.catnav__in { display: flex; align-items: center; justify-content: center; gap: 2px; flex-wrap: wrap; }
.catnav__item {
  padding: 14px 13px; border-bottom: 2.5px solid transparent;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: color .15s, border-color .15s;
}
.catnav__item:hover { color: var(--wine); }
.catnav__item.is-active { color: var(--wine); font-weight: 800; border-bottom-color: var(--wine); }

/* -------------------------------------------------------------------- reklama */
.ad { display: flex; justify-content: center; margin: 22px 0; }
.ad ins { width: 100%; }
.ad--placeholder {
  border: 1px dashed var(--line); border-radius: 12px; align-items: center;
  background: repeating-linear-gradient(45deg, rgba(176, 136, 67, .04), rgba(176, 136, 67, .04) 12px, transparent 12px, transparent 24px);
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
}
.ad--leaderboard.ad--placeholder { height: 110px; max-width: 970px; margin: 22px auto 0; }
.ad--infeed.ad--placeholder { height: 150px; }
.ad--sidebar.ad--placeholder { height: 280px; }
.ad--tall.ad--placeholder { height: 600px; }
.ad--inarticle.ad--placeholder { height: 130px; max-width: 66ch; }

/* ------------------------------------------------------------------ hero */
.hero { display: grid; grid-template-columns: 1.7fr 1fr; gap: 26px; padding-top: 28px; padding-bottom: 8px; }
.hero__lead {
  position: relative; min-height: 440px; border-radius: 20px; overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none;
  background-color: var(--wine-deep); background-size: cover; background-position: center;
  animation: czFade .4s ease both;
}
.hero__lead-in { padding: clamp(24px, 3vw, 40px); color: var(--paper); }
.badge {
  display: inline-flex; align-items: center; font-size: 11px; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase; color: var(--paper);
  background: var(--wine); padding: 6px 13px; border-radius: 999px; margin-bottom: 16px;
}
.hero__title { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.7vw, 50px); line-height: 1.02; margin-bottom: 12px; max-width: 20ch; }
.hero__dek { display: block; font-size: 15.5px; line-height: 1.5; color: rgba(250, 246, 241, .82); max-width: 52ch; margin-bottom: 14px; }
.hero__byline { display: block; font-size: 12.5px; color: rgba(250, 246, 241, .7); }
.hero__byline b { color: var(--paper); }
.hero__side { display: grid; grid-template-columns: 1fr; gap: 16px; }
.hero__card {
  position: relative; min-height: 135px; border-radius: 16px; overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none; color: var(--paper);
  background-color: var(--wine-deep); background-size: cover; background-position: center;
}
.hero__card > span { padding: 18px 20px; }
.hero__card-cat { display: block; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.hero__card-title { display: block; font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 1.08; }

/* --------------------------------------------------------- pás rubrik */
.strip-sec { padding-top: 26px; padding-bottom: 26px; }
.sec-head { display: flex; align-items: baseline; gap: 20px; margin-bottom: 14px; }
.sec-head h2 { font-family: var(--serif); font-weight: 600; font-size: 26px; margin: 0; }
.sec-head .rule { height: 1px; flex: 1; background: var(--line); }
.sec-head--main { align-items: center; gap: 14px; margin-bottom: 22px; }
.sec-head--main h2 { font-size: 30px; }
.h-wine { color: var(--wine); }
.sec-head__note { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr); gap: 14px; overflow-x: auto; padding-bottom: 6px; }
.strip__tile {
  position: relative; height: 130px; border-radius: 14px; overflow: hidden;
  display: flex; align-items: flex-end; text-decoration: none;
  background-size: cover; background-position: center;
}
.strip__tile span { padding: 13px 16px; color: #fff; font-family: var(--serif); font-weight: 600; font-size: 21px; text-shadow: 0 1px 8px rgba(0, 0, 0, .4); }

/* ------------------------------------------------------- obsah + sidebar */
.layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; padding-top: 8px; padding-bottom: 40px; }
.layout--article { gap: 44px; padding-top: clamp(24px, 3vw, 40px); padding-bottom: 50px; }
.layout__main { min-width: 0; }
.layout__side { position: sticky; top: 70px; display: flex; flex-direction: column; gap: 26px; }

/* ------------------------------------------------------------ výpis článků */
.feed { display: flex; flex-direction: column; }
.meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.meta__cat { font-size: 10.5px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; color: var(--wine); }
.meta__date { font-size: 12px; color: var(--muted); }
.feed-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none;
}
.feed-row:hover .feed-row__title { color: var(--wine); }
.feed-row__thumb { height: 104px; border-radius: 12px; background-size: cover; background-position: center; background-color: var(--blush); }
.feed-row__title { display: block; font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 1.12; margin-bottom: 6px; transition: color .15s; }
.feed-row__dek { display: block; font-size: 14px; line-height: 1.5; color: var(--muted); }

.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cards--three { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  display: flex; flex-direction: column; text-decoration: none;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 30px -22px rgba(33, 27, 28, .5); }
.card__img { display: block; height: 150px; background-size: cover; background-position: center; background-color: var(--blush); }
.card__body { padding: 18px 20px 22px; }
.card__title { display: block; font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 1.12; margin-bottom: 8px; }
.card__dek { display: block; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.card--sm { border-radius: 14px; }
.card--sm .card__img { height: 96px; }
.card--sm .card__body { padding: 14px 15px; }
.card--sm .card__title { font-size: 17px; line-height: 1.15; margin-bottom: 0; }
.card--sm .meta { margin-bottom: 5px; }
.card--sm .meta__cat { font-size: 9.5px; letter-spacing: 1.2px; }

/* ----------------------------------------------------------------- boxy */
.box { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.box__title { font-family: var(--serif); font-weight: 600; font-size: 22px; margin-bottom: 14px; }
.box__label { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.box--empty { padding: 50px 24px; text-align: center; }
.box--empty p { font-size: 14px; color: var(--muted); margin: 0; }
.fakeinput {
  width: 100%; display: flex; align-items: center; gap: 10px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--paper);
  color: var(--muted); font-size: 14px; cursor: pointer; text-align: left;
}
.poplist { display: flex; flex-direction: column; }
.poplist__item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line); text-decoration: none; }
.poplist__no { font-family: var(--serif); font-weight: 600; font-size: 26px; color: var(--gold); line-height: 1; width: 26px; flex: none; }
.poplist__title { display: block; font-size: 14.5px; line-height: 1.3; font-weight: 600; margin-top: 3px; }
.poplist__item:hover .poplist__title { color: var(--wine); }

.promo { background: var(--ink); color: var(--paper); border-radius: 16px; padding: 22px; }
.promo__title { font-family: var(--serif); font-weight: 600; font-size: 23px; line-height: 1.05; margin-bottom: 6px; }
.promo__text { font-size: 13.5px; line-height: 1.5; color: rgba(250, 246, 241, .65); margin: 0 0 14px; }
.promo__ok { font-size: 14px; font-weight: 700; color: #8FE3AC; margin: 0; }
.promo input[type=email] {
  width: 100%; padding: 12px 14px; border: none; border-radius: 10px; font-size: 14px;
  background: rgba(250, 246, 241, .12); color: var(--paper); outline: none; margin-bottom: 10px;
}
.promo input[type=email]::placeholder { color: rgba(250, 246, 241, .55); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-size: 13px; font-weight: 600; text-decoration: none; }
.pill:hover { border-color: var(--wine); color: var(--wine); }

/* ------------------------------------------------------------ tlačítka */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: none; border-radius: 10px; cursor: pointer;
  background: var(--wine); color: var(--paper); font-size: 14px; font-weight: 700;
  text-decoration: none; transition: background .15s;
}
.btn:hover { background: var(--wine-deep); }
.btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--muted); }
.btn--ghost:hover { background: transparent; border-color: var(--muted); color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 22px; font-size: 15px; border-radius: 12px; }
.btn--pill { border-radius: 999px; padding: 14px 30px; font-size: 13px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }

.pager { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px; padding: 30px 0 6px; }
.pager__info { flex-basis: 100%; text-align: center; font-size: 12px; color: var(--muted); }
.empty { font-size: 15px; color: var(--muted); }

/* ------------------------------------------------------- záhlaví rubriky */
.cathead { color: var(--paper); }
.cathead .wrap { padding-top: clamp(38px, 5vw, 68px); padding-bottom: clamp(38px, 5vw, 68px); }
.cathead h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6vw, 72px); line-height: .95; margin: 0; }
.cathead p { font-size: 16px; line-height: 1.55; color: rgba(250, 246, 241, .82); max-width: 56ch; margin: 16px 0 0; }
.cathead__count { font-size: 12.5px; color: rgba(250, 246, 241, .65); margin-top: 14px; }
.crumbs { font-size: 12px; color: rgba(250, 246, 241, .7); margin-bottom: 14px; }
.crumbs a { text-decoration: none; }
.crumbs--light { color: var(--muted); font-size: 12.5px; margin-bottom: 16px; }
.crumbs__cat { color: var(--wine); font-weight: 700; }

/* --------------------------------------------------------- detail článku */
.art__title { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.03; margin: 0 0 16px; }
.art__dek { font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 23px); line-height: 1.45; color: var(--muted); margin: 0 0 22px; }
.art__meta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 26px;
}
.author { display: flex; align-items: center; gap: 12px; }
.author__avatar { width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--wine); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; }
.author__name { display: block; font-size: 14px; font-weight: 700; }
.author__date { display: block; font-size: 12.5px; color: var(--muted); }
.share { display: flex; align-items: center; gap: 9px; }
.share__label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.share a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.share a:hover { border-color: var(--wine); color: var(--wine); }
.art__cover { margin: 0 0 28px; }
.art__cover figcaption { font-size: 13px; line-height: 1.5; color: var(--muted); margin-top: 9px; }
.art__cover img { width: 100%; border-radius: 18px; display: block; object-fit: cover; max-height: 460px; }

.art__body { max-width: 66ch; }
.art__body p { font-size: 17.5px; line-height: 1.72; margin: 0 0 22px; }
.art__body img { max-width: 100%; height: auto; border-radius: 12px; margin: 10px 0 18px; display: block; }
.art__body h2, .art__body h3, .art__body h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 30px 0 12px; }
.art__body h2 { font-size: 30px; }
.art__body h3 { font-size: 24px; }
.art__body a { color: var(--wine); text-decoration: underline; }
.art__body ul, .art__body ol { font-size: 17px; line-height: 1.7; padding-left: 22px; margin: 0 0 22px; }
.art__body li { margin-bottom: 8px; }
.art__body blockquote {
  border-left: 3px solid var(--gold); margin: 0 0 22px; padding: 4px 0 4px 20px;
  font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--wine-deep);
}
.art__body table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: 15px; }
.art__body td, .art__body th { border: 1px solid var(--line); padding: 8px 10px; }
.related { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.related__title { font-family: var(--serif); font-weight: 600; font-size: 26px; margin-bottom: 16px; }

/* -------------------------------------------------------- textové stránky */
.page { padding-top: clamp(28px, 4vw, 52px); padding-bottom: 60px; }
.page--narrow { max-width: 620px; }
.page--text { max-width: 820px; }
.page__title { font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 4.4vw, 48px); line-height: 1.05; margin: 0 0 18px; }
.page--text h2 { font-family: var(--serif); font-weight: 600; font-size: 26px; margin: 32px 0 10px; }
.page--text p, .page--text li { font-size: 16.5px; line-height: 1.7; }
.page--text .lead { font-size: 18.5px; line-height: 1.6; color: var(--muted); }
.page--text code { background: var(--blush); padding: 1px 6px; border-radius: 5px; font-size: 14px; }
.muted { color: var(--muted); }

.authcard { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 36px; }
.authcard__title { font-family: var(--serif); font-weight: 600; font-size: 32px; line-height: 1; margin: 0; }
.authcard__lead { font-size: 14px; color: var(--muted); margin: 12px 0 22px; }
.authcard label { display: block; font-size: 13px; font-weight: 600; margin: 0 0 7px; }
.authcard input[type=email], .authcard input[type=password] {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-size: 15px; background: var(--paper); outline: none; margin-bottom: 16px;
}
.authcard input:focus { border-color: var(--wine); }
.authcard .check { display: flex; align-items: center; gap: 8px; font-weight: 500; margin-bottom: 18px; }
.authcard .btn { margin-top: 4px; }
.authcard__alt { text-align: center; font-size: 13px; color: var(--muted); margin: 16px 0 0; }
.authcard__alt a { color: var(--wine); font-weight: 700; }
.formerr { background: rgba(124, 43, 69, .1); border: 1px solid rgba(124, 43, 69, .35); color: var(--wine-deep); border-radius: 10px; padding: 11px 14px; font-size: 14px; font-weight: 600; }
.formok { background: rgba(31, 90, 58, .1); border: 1px solid rgba(31, 90, 58, .3); color: #1F5A3A; border-radius: 10px; padding: 11px 14px; font-size: 14px; font-weight: 600; }

/* ------------------------------------------------------------------ patička */
.foot { background: var(--ink); color: var(--paper); padding: clamp(44px, 5vw, 72px) 0 30px; }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 38px; }
.foot__about { font-size: 14px; line-height: 1.6; color: rgba(250, 246, 241, .6); max-width: 34ch; margin: 16px 0 18px; }
.foot__social { display: flex; gap: 12px; }
.foot__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(250, 246, 241, .1); display: flex; align-items: center; justify-content: center; }
.foot__social a:hover { background: rgba(250, 246, 241, .2); }
.foot__head { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.foot__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: rgba(250, 246, 241, .75); }
.foot__links a { text-decoration: none; }
.foot__links a:hover { color: var(--paper); }
.foot__bottom {
  margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(250, 246, 241, .14);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(250, 246, 241, .5);
}

/* --------------------------------------------------------------- cookies */
/* Vystředěno přes margin, ne přes transform — animace czRise transform přepisuje. */
.cookiebar {
  position: fixed; z-index: 70; bottom: 18px; left: 0; right: 0; margin: 0 auto;
  width: min(680px, 92vw); background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: 0 24px 50px -20px rgba(33, 27, 28, .4);
  padding: 18px 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  animation: czRise .4s ease both;
}
.cookiebar__text { flex: 1; min-width: 220px; font-size: 13.5px; line-height: 1.5; }
.cookiebar__text a { color: var(--wine); font-weight: 600; }
.cookiebar__btns { display: flex; gap: 9px; }
.cookiebar .btn { padding: 11px 18px; font-size: 13px; }

/* ------------------------------------------------------ overlay hledání */
.overlay { position: fixed; inset: 0; z-index: 90; background: rgba(33, 27, 28, .55); backdrop-filter: blur(6px); animation: czFade .25s ease both; overflow-y: auto; }
.overlay__panel { max-width: 720px; margin: 9vh auto 40px; background: var(--paper); border-radius: 22px; padding: 28px; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5); animation: czPop .3s ease both; }
.overlay__close { background: none; border: none; font-size: 26px; color: var(--muted); cursor: pointer; line-height: 1; }
.searchbox { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--ink); padding-bottom: 12px; }
.searchbox .ico { width: 22px; height: 22px; }
.searchbox input { flex: 1; min-width: 0; border: none; background: transparent; font-family: var(--serif); font-size: 28px; color: var(--ink); outline: none; }
.searchbox--page { margin: 0 0 26px; }
.searchbox--page input { font-size: 24px; }
.searchres { margin-top: 18px; }
.searchres__hint { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.searchres__count { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.searchres__item { display: block; padding: 13px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.searchres__item .meta { margin-bottom: 3px; }
.searchres__title { display: block; font-family: var(--serif); font-weight: 600; font-size: 20px; }
.searchres__item:hover .searchres__title { color: var(--wine); }

/* --------------------------------------------------------- mobilní menu */
.drawer { position: fixed; inset: 0; z-index: 95; background: rgba(33, 27, 28, .55); animation: czFade .25s ease both; }
.drawer__panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(300px, 82vw); background: var(--paper); padding: 26px; overflow-y: auto; display: flex; flex-direction: column; animation: czRise .3s ease both; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.drawer__item { padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 22px; text-decoration: none; }

/* ----------------------------------------------------------------- responsive */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; gap: 32px; }
  .layout__side { position: static; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cards--three { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .catnav { display: none; }
  .mast__burger { display: flex; }
  .mast__rule, .utilbar__date { display: none; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .hero__side { grid-template-columns: 1fr; }
  .cards, .cards--three { grid-template-columns: 1fr; }
  .art__body { max-width: none; }
  .overlay__panel { margin: 4vh 12px 24px; padding: 20px; }
  .searchbox input { font-size: 22px; }
}
@media (max-width: 560px) {
  /* v hlavičce se na úzkých displejích nevejde logo + podtitulek + hledání */
  .mast__in { gap: 12px; }
  .mast__search { padding: 0 13px; }
  .mast__search span { display: none; }
  .logo__sub { font-size: 9.5px; letter-spacing: 2px; }
}
@media (max-width: 520px) {
  .foot__grid { grid-template-columns: 1fr; }
  .strip { grid-auto-columns: 78%; }
  .feed-row { grid-template-columns: 1fr; }
  .feed-row__thumb { height: 180px; }
  .hero__lead { min-height: 340px; }
  .authcard { padding: 24px; }
}
@media print {
  .utilbar, .catnav, .mast__search, .mast__burger, .layout__side, .foot, .cookiebar, .ad, .related { display: none !important; }
  .layout { grid-template-columns: 1fr; }
}
