/* ===================================
   REGULA – vlastní úpravy Cassiopeia
   Poslední úprava: 2026-06-12
   =================================== */

/* --- Hlavička: bílá, logo vlevo, menu vpravo --- */
.container-header {
  background-image: none !important;
  background-color: #ffffff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
}

.container-header .grid-child {
  width: auto;
  flex: 0 1 auto;
}

.container-header .navbar-brand {
  margin: 0;
}

/* --- Menu: černý text, modrá při najetí --- */
.container-header .mod-menu a,
.container-header .mod-menu .nav-link,
.container-header nav a,
.container-nav .mod-menu a {
  color: #1a1a1a !important;
}

.container-header .mod-menu a:hover,
.container-header .mod-menu a:focus,
.container-header nav a:hover,
.container-header .mod-menu .mod-menu__item.active > a {
  color: #1f5dd3 !important;
}

/* --- Hamburger tlačítko --- */
.navbar-toggler {
  color: #1a1a1a !important;
  border-color: #e5e3de;
}

/* --- Pozadí stránky --- */
body.site {
  background-color: #ffffff;
}

/* --- Uvítání (top-a): bez rámečku --- */
.container-top-a .card {
  border: 0;
  box-shadow: none;
  background-color: transparent;
}

/* --- Karty: podklad a rámeček --- */
.card {
  border-radius: 10px;
  border-color: #e5e3de;
  background-color: #f7f8fa;
}

.card .card-header {
  background-color: transparent;
  border-bottom: 0;
  font-weight: 600;
}

/* --- Dlaždice: celá jako odkaz --- */
.regula-tile {
  display: block;
  color: inherit;
  text-decoration: none;
}

.regula-tile h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.regula-tile-more {
  color: #1f5dd3;
  font-weight: 600;
}

.regula-tile:hover .regula-tile-more,
.regula-tile:focus .regula-tile-more {
  color: #16459c;
  text-decoration: underline;
}

/* --- Novinky a reference: titulek sekce --- */
.container-bottom-b .card-header {
  font-size: 1.4rem;
  font-weight: 600;
}

/* --- Obrázky úvodníku: homepage modul, reference (výpis) i detail článku --- */
.container-bottom-b figure,
.com-content-category-blog figure,
.com-content-article figure {
  float: left;
  width: 180px;
  max-width: 35%;
  margin: 0.25rem 1.25rem 0.5rem 0;
}

.container-bottom-b figure img,
.com-content-category-blog figure img,
.com-content-article figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .container-bottom-b figure,
  .com-content-category-blog figure,
  .com-content-article figure {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}

/* --- Novinky a reference: nadpisy článků (zklidnění + mezery) --- */
.container-bottom-b .card-body :is(h2, h3, h4, h5) {
  font-size: 1.15rem;
  font-weight: 600;
  clear: both;
  margin: 1.75rem 0 0.25rem 0;
}

.container-bottom-b .card-body :is(h2, h3, h4, h5):first-of-type {
  margin-top: 0;
}

.container-bottom-b .card-body :is(h2, h3, h4, h5) a {
  color: #1a1a1a !important;
  text-decoration: none;
}

.container-bottom-b .card-body :is(h2, h3, h4, h5) a:hover,
.container-bottom-b .card-body :is(h2, h3, h4, h5) a:focus {
  color: #16459c !important;
  text-decoration: underline;
}

/* --- Patička: bílé pozadí, linka --- */
.container-footer {
  background-image: none !important;
  background-color: #ffffff !important;
  border-top: 1px solid #e5e3de;
}

.container-footer,
.container-footer p {
  color: #555555;
}

/* --- Patička: obsah --- */
.regula-footer {
  font-size: 0.9rem;
  color: #555555;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}

.regula-footer > div + div::before {
  content: "· ";
}

.regula-footer a {
  color: #1f5dd3 !important;
  text-decoration: none;
}

.regula-footer a:hover,
.regula-footer a:focus {
  color: #16459c !important;
  text-decoration: underline;
}

/* --- Mobil --- */
@media (max-width: 768px) {
  .regula-footer {
    flex-direction: column;
    text-align: center;
    row-gap: 0.25rem;
  }

  .regula-footer > div + div::before {
    content: none;
  }
}

/* --- Články: obrázek obtékaný textem --- */
.clanek-obrazek {
  float: left;
  width: 320px;
  max-width: 45%;
  height: auto;
  margin: 0.25rem 1.5rem 0.75rem 0;
  border-radius: 6px;
}

/* Mobil: obrázek nad textem, přes celou šířku */
@media (max-width: 768px) {
  .clanek-obrazek {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}

/* --- Články: obrázek obtékaný textem --- */
.clanek-obrazekR {
  float: right;
  width: 320px;
  max-width: 45%;
  height: auto;
  margin: 0.25rem 0 0.75rem 1.5rem;
  border-radius: 6px;
}

/* Mobil: obrázek nad textem, přes celou šířku */
@media (max-width: 768px) {
  .clanek-obrazekR {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}