html {
  font-size: 17px;
  scrollbar-gutter: stable;
}

body {
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  color: #1f2937;
  background-color: #ffffff;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.35rem;
}

h2 {
  font-size: 1.85rem;
  margin-top: 2.25rem;
  margin-bottom: 1.35rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
}

li {
  font-size: 1rem;
  font-weight: 400;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.content-card ul,
.content-card ol,
.content-card__text ul,
.content-card__text ol {
  list-style: none;
  margin-top: 0.5rem;
}

.content-card ul:not(.acf-icon-bullets) li,
.content-card__text ul:not(.acf-icon-bullets) li {
  position: relative;
  padding-left: 1.55rem;
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.content-card ul:not(.acf-icon-bullets) li::before,
.content-card__text ul:not(.acf-icon-bullets) li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.44rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1f419a;
}

.content-card ol,
.content-card__text ol {
  counter-reset: item;
}

.content-card ol li,
.content-card__text ol li {
  position: relative;
  list-style: none;
  padding-left: 2.4rem;
  margin-bottom: 0.75rem;
  counter-increment: item;
  line-height: 1.65;
}

.content-card ol li::before,
.content-card__text ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0.08rem;
  min-width: 1.65rem;
  height: 1.65rem;
  padding: 0 4px;
  border-radius: 999px;
  border: 1px solid rgba(31, 65, 154, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #eef1fb 100%);
  color: #1f419a;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(15, 42, 82, 0.06);
}

a {
  font-size: 1rem;
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  color: #0a58ca;
}

@media (max-width: 992px) {
  html {
    font-size: 16px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.65rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #fafafa;
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__inner.navbar {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .site-header__inner .site-nav.navbar-collapse {
    display: flex !important;
    flex-grow: 1;
    flex-basis: auto;
    justify-content: flex-end;
  }
}
.site-branding {
  display: inline-flex;
  align-items: center;
}

.site-branding__logo {
  width: auto;
  height: 46px;
  max-width: 180px;
}

.site-branding:hover {
  color: #0d6efd;
}

.site-header__toggler.navbar-toggler {
  border: 0;
  box-shadow: none;
}

.site-header__toggler.navbar-toggler:focus {
  box-shadow: none;
}

.site-header__toggler.navbar-toggler:focus-visible {
  box-shadow: none;
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

.site-nav.navbar-collapse.collapsing {
  transition: height 0.5s ease-in-out;
}

.site-nav {
  justify-content: flex-end;
}

.site-nav__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav__menu > li {
  position: relative;
}

.site-nav__item-row {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.site-nav__item-row .site-nav__link {
  flex: 1 1 auto;
  min-width: 0;
}

.site-nav__toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
}

.site-nav__toggle:hover,
.site-nav__toggle:focus-visible {
  color: #0d6efd;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid #0d6efd;
  outline-offset: 2px;
}

.site-nav__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav__toggle-icon::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.45s ease;
}

.menu-item-has-children.is-expanded .site-nav__toggle-icon::before {
  transform: rotate(-135deg);
}

.site-nav__menu a {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #0f172a;
  font-weight: 600;
}

.site-nav__menu a:hover {
  color: #0d6efd;
}

.site-nav__menu .sub-menu {
  margin: 0;
  padding: 10px 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #ffffff;
  border: 1px solid #d6e0ef;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
  z-index: 25;
}

.site-nav__menu .sub-menu a {
  padding: 8px 14px;
}

.site-nav__menu > li:hover > .sub-menu,
.site-nav__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .site-header__inner {
    min-height: 0;
  }
  .site-header__inner.navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: minmax(72px, auto) auto;
    align-items: center;
    justify-content: unset;
    column-gap: 24px;
    row-gap: 0;
    flex-wrap: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .site-branding {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .site-header__toggler {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  .site-nav {
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
  }
  .site-nav__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .site-branding__logo {
    height: 42px;
    max-width: 164px;
  }
  .site-nav__toggle {
    display: inline-flex;
  }
  .site-nav__menu .sub-menu {
    position: static;
    min-width: 100%;
    margin: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: block;
    max-height: var(--site-nav-submenu-max, 0px);
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
  }
  .site-nav__menu .sub-menu a {
    padding-top: 6px;
    padding-bottom: 6px;
    background: transparent;
    font-weight: 600;
  }
}
@media (min-width: 992px) {
  .site-nav__toggle {
    display: none;
  }
}
.site-footer {
  background-color: #d6e0ef;
  color: #1f2937;
  padding-top: 48px;
  padding-bottom: 24px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 28px;
}

.site-footer__title {
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.site-footer__branding {
  display: inline-flex;
  margin-bottom: 16px;
}

.site-footer__logo {
  width: auto;
  height: 46px;
  max-width: 190px;
}

.site-footer__address,
.site-footer__meta,
.site-footer__contact,
.site-footer__empty {
  margin: 0;
  line-height: 1.55;
}

.site-footer__contact a {
  color: #1f419a;
  font-weight: 600;
}

.site-footer__contact a:hover {
  color: #0f172a;
}

.site-footer__address + .site-footer__meta,
.site-footer__meta {
  margin-top: 12px;
}

.site-footer__empty {
  color: #64748b;
  font-size: 0.9rem;
}

.site-footer__menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__menu li + li {
  margin-top: 8px;
}

.site-footer__menu a {
  color: #1f419a;
  font-weight: 600;
}

.site-footer__menu a:hover {
  color: #0f172a;
}

.site-footer__bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.site-footer__copyright-row {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  --bs-gutter-y: 0.35rem;
}
@media (min-width: 992px) {
  .site-footer__copyright-row {
    --bs-gutter-y: 0;
    --bs-gutter-x: 0.5rem;
  }
}

.site-footer__copyright-col {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-footer__copyright-col--sep {
  align-items: center;
  flex: 0 0 auto;
}

.site-footer__copyright-sep {
  color: #64748b;
}

.site-footer__copyright-part {
  margin: 0;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
}

@media (min-width: 992px) {
  .site-footer__copyright-col:not(.site-footer__copyright-col--sep) {
    flex: 0 1 auto;
    width: auto;
  }
}
.site-footer__legal {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  text-align: center;
}

.site-footer__legal-link {
  color: #1f419a;
  font-weight: 600;
}

.site-footer__legal-link:hover {
  color: #0f172a;
}

.site-footer__credits {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  text-align: center;
}

.site-footer__credits-link {
  color: #1f419a;
  font-weight: 600;
}

.site-footer__credits-link:hover {
  color: #0f172a;
}

@media (max-width: 992px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer__logo {
    height: 42px;
  }
  .site-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
  }
}
.site-main {
  min-height: 60vh;
}

.hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-section__content {
  max-width: 760px;
}

.hero-section p {
  color: #64748b;
  margin-top: 18px;
  margin-bottom: 28px;
}

.content-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.content-card {
  border-radius: 12px;
  padding: 24px;
  background-color: #ffffff;
}

.content-card + .content-card {
  margin-top: 20px;
}

.content-card__title {
  margin-bottom: 14px;
}

.content-card__title a {
  color: #0f172a;
}

.content-card__title a:hover {
  color: #0d6efd;
}

.page-layout {
  align-items: flex-start;
}

.page-layout__media {
  margin-bottom: 20px;
}

.page-layout__image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  max-height: 300px;
}

.page-content-rest {
  margin-top: 28px;
}

.homepage-hero {
  width: 100%;
}

.homepage-hero__image {
  width: 100%;
  height: clamp(240px, 40vw, 560px);
  object-fit: cover;
  display: block;
}

.content-card--front-page .content-card__title {
  margin-top: 6px;
}

.acf-icon-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.acf-icon-bullets__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.acf-icon-bullets__icon-wrap {
  flex: 0 0 auto;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f419a;
  overflow: hidden;
}

.acf-icon-bullets__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.acf-icon-bullets__text {
  line-height: 1.55;
}

.acf-icon-bullets__text strong,
.acf-icon-bullets__text b {
  font-weight: 700;
  color: #0f172a;
}

.acf-vetter-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 32px;
  column-gap: 28px;
  margin: 0;
  padding: 20px 0 0;
}

.acf-vetter-members__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px;
  min-height: 56px;
}

.acf-vetter-members__logo {
  width: 100%;
  max-width: 100%;
  height: 44px;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 576px) {
  .acf-vetter-members {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .acf-vetter-members {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .acf-vetter-members {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .acf-vetter-members {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .acf-vetter-members {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
.acf-statistiky {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3px;
  column-gap: 0;
  margin-top: 20px;
  background-color: #d6e0ef;
  border: none;
}

.acf-statistiky__cell {
  background-color: #ffffff;
  text-align: center;
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.acf-statistiky__cislo {
  color: #1f419a;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.acf-statistiky__text {
  color: #1f2937;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  max-width: 28ch;
}

@media (min-width: 576px) {
  .acf-statistiky {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .acf-statistiky {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .acf-statistiky__cell {
    padding: 32px 20px;
  }
  .acf-statistiky__cell:nth-child(3n-1)::before,
  .acf-statistiky__cell:nth-child(3n)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 1px;
    background-color: #d6e0ef;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .content-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .content-card {
    padding: 18px;
  }
  .page-layout__media {
    margin-bottom: 16px;
  }
}
