/* ============================================================
   Společný styl pro stránky novinek (novinky/*.html)
   Design tokeny sladěné s hlavním webem.
   ============================================================ */
:root{
  --smb-dark:#0B0E14; --smb-red:#D6001C; --smb-blue:#0057B8;
  --smb-white:#FFFFFF; --smb-gray:#8A94A6; --smb-light:#F4F6F9;
  --smb-font-head:'Montserrat','Inter',-apple-system,sans-serif;
  --smb-font-body:'Inter',-apple-system,sans-serif;
  --smb-maxw:860px;
}
*{box-sizing:border-box;}
body{margin:0; background:var(--smb-light); color:var(--smb-dark); font-family:var(--smb-font-body); line-height:1.6;}

/* Horní lišta */
.clh{position:sticky; top:0; z-index:50; background:rgba(11,14,20,.92); backdrop-filter:blur(10px);}
.clh__in{max-width:var(--smb-maxw); margin:0 auto; padding:12px 20px; display:flex; align-items:center; justify-content:space-between; gap:16px;}
.clh__logo img{height:44px; width:auto; display:block;}
.clh__back{color:#fff; text-decoration:none; font-weight:600; font-size:14px; display:inline-flex; align-items:center; gap:8px;}
.clh__back:hover{color:var(--smb-red);}

/* Článek */
.cl{max-width:var(--smb-maxw); margin:0 auto; padding:32px 20px 64px;}
.cl__tag{display:inline-block; background:var(--smb-red); color:#fff; font-weight:700; font-size:11px; letter-spacing:.06em; text-transform:uppercase; padding:5px 11px; border-radius:6px; margin-bottom:14px;}
.cl__date{color:var(--smb-gray); font-size:13px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; margin:0 0 10px;}
.cl__title{font-family:var(--smb-font-head); font-weight:900; text-transform:uppercase; font-size:clamp(28px,6vw,48px); line-height:1.02; letter-spacing:-.02em; margin:0 0 22px;}
.cl__cover{width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:16px; display:block; margin:0 0 28px; background:#e2e7ee;}
.cl__body p{font-size:clamp(16px,2.2vw,18px); margin:0 0 18px; color:#28323f;}
.cl__body h2{font-family:var(--smb-font-head); font-weight:800; text-transform:uppercase; font-size:22px; margin:34px 0 12px; letter-spacing:-.01em;}
.cl__body a{color:var(--smb-blue); font-weight:600;}

/* Galerie */
.cl__gal-title{font-family:var(--smb-font-head); font-weight:800; text-transform:uppercase; font-size:20px; margin:40px 0 16px; letter-spacing:-.01em;}
.cl__gal{display:grid; grid-template-columns:repeat(2,1fr); gap:10px;}
.cl__gal a{display:block; border-radius:12px; overflow:hidden; aspect-ratio:4/3; background:#e2e7ee;}
.cl__gal img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease;}
.cl__gal a:hover img{transform:scale(1.05);}
@media (min-width:640px){ .cl__gal{grid-template-columns:repeat(3,1fr);} }

/* Patka */
.clf{background:var(--smb-dark); color:#fff; text-align:center; padding:28px 20px;}
.clf a{color:#8fc0ff; text-decoration:none; font-weight:600;}
.clf__small{color:var(--smb-gray); font-size:13px; margin-top:8px;}

@media (prefers-reduced-motion:reduce){ .cl__gal img{transition:none;} }
