@charset "UTF-8";
.is-style-container-980 {
  margin-inline: auto;
  max-width: 980px;
  padding-inline: 1rem;
}

.is-style-container-1024 {
  margin-inline: auto;
  max-width: 1024px;
  padding-inline: 1rem;
}

.is-style-container-1280 {
  margin-inline: auto;
  max-width: 1280px;
  padding-inline: 1rem;
}

.is-style-container-1480 {
  margin-inline: auto;
  max-width: 1480px;
  padding-inline: 1rem;
}

.is-style-fit-content {
  margin-inline: auto;
  max-width: fit-content;
  padding-inline: 1rem;
}

:root {
  /* продублюємо частину токенів для позатекстових елементів */
  --container: 1100px;
  --gap: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

.site-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem;
  position: sticky;
  top: 50px;
  z-index: 9999;
}

a {
  color: #1f6feb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Gutenberg helpers */
.wp-site-blocks {
  padding: 1.5rem;
}

.alignwide {
  max-width: 1480px;
  margin-inline: auto;
}

.alignfull {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.entry--no-title .entry-title {
  display: none;
}
.entry--no-title .entry-content {
  margin-top: 0;
}

.site-header {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 24px;
  padding: 1rem 0;
  max-width: 1480px;
  margin-top: 20px;
  margin-bottom: 100px;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
.site-header .site-logo img {
  max-width: 180px;
  max-height: 60px;
  height: auto;
}
.site-header__actions {
  display: flex;
  gap: 1rem;
}
.site-header__actions .btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
}
.site-header__actions .btn-primary {
  background: #0693e3;
  color: #fff;
}
.site-header__actions .btn-primary:hover {
  background: #0073aa;
}
.site-header__actions .btn-secondary {
  background: #f3f3f3;
  color: #333;
}
.site-header__actions .btn-secondary:hover {
  background: #e0e0e0;
}

.site-footer {
  width: 1480px;
  margin: 0 auto;
  padding: 1rem;
}
.site-footer .site-footer__social {
  display: flex;
  gap: 1rem;
}
.site-footer .site-footer__social .social-link img {
  width: 100px;
  height: 100px;
  display: block;
}
.site-footer .site-footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer .site-footer__bottom .site-footer__contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-footer .site-footer__bottom .site-footer__contacts a {
  margin-left: 20px;
}

/* ====== Burger ====== */
.burger {
  display: none; /* показуємо лише на мобільному */
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ====== NAV (desktop) ====== */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-header__nav .menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ====== MOBILE overlay ====== */
@media (max-width: 1024px) {
  .burger {
    display: inline-flex;
    flex-flow: column wrap;
  }
  /* fullscreen меню */
  .site-header__nav {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    z-index: 10000;
    overflow-y: auto;
    padding: 24px; /* внутрішні відступи */
    /* вертикальне розміщення контенту */
    display: none;
  }
  .menu-open .site-header__nav {
    display: block;
  }
  /* логотип всередині меню (клон) */
  .site-logo--in-menu {
    display: block;
    margin: 8px 0 16px;
    padding: 0 0 16px;
    border-bottom: 1px solid #e5e7eb;
  }
  .site-logo--in-menu img {
    max-height: 48px;
    height: auto;
    width: auto;
  }
  /* список посилань у меню */
  .site-header__nav .menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 8px 0 16px;
  }
  .site-header__nav .menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.125rem;
  }
  /* КНОПКИ: у хедері — ховаємо, у меню — показуємо стовпчиком */
  .site-header__inner > .site-header__actions {
    display: none;
  } /* хедер */
  .site-header__nav .site-header__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 8px;
  }
  .site-header__nav .site-header__actions .btn {
    width: 100%;
    text-align: center;
  }
  /* анімація бургера + блокування скролу */
  .menu-open .burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .menu-open .burger span:nth-child(2) {
    opacity: 0;
  }
  .menu-open .burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .menu-open,
  .menu-open body {
    overflow: hidden;
  }
}
/* десктоп — без змін: меню рядком, кнопки праворуч */
@media (min-width: 1025px) {
  .site-header__nav {
    display: flex;
  }
  .site-header__inner > .site-header__actions {
    display: flex;
  } /* як було */
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../src/scss/partials/_containers.scss%22,%22../../src/scss/main.scss%22,%22../../src/scss/partials/_variables.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AAOA;EACE;EACA,WARc;EASd;;;AAGF;EACE;EACA,WAbe;EAcf;;;AAGF;EACE;EACA,WAlBe;EAmBf;;;AAGF;EACE;EACA,WAvBe;EAwBf;;;AAGF;EACE;EACA,WA5BY;EA6BZ;;;AC/BF;AACE;EACA;EACA;;;AAGF;AAAA;AAAA;EAGE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EAEA,YCtBc;EDuBd,OCxBc;EDyBd;;;AAGF;EACE;EACA;EACA;EACA;EACA;EACA;;;AAGF;EACE,OCvCc;EDwCd;;;AAEF;EACE;;;AAGF;AACA;EACE;;;AAEF;EACE,WDhDe;ECiDf;;;AAEF;EACE;EACA;EACA;;;AAIA;EACE;;AAGF;EACE;;;AAIJ;EACE;EACA;EACA;EACA;EACA,WDxEe;ECyEf;EACA;;AAEA;EACE;EACA;EACA;EACA,WDhFa;ECiFb;EACA;EACA;;AAGF;EACE;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;AAGF;EACE;EACA;;AAEA;EACE;;AAIJ;EACE;EACA;;AAEA;EACE;;;AAMR;EACE,OD7He;EC8Hf;EACA;;AACA;EACE;EACA;;AAEA;EACE;EACA;EACA;;AAIJ;EACE;EACA;EACA;;AAEA;EACE;EACA;EACA;;AACA;EACE;;;AAMR;AACA;EACE;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACE;EACA;EACA;EACA;EACA;;;AAGJ;AACA;EACE;EACA;EACA;;AACA;EACE;EACA;EACA;EACA;EACA;;;AAIJ;AACA;EACE;IACE;IACA;;AAGF;EACA;IACE;IACA;IACA;IACA;IACA;IACA;IACA;AACA;IACA;;EAEF;IACE;;AAGF;EACA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;;AAGF;EACA;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;IACA;;AAGF;EACA;IACE;IACA;EACF;IACE;IACA;IACA;IACA;;EAEF;IACE;IACA;;AAGF;EACA;IACE;;EAEF;IACE;;EAEF;IACE;;EAEF;AAAA;IAEE;;;AAIJ;AACA;EACE;IACE;;EAEF;IACE;IACA%22,%22file%22:%22main.css%22%7D */
