/* Base
--------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #1f2933;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #ffffff;
}

html {
  scroll-behavior: smooth;
}

a {
  color: #1f5f8b;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.home-slider__button,
.site-footer__form button,
.site-footer__social a,
.home-brands__item {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.js-enabled .site-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled .site-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-enabled .site-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Accessibility
--------------------------------------------- */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 1rem;
  left: 1rem;
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: #ffffff;
  background: #1f2933;
}

/* Layout
--------------------------------------------- */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  width: 100%;
  margin: 0 auto;
  /* padding: 3rem 0; */
  flex: 1;
}

.site-main>.content-area {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
}

body.single-post .site-main>.content-area,
body.page .site-main>.content-area {
  max-width: 920px;
}

.site-footer {
  padding: 4rem 0 1.25rem;
  color: #9ba0a5;
  background: #262626;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  color: #ffffff;
  background: transparent;
  overflow-x: clip;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

body:not(.home):not(.front-page):not(.has-transparent-header) .site-header {
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

/* body:not(.home):not(.front-page) .site-main {
  padding-top: 8rem;
} */

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(150px, 230px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  width: min(100% - 2rem, 1500px);
  min-height: 92px;
  margin: 0 auto;
}

.site-branding {
  min-width: 0;
}

.site-logo img,
.custom-logo {
  display: block;
  width: auto;
  max-height: 72px;
}

.site-logo--settings {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-width: 150px;
  min-height: 72px;
}

.site-logo__image {
  grid-area: 1 / 1;
  max-height: 72px;
  transition: opacity 180ms ease;
}

.site-logo--settings.has-light-logo.has-dark-logo .site-logo__image--dark {
  opacity: 0;
}

.site-header.is-scrolled .site-logo--settings.has-dark-logo .site-logo__image--light,
.site-header.is-open .site-logo--settings.has-dark-logo .site-logo__image--light,
body:not(.home):not(.front-page):not(.has-transparent-header) .site-header .site-logo--settings.has-dark-logo .site-logo__image--light {
  opacity: 0;
}

.site-header.is-scrolled .site-logo--settings.has-dark-logo .site-logo__image--dark,
.site-header.is-open .site-logo--settings.has-dark-logo .site-logo__image--dark,
body:not(.home):not(.front-page):not(.has-transparent-header) .site-header .site-logo--settings.has-dark-logo .site-logo__image--dark {
  opacity: 1;
}

.site-title a {
  color: inherit;
}

.site-title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
}

.site-description {
  margin: 0.25rem 0 0;
  color: #52606d;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
  justify-self: start;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.main-navigation>ul>li>a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-navigation>ul>li.current-menu-item>a::after,
.main-navigation>ul>li.current-menu-ancestor>a::after,
.main-navigation>ul>li:hover>a::after,
.main-navigation>ul>li:focus-within>a::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-navigation .menu-item-has-children>a {
  gap: 0.35rem;
}

.main-navigation .menu-item-has-children>a::before {
  order: 2;
  width: 0;
  height: 0;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.main-navigation .sub-menu .menu-item-has-children>a::before {
  border-top: 4px solid transparent;
  border-right: 0;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
}

.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  display: block;
  min-width: 220px;
  padding: 0.6rem 0;
  color: #111827;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-navigation li:hover>.sub-menu,
.main-navigation li:focus-within>.sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-navigation .sub-menu .sub-menu {
  top: -0.6rem;
  left: 100%;
}

.main-navigation .sub-menu a {
  display: flex;
  justify-content: space-between;
  min-height: 40px;
  padding: 0.35rem 1rem;
  color: inherit;
}

.main-navigation .sub-menu a:hover,
.main-navigation .sub-menu a:focus {
  color: #1f5f8b;
  background: #f5f7fa;
}

.site-header__tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 1rem;
}

.site-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  overflow: hidden;
  transition: width 260ms ease, padding 260ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.site-search.is-active,
.site-search:focus-within {
  width: clamp(190px, 16vw, 260px);
  padding: 0 0.55rem 0 0.9rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.1);
}

.site-search input {
  width: 0;
  min-width: 0;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: width 240ms ease, opacity 180ms ease;
}

.site-search.is-active input,
.site-search:focus-within input {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
}

.site-search input::placeholder {
  color: currentColor;
  opacity: 0.92;
}

.site-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.site-language {
  position: relative;
  display: inline-block;
  min-width: 126px;
  color: inherit;
}

.site-language__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  height: 44px;
  padding: 0 0.65rem 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(10, 31, 68, 0.08);
  backdrop-filter: blur(10px);
  isolation: isolate;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.site-language:hover .site-language__button,
.site-language:focus-within .site-language__button,
.site-language.is-open .site-language__button {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 26px rgba(10, 31, 68, 0.14);
  transform: translateY(-1px);
}

.site-language__globe,
.site-language__chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

.site-language__globe {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.site-language__chevron {
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-language.is-open .site-language__chevron {
  opacity: 1;
  transform: rotate(180deg);
}

.site-language__current {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 92px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-language__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 0.25rem;
  min-width: 170px;
  padding: 0.45rem;
  color: #111827;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-language.is-open .site-language__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-language__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 38px;
  padding: 0.48rem 0.65rem;
  border-radius: 7px;
  color: #1f2933;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-language__option:hover,
.site-language__option:focus,
.site-language__option.is-active {
  color: #1f5f8b;
  background: #eef6fc;
  text-decoration: none;
}

.site-language__option i {
  color: #1f5f8b;
  font-size: 0.76rem;
}

.site-header.is-scrolled .site-language__button,
.site-header.is-open .site-language__button,
body:not(.home):not(.front-page):not(.has-transparent-header) .site-header .site-language__button {
  color: #111827;
  border-color: rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.96);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.site-header.is-scrolled .site-language__globe,
.site-header.is-open .site-language__globe,
body:not(.home):not(.front-page):not(.has-transparent-header) .site-header .site-language__globe {
  color: #1f5f8b;
}

.site-header.is-scrolled .site-language:hover .site-language__button,
.site-header.is-scrolled .site-language.is-open .site-language__button,
.site-header.is-open .site-language:hover .site-language__button,
body:not(.home):not(.front-page):not(.has-transparent-header) .site-header .site-language:hover .site-language__button {
  border-color: rgba(31, 95, 139, 0.28);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.site-header__toggle {
  align-items: center;
  justify-content: center;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 4px;
  color: inherit;
  background: transparent;
}

/* Content
--------------------------------------------- */
.post,
.page,
.no-results {
  /* margin-bottom: 2.5rem; */
}

.entry-title,
.page-title {
  margin: 0 0 1rem;
  line-height: 1.25;
}

.entry-content>*:first-child {
  margin-top: 0;
}

.entry-content>*:last-child {
  margin-bottom: 0;
}

.post-thumbnail {
  margin-bottom: 1.5rem;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Search page
--------------------------------------------- */
.search-page {
  padding-top: 8rem;
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 34%);
}

.search-hero {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(1.5rem, 4vw, 3rem);
}

.search-hero__inner {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem);
  border: 1px solid #d9e2ec;
  background: linear-gradient(135deg, #102a43 0%, #1d5a83 58%, #0d3f82 100%);
  color: #ffffff;
}

.search-hero__inner::after {
  content: "";
  position: absolute;
  top: -36%;
  right: -10%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  opacity: 0.65;
}

.search-hero__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #b9d8ff;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0.55rem 0 0.85rem;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 1.05;
}

.search-hero p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.search-page__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  max-width: 780px;
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.search-page__form input {
  width: 100%;
  min-height: 54px;
  border: 0;
  padding: 0 1rem;
  color: #102a43;
  background: #ffffff;
  font: inherit;
  outline: 0;
}

.search-page__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  border: 0;
  padding: 0 1.35rem;
  color: #ffffff;
  background: #1d57a9;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.search-page__form button:hover,
.search-page__form button:focus {
  background: #0d3f82;
  transform: translateY(-1px);
}

.search-results {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.search-results__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid #d9e2ec;
  padding-bottom: 1rem;
  color: #627d98;
  font-weight: 700;
}

.search-results__summary strong {
  color: #102a43;
}

.search-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.search-results__item {
  position: relative;
  min-width: 0;
}

.search-results__type {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.75rem;
  color: #ffffff;
  background: rgba(16, 42, 67, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-results__item .news-card,
.search-results__item .product-card {
  height: 100%;
}

.search-card {
  display: grid;
  align-content: start;
  gap: 1rem;
  height: 100%;
  margin: 0;
  border: 1px solid #d9e2ec;
  padding: 2.2rem 1.4rem 1.4rem;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(16, 45, 83, 0.08);
}

.search-card__title {
  margin: 0;
  color: #102a43;
  font-size: 1.2rem;
  line-height: 1.35;
}

.search-card__title a,
.search-card__link {
  color: inherit;
  text-decoration: none;
}

.search-card p {
  margin: 0;
  color: #52606d;
  line-height: 1.7;
}

.search-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  color: #1d5a83;
  font-weight: 800;
}

.search-empty {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  border: 1px solid #d9e2ec;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: #ffffff;
  text-align: center;
}

.search-empty i {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #1d5a83;
  background: #eef5ff;
  font-size: 1.8rem;
}

.search-empty h2 {
  margin: 0;
  color: #102a43;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.search-empty p {
  max-width: 520px;
  margin: 0;
  color: #627d98;
  line-height: 1.7;
}

/* Contact template
--------------------------------------------- */
.contact-template {
  padding-top: 0;
  background: #ffffff;
}

.contact-template__info,
.contact-template__map-section {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
}

.contact-template__info {
  padding: clamp(2rem, 5vw, 4.5rem) 0 3rem;
}

.contact-template__heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.contact-template__heading h1,
.contact-template__heading h2 {
  margin: 0;
  color: #0b1620;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.contact-template__heading>span {
  display: block;
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: #1d5a83;
}

.contact-template__heading p {
  margin: 0.6rem 0 0;
  color: #344054;
}

.contact-template__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
}

.contact-template__card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.8rem;
  min-width: 0;
  text-align: center;
}

.contact-template__icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #ffffff;
  background: #1d5a83;
  box-shadow: 0 18px 40px rgba(31, 107, 90, 0.18);
}

.contact-template__icon i {
  font-size: 2.25rem;
}

.contact-template__card h2 {
  margin: 1.2rem 0 0;
  color: #7b8088;
  font-size: 1rem;
  font-weight: 800;
}

.contact-template__dash {
  color: #7b8088;
  font-weight: 800;
}

.contact-template__card p,
.contact-template__card a {
  max-width: 380px;
  margin: 0;
  color: #366889;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  font-weight: 800;
  line-height: 1.55;
}

.contact-template__card a:hover,
.contact-template__card a:focus {
  color: #0d3f82;
}

.contact-template__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 220px;
}

.contact-template__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 9px;
  color: #ffffff;
  background: #1d57a9;
  font-size: 1.35rem;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-template__social a:hover,
.contact-template__social a:focus {
  color: #ffffff;
  background: #1d5a83;
  transform: translateY(-2px);
}

.contact-template__map-section {
  padding: 2rem 0 clamp(3rem, 6vw, 5rem);
}

.contact-template__map {
  min-height: clamp(300px, 38vw, 430px);
  border: 5px solid #1d5a83;
  background: #eef5f3;
  overflow: hidden;
}

.contact-template__map iframe,
.contact-template__map img,
.contact-template__map a:not(.contact-template__map-link) {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.contact-template__map iframe,
.contact-template__map img {
  object-fit: cover;
  border: 0;
}

.contact-template__map-link,
.contact-template__map-placeholder {
  display: grid;
  place-items: center;
  gap: 0.75rem;
  min-height: inherit;
  padding: 2rem;
  color: #1d5a83;
  text-align: center;
  font-weight: 800;
}

.contact-template__map-link i,
.contact-template__map-placeholder i {
  font-size: 2.2rem;
}

.contact-template__quote {
  width: 100%;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f4f4f4;
}

.contact-template__quote>.contact-template__heading,
.contact-template__form,
.contact-template__notice {
  width: min(100% - 2rem, 1320px);
  margin-right: auto;
  margin-left: auto;
}

.contact-template__form {
  display: grid;
  gap: 0.75rem;
}

.contact-template__form label {
  display: grid;
}

.contact-template__form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.contact-template__form input,
.contact-template__form textarea {
  width: 100%;
  border: 1px solid #dedede;
  padding: 0.8rem 1rem;
  color: #102a43;
  background: #ffffff;
  font: inherit;
}

.contact-template__form textarea {
  resize: vertical;
}

.contact-template__form button {
  justify-self: start;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.6rem;
  color: #ffffff;
  background: #1d5a83;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-template__form button:hover,
.contact-template__form button:focus {
  background: #0d3f82;
  transform: translateY(-1px);
}

.contact-template__field--hidden {
  display: none !important;
}

.contact-template__notice {
  margin-bottom: 1rem;
  color: #1d5a83;
  font-weight: 800;
}

/* News pages
--------------------------------------------- */
.news-archive,
.news-single {
  width: min(100% - 2rem, 1320px);
  padding-top: 9rem;
}

.news-hero {
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

.news-hero__eyebrow {
  color: #1d5a83;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-hero h1 {
  margin: 0.35rem 0 0.85rem;
  color: #102a43;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
}

.news-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #627d98;
  font-size: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  margin-bottom: 3rem;
}

.news-card {
  display: grid;
  margin: 0;
  border: 1px solid #d9e2ec;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.news-card:hover,
.news-card:focus-within {
  border-color: rgba(29, 90, 131, 0.32);
  box-shadow: 0 22px 42px rgba(16, 42, 67, 0.12);
  transform: translateY(-4px);
}

.news-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  color: #ffffff;
  background: linear-gradient(135deg, #102a43, #1d5a83);
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-card:hover .news-card__media img,
.news-card:focus-within .news-card__media img {
  transform: scale(1.06);
}

.news-card__media span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
}

.news-card__body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.25rem;
}

.news-card__meta,
.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  color: #627d98;
  font-size: 0.84rem;
  font-weight: 700;
}

.news-card__meta a,
.news-single__meta a {
  color: inherit;
}

.news-card__title {
  margin: 0;
  color: #102a43;
  font-size: 1.16rem;
  line-height: 1.35;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-card__title a:hover,
.news-card__title a:focus {
  color: #1d5a83;
}

.news-card__body p {
  margin: 0;
  color: #52606d;
  font-size: 0.94rem;
  line-height: 1.7;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  color: #1d5a83;
  font-weight: 800;
  text-decoration: none;
}

.news-card__link:hover,
.news-card__link:focus {
  color: #102a43;
  text-decoration: none;
  transform: translateX(3px);
}

.news-list-page.news-archive {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.news-list-layout {
  background: #ffffff;
}

.news-list-layout__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 4vw, 4rem);
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
  align-items: start;
}

.news-list-items {
  display: grid;
  gap: 1.55rem;
}

.news-list-item {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1rem;
  background: #f2f2f2;
}

.news-list-item__media {
  position: relative;
  display: block;
  min-height: 150px;
  color: #ffffff;
  background: linear-gradient(135deg, #102a43, #1d5a83);
  overflow: hidden;
}

.news-list-item__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-list-item__media>span {
  display: grid;
  width: 100%;
  min-height: 150px;
  place-items: center;
  font-size: 2.5rem;
}

.news-list-item:hover .news-list-item__media img,
.news-list-item:focus-within .news-list-item__media img {
  transform: scale(1.06);
}

.news-list-item__date {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.35rem 0.62rem;
  color: #102a43;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: #ffffff;
}

.news-list-item__body {
  min-width: 0;
  padding: 0.1rem 0.35rem 0.2rem 0;
}

.news-list-item__title {
  margin: 0 0 0.75rem;
  color: #000000;
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.45;
}

.news-list-item__title a {
  color: inherit;
  text-decoration: none;
}

.news-list-item__title a:hover,
.news-list-item__title a:focus {
  color: #1d5a83;
}

.news-list-item__body p {
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 2.15;
}

.news-list-sidebar {
  display: grid;
  gap: 3.2rem;
  position: sticky;
  top: 9rem;
}

.news-list-sidebar__block h2 {
  margin: 0 0 1rem;
  color: #374151;
  font-size: 1.05rem;
  font-weight: 500;
}

.news-list-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  min-height: 46px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
}

.news-list-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 1rem;
  color: #374151;
  outline: 0;
}

.news-list-search input::placeholder,
.news-list-inquiry input::placeholder,
.news-list-inquiry textarea::placeholder {
  color: #a8a8a8;
}

.news-list-inquiry__notice {
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(47, 107, 89, 0.24);
  color: #245544;
  font-size: 0.92rem;
  line-height: 1.55;
  background: rgba(47, 107, 89, 0.08);
}

.news-list-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: #6b7280;
  background: transparent;
  cursor: pointer;
}

.news-list-search button:hover,
.news-list-search button:focus {
  color: #1d5a83;
}

.news-list-inquiry {
  display: grid;
  gap: 0.7rem;
}

.news-list-inquiry label {
  display: grid;
}

.news-list-inquiry label>span,
.news-list-inquiry__hidden {
  position: absolute;
  left: -9999px;
}

.news-list-inquiry input,
.news-list-inquiry textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  padding: 0.8rem 1rem;
  color: #374151;
  background: #ffffff;
  outline: 0;
}

.news-list-inquiry input:focus,
.news-list-inquiry textarea:focus,
.news-list-search:focus-within {
  border-color: #2f6b59;
  box-shadow: 0 0 0 1px rgba(47, 107, 89, 0.16);
}

.news-list-inquiry textarea {
  min-height: 180px;
  resize: vertical;
}

.news-list-inquiry button {
  justify-self: start;
  min-width: 108px;
  min-height: 44px;
  margin-top: 0.6rem;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  background: #1d5a83;
  cursor: pointer;
}

.news-list-inquiry button:hover,
.news-list-inquiry button:focus {
  background: #236b9c;
  transform: translateY(-1px);
}

.news-list-pagination {
  margin-top: 2.5rem;
}

@media (max-width: 1100px) {

  .news-list-layout__inner,
  .news-single__layout {
    grid-template-columns: 1fr;
  }

  .news-list-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .news-list-layout__inner {
    padding-top: 4rem;
  }

  .news-list-item {
    grid-template-columns: 1fr;
  }

  .news-list-item__media,
  .news-list-item__media img,
  .news-list-item__media>span {
    min-height: 220px;
  }

  .news-list-item__body {
    padding: 0.2rem 0 0.4rem;
  }

  .news-list-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .news-list-item {
    padding: 0.8rem;
  }

  .news-list-item__body p {
    line-height: 1.85;
  }
}

.news-single__article {
  max-width: 920px;
  margin: 0 auto;
}

.news-single__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.6;
}

.news-single__breadcrumb a {
  color: #1d5a83;
  font-weight: 700;
  text-decoration: none;
}

.news-single__breadcrumb a:hover,
.news-single__breadcrumb a:focus {
  color: #102a43;
}

.news-single__breadcrumb span:last-child {
  color: #374151;
}

.news-single__breadcrumb-separator {
  color: #a8b2bd;
}

.news-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.news-single__main {
  min-width: 0;
}

.news-single__header {
  padding: clamp(2rem, 4vw, 4rem) 0 2rem;
}

.news-single__title {
  margin: 0.8rem 0 0;
  color: #102a43;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.12;
}

.news-single__cover {
  margin: 0 0 2rem;
  overflow: hidden;
}

.news-single__cover img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.news-single__content {
  color: #243b53;
  font-size: 1.04rem;
  line-height: 1.9;
}

.news-single__content h2,
.news-single__content h3 {
  margin-top: 2rem;
  color: #102a43;
  line-height: 1.3;
}

.news-single__content img {
  display: block;
  margin: 1.5rem auto;
}

.news-single__content iframe,
.news-single__content video,
.news-single__content embed,
.news-single__content object {
  max-width: 100%;
}

.news-single__content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.news-single__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #d9e2ec;
}

.news-single__nav-item {
  display: grid;
  gap: 0.3rem;
}

.news-single__nav-item--next {
  grid-column: 2;
  text-align: right;
}

.news-single__nav-item span {
  color: #627d98;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.news-single__nav-item a {
  color: #102a43;
  font-weight: 800;
  text-decoration: none;
}

.news-single__nav-item a:hover,
.news-single__nav-item a:focus {
  color: #1d5a83;
}

@media (max-width: 760px) {
  .news-single {
    width: min(100% - 24px, 1320px);
    padding-top: 6.5rem;
  }

  .news-single__breadcrumb {
    gap: 0.35rem;
    padding-top: 0.75rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .news-single__breadcrumb span:last-child {
    flex-basis: 100%;
    min-width: 0;
    color: #4b5563;
  }

  .news-single__layout {
    gap: 2.5rem;
    padding-bottom: 4rem;
  }

  .news-single__header {
    padding: 1.6rem 0 1.25rem;
  }

  .news-single__meta {
    font-size: 0.78rem;
  }

  .news-single__title {
    margin-top: 0.65rem;
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    line-height: 1.18;
  }

  .news-single__cover {
    margin-bottom: 1.4rem;
  }

  .news-single__cover img {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: none;
    object-fit: cover;
  }

  .news-single__content {
    font-size: 0.96rem;
    line-height: 1.82;
    overflow-wrap: anywhere;
  }

  .news-single__content h2 {
    font-size: 1.35rem;
  }

  .news-single__content h3 {
    font-size: 1.15rem;
  }

  .news-single__content img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 1.2rem auto;
  }

  .news-single__nav {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.2rem;
  }

  .news-single__nav-item--next {
    grid-column: auto;
    text-align: left;
  }

  .news-single .news-list-sidebar {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .news-single .news-list-sidebar__block {
    padding-top: 0;
  }

  .news-single .news-list-sidebar__block h2 {
    font-size: 1rem;
  }

  .news-single .news-list-inquiry textarea {
    min-height: 130px;
  }
}

@media (max-width: 420px) {
  .news-single {
    width: min(100% - 18px, 1320px);
  }

  .news-single__title {
    font-size: 1.45rem;
  }

  .news-single__content {
    font-size: 0.94rem;
  }
}

/* Footer
--------------------------------------------- */
.site-footer a {
  color: inherit;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #4ea3f1;
  text-decoration: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1fr) minmax(400px, 1.05fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding-bottom: 2rem;
}

.site-footer__brand,
.site-footer__nav,
.site-footer__inquiry {
  min-width: 0;
}

.site-footer__inquiry {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.site-footer__title {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-footer__summary {
  max-width: 32rem;
  margin: 1rem 0 1.25rem;
  color: #9ba0a5;
}

.site-footer__contact {
  display: grid;
  gap: 0.45rem;
  color: #ffffff;
  font-style: normal;
}

.site-footer__contact a,
.site-footer__contact>span {
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr);
  align-items: start;
  gap: 0.65rem;
}

.site-footer__contact i {
  margin-top: 0.22rem;
  color: #666666;
  font-size: 0.95rem;
  text-align: center;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.92rem;
}

.site-footer__social a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
  border-color: rgba(78, 163, 241, 0.85);
  background: rgba(78, 163, 241, 0.14);
  transform: translateY(-1px);
}

.site-footer__social span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-footer__heading {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.site-footer__nav ul {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__product-links {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer__notice {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(78, 163, 241, 0.35);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(78, 163, 241, 0.14);
}

.site-footer__form {
  display: grid;
  gap: 1rem;
}

.site-footer__form label {
  display: block;
  margin: 0;
}

.site-footer__form label>span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer__form input,
.site-footer__form textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  background: #3b3b3b;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-footer__form input::placeholder,
.site-footer__form textarea::placeholder {
  color: #9fa4a8;
  opacity: 1;
}

.site-footer__form input:focus,
.site-footer__form textarea:focus {
  border-color: rgba(84, 159, 223, 0.75);
  background: #424242;
  box-shadow: 0 0 0 3px rgba(29, 87, 130, 0.28);
}

.site-footer__form textarea {
  min-height: 82px;
  resize: vertical;
}

.site-footer__field--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer__form button {
  width: 100%;
  padding: 12px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  background: #1d5a83;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.site-footer__form button:hover,
.site-footer__form button:focus {
  background: #236b9c;
  transform: translateY(-1px);
}

.site-info {
  width: min(100% - 2rem, 1600px);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(217, 226, 236, 0.18);
  color: #9ba0a5;
  font-size: 0.92rem;
}

/* Floating contact
--------------------------------------------- */
.right_bar {
  position: fixed;
  top: clamp(132px, 42vh, calc(100vh - 330px));
  right: 0;
  display: block;
  width: min(240px, calc(100vw - 12px));
  max-width: calc(100vw - 12px);
  height: 260px;
  z-index: 999;
  overflow: visible;
  contain: paint;
  pointer-events: none;
}

.right_bar ul {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.right_bar li {
  width: 62px;
  height: 50px;
  z-index: 20;
}

.right_bar li.rtbar_li1,
.right_bar li.rtbar_li2,
.right_bar li.rtbar_li3,
.right_bar li.rtbar_li4,
.right_bar li.rtbar_li6 {
  position: absolute;
  right: 0;
  width: 50px;
  overflow: hidden;
  transition: width 260ms ease;
  pointer-events: auto;
}

.right_bar li.rtbar_li1 {
  top: 0;
}

.right_bar li.rtbar_li2 {
  top: 51px;
}

.right_bar li.rtbar_li3 {
  top: 102px;
}

.right_bar li.rtbar_li4 {
  top: 153px;
}

.right_bar li.rtbar_li6 {
  top: 204px;
}

.right_bar li.rtbar_li5 {
  position: absolute;
  top: 205px;
  right: 0;
  width: 50px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.right_bar li.rtbar_li1:hover,
.right_bar li.rtbar_li1:focus-within,
.right_bar li.rtbar_li2:hover,
.right_bar li.rtbar_li2:focus-within,
.right_bar li.rtbar_li3:hover,
.right_bar li.rtbar_li3:focus-within,
.right_bar li.rtbar_li4:hover,
.right_bar li.rtbar_li4:focus-within,
.right_bar li.rtbar_li6:hover,
.right_bar li.rtbar_li6:focus-within {
  width: min(240px, calc(100vw - 12px));
}

.right_bar li.rtbar_li5.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.right_bar a,
.right_bar button {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 6px 0 0 6px;
  color: #ffffff;
  font-size: 14px;
  line-height: 50px;
  text-align: left;
  text-decoration: none;
  background: rgba(51, 51, 51, 0.82);
  overflow: hidden;
  cursor: pointer;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.right_bar li:hover>a,
.right_bar li:focus-within>a,
.right_bar li:hover>button,
.right_bar li:focus-within>button {
  background: #323232;
}

.right_bar i {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  margin: 13px 12px 13px 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
}

.right_bar span {
  display: inline;
  /* padding-right: 12px; */
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.right_bar .rtbar_shwx {
  position: absolute;
  top: -50px;
  left: -160px;
  display: none;
  width: 160px;
  padding: 10px;
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  background: #323232;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.right_bar li:hover .rtbar_shwx,
.right_bar li:focus-within .rtbar_shwx {
  display: block;
}

.rtbar_shwx img {
  display: block;
  width: 160px;
  padding: 4px;
  background: #ffffff;
}

@media (max-width: 1100px) {
  .right_bar {
    top: auto;
    bottom: 96px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  }

  .site-footer__inquiry {
    grid-column: 1 / -1;
    max-width: 640px;
    justify-self: stretch;
  }
}

@media (max-width: 782px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 520px) {
  .right_bar {
    display: none;
  }

  .site-footer__nav {
    /* grid-template-columns: 1fr; */
    display: none;
  }
}

/* Home slider
--------------------------------------------- */
.home-slider {
  width: 100%;
  position: relative;
}

.home-slider__viewport {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-radius: 0;
  background: #102a43;
}

.home-slider__slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 760ms ease, visibility 760ms ease;
}

.home-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.home-slider__image,
.home-slider__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.home-slider__slide.is-active .home-slider__image,
.home-slider__slide.is-active .home-slider__media {
  animation: homeSliderMediaZoom 6200ms ease-out forwards;
}

.home-slider__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 18, 27, 0.88), rgba(8, 18, 27, 0.52) 48%, rgba(8, 18, 27, 0.05));
}

.home-slider__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1400px);
  max-width: none;
  margin: 0 auto;
  padding: 8rem 0 4rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease 160ms, transform 680ms ease 160ms;
}

.home-slider__slide.is-active .home-slider__content {
  opacity: 1;
  transform: translateY(0);
}

.home-slider__title {
  max-width: 720px;
  margin: 0 0 1.4rem;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.home-slider__text {
  display: flex;
  max-width: 760px;
  min-height: 64px;
  align-items: center;
  padding: 1rem 1.4rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  background: rgba(20, 76, 145, 0.78);
  border-left: 4px solid #2f80ed;
  box-shadow: 0 12px 30px rgba(4, 12, 20, 0.22);
}

.home-slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  margin-top: 1.35rem;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 700;
  background: #1d5a83;
}

.home-slider__button:hover,
.home-slider__button:focus {
  color: #ffffff;
  text-decoration: none;
  background: #236b9c;
  box-shadow: 0 12px 28px rgba(5, 35, 70, 0.22);
  transform: translateY(-2px);
}

.home-slider__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  background: rgba(16, 42, 67, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
}

.home-slider__control:hover,
.home-slider__control:focus {
  background: rgba(16, 42, 67, 0.68);
  transform: translateY(-50%) scale(1.06);
}

.home-slider__control--prev {
  left: 1.5rem;
}

.home-slider__control--next {
  right: 1.5rem;
}

.home-slider__pagination {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  color: #ffffff;
}

.home-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.home-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ff3b30;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.home-slider__dot.is-active,
.home-slider__dot:hover,
.home-slider__dot:focus {
  background: #ffffff;
  transform: scale(1.28);
}

@keyframes homeSliderMediaZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* Home about
--------------------------------------------- */
.home-about {
  position: relative;
  width: 100%;
  min-height: clamp(560px, 72vh, 860px);
  padding: clamp(5rem, 8vw, 8rem) 0;
  margin: 0;
  color: #ffffff;
  background-color: #0476bd;
  background-image:
    radial-gradient(circle at 84% 32%, rgba(75, 183, 89, 0.45) 0 10px, transparent 11px),
    linear-gradient(90deg, rgba(0, 92, 170, 0.94), rgba(0, 126, 194, 0.58) 48%, rgba(255, 255, 255, 0.05));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.home-about::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 33, 58, 0.1), rgba(6, 33, 58, 0));
  content: "";
  pointer-events: none;
}

.home-about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  width: min(100% - 2rem, 1600px);
  min-height: clamp(480px, 58vh, 680px);
  margin: 0 auto;
}

.home-about__inner.has-media {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

.home-about__content {
  width: min(100%, 720px);
}

.home-about__eyebrow {
  margin-bottom: 1rem;
  color: #ffffffa1;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-about h2 {
  margin: 0 0 1.6rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.18;
  text-shadow: 0 8px 24px rgba(0, 47, 90, 0.26);
}

.home-about__text {
  display: grid;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.9;
}

.home-about__text p {
  margin: 0;
}

.home-about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 5rem);
  max-width: 520px;
  margin-top: 3rem;
}

.home-about__stat strong {
  display: flex;
  align-items: start;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
}

.home-about__stat strong span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 0.2rem 0 0 0.35rem;
  border-radius: 50%;
  color: #29a866;
  font-size: 1.1rem;
  background: #ffffff;
}

.home-about__stat p {
  margin: 0.7rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.home-about__media {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  max-height: 560px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 28px 60px rgba(0, 47, 90, 0.26);
}



.home-about__media img,
.home-about__media video,
.home-about__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.home-about__media iframe {
  border: 0;
}

/* Home distribution
--------------------------------------------- */
.home-distribution {
  width: 100%;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #eef6fa;
}

.home-distribution__inner {
  width: min(100% - 2rem, 1600px);
  margin: 0 auto;
}

.home-distribution__heading {
  max-width: 980px;
  margin: 0 auto 2rem;
  text-align: center;
}

.home-distribution__eyebrow {
  color: #1d5a83;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-distribution h2 {
  margin: 0.25rem 0 0.8rem;
  color: #174f8a;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
}

.home-distribution__heading p {
  margin: 0;
  color: #7b8794;
  font-size: 1rem;
}

.home-distribution__map {
  position: relative;
  min-height: clamp(280px, 35vw, 470px);
  margin-bottom: 2.2rem;
}

.home-distribution__map img {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.home-distribution__map-placeholder {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 35vw, 470px);
  background:
    radial-gradient(circle at 15% 48%, rgba(29, 90, 131, 0.14) 0 3px, transparent 4px),
    radial-gradient(circle at 36% 39%, rgba(29, 90, 131, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 42%, rgba(29, 90, 131, 0.15) 0 3px, transparent 4px),
    radial-gradient(circle at 74% 36%, rgba(29, 90, 131, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 54%, rgba(29, 90, 131, 0.15) 0 3px, transparent 4px);
  background-size: 14px 14px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  opacity: 0.76;
}

.home-distribution__pin {
  position: absolute;
  color: #1d8fd1;
  font-size: 2rem;
  filter: drop-shadow(0 8px 12px rgba(29, 90, 131, 0.2));
}

.home-distribution__pin--one {
  top: 36%;
  left: 50%;
}

.home-distribution__pin--two {
  top: 47%;
  left: 68%;
}

.home-distribution__pin--three {
  top: 32%;
  left: 84%;
}

.home-distribution__pin--four {
  top: 58%;
  left: 37%;
}

.home-distribution__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid #c7d4dd;
  border-bottom: 1px solid #c7d4dd;
}

.home-distribution__stat {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 1.4rem 1rem;
  text-align: center;
}

.home-distribution__stat+.home-distribution__stat {
  border-left: 1px solid #c7d4dd;
}

.home-distribution__stat strong {
  color: #174f8a;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
}

.home-distribution__stat span {
  color: #2f3b47;
  font-size: 1rem;
}

/* Popular brands
--------------------------------------------- */
.home-brands {
  width: 100%;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  background: #f6f8fb;
}

.home-brands__inner {
  width: min(100% - 2rem, 1600px);
  margin: 0 auto;
}

.home-brands__heading {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.6rem;
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.home-brands__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #1d5a83;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-brands__eyebrow::before,
.home-brands__eyebrow::after {
  display: block;
  width: 34px;
  height: 1px;
  background: #1d5a83;
  content: "";
}

.home-brands h2 {
  position: relative;
  margin: 0;
  padding-bottom: 1rem;
  color: #102a43;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.home-brands h2::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d5a83, #4ea3f1);
  content: "";
  transform: translateX(50%);
}

.home-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.home-brands__item {
  min-width: 0;
  /* background: #ffffff; */
}

.home-brands__item a,
.home-brands__item>span,
.home-brands__item>strong {
  text-decoration: none;
}

.home-brands__item a,
.home-brands__item {
  color: #243b53;
}

.home-brands__item a {
  display: grid;
}

.home-brands__mark {
  display: grid;
  place-items: center;
  /* min-height: 118px; */
  /* padding: 1.2rem; */
}

.home-brands__mark img {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.74;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.home-brands__mark span {
  color: #102a43;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
}

.home-brands__item strong {
  display: block;
  padding: 0 1rem 1rem;
  color: #52606d;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.home-brands__item:hover img,
.home-brands__item:focus-within img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.home-brands__item:hover strong,
.home-brands__item:focus-within strong {
  color: #1d5a83;
}

.home-brands__logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 30px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3vw;
}

.home-brands__logo-item {
  min-width: 0;
  background: #ffffff;
}

.home-brands__logo-item a,
.home-brands__logo-item>img {
  display: grid;
  place-items: center;
  /* min-height: 108px; */
  padding: 0 1.15rem;
}

.home-brands__logo-item img {
  opacity: 0.82;
  transition: opacity 220ms ease, transform 220ms ease;
}

.home-brands__logo-item:hover img,
.home-brands__logo-item:focus-within img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

/* Home news
--------------------------------------------- */
.home-news {
  width: 100%;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: #f3f3f3;
}

.home-news__inner {
  width: min(100% - 2rem, 1600px);
  margin: 0 auto;
}

.home-news__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.home-news__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
  color: #0056a8;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-news__eyebrow::after {
  content: "";
  width: 32px;
  height: 2px;
  background: #0056a8;
}

.home-news h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
}

.home-news__description {
  max-width: 760px;
  margin: 0.9rem 0 0;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}

.home-news__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: #ffffff;
  background: #0056a8;
  font-weight: 800;
  text-decoration: none;
}

.home-news__more:hover,
.home-news__more:focus {
  color: #ffffff;
  background: #003f7c;
  text-decoration: none;
  transform: translateY(-1px);
}

.home-news__mosaic {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.home-news__featured {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(320px, 1fr);
  gap: clamp(1.25rem, 2.6vw, 2rem);
}

.home-news__feature-link {
  position: relative;
  display: block;
  min-height: 340px;
  color: #ffffff;
  overflow: hidden;
}

.home-news__feature-card--large .home-news__feature-link {
  /* min-height: 380px; */
}

.home-news__feature-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 20%, rgba(0, 48, 96, 0.72) 100%);
}

.home-news__feature-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease;
}

.home-news__feature-link>span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 3rem;
  background: linear-gradient(135deg, #0f4f9f, #69a9d4);
}

.home-news__feature-content {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 28px;
  left: 32px;
}

.home-news__feature-content h3 {
  margin: 0 0 0.55rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
  min-height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news__feature-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.home-news__feature-link:hover img,
.home-news__feature-link:focus img {
  transform: scale(1.05);
}

.home-news__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.6vw, 2rem);
}

.home-news__text-card {
  min-width: 0;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-news__text-card:hover,
.home-news__text-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.home-news__text-card>a {
  display: grid;
  gap: 1.15rem;
  min-height: 220px;
  padding: clamp(1.4rem, 2.4vw, 2rem);
  color: inherit;
  text-decoration: none;
}

.home-news__date {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.home-news__date strong {
  color: #0056a8;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 0.9;
}

.home-news__date span {
  color: #0056a8;
  font-weight: 800;
}

.home-news__date em {
  color: #8a96a6;
  font-style: normal;
}

.home-news__text-card h3 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.45;
  min-height: 2.9em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-news__text-card p {
  margin: 0;
  color: #6b7280;
  line-height: 1.7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

body.home .site-main,
body.front-page .site-main {
  width: 100%;
  padding-top: 0;
}

body.home .site-main> :not(.home-slider):not(.home-about):not(.home-distribution):not(.home-brands):not(.home-news),
body.front-page .site-main> :not(.home-slider):not(.home-about):not(.home-distribution):not(.home-brands):not(.home-news) {
  width: min(100% - 2rem, 1120px);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1280px) {
  .home-about {
    min-height: auto;
    padding: 5.5rem 0;
  }

  .home-about__inner {
    min-height: 0;
  }

  .home-about__inner.has-media {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
    gap: 2.25rem;
  }

  .home-about__content {
    width: min(100%, 660px);
  }

  .home-about__text {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .home-about__stats {
    gap: 2rem;
    margin-top: 2.2rem;
  }
}

@media (max-width: 960px) {
  .home-about {
    padding: 5rem 0;
    background-position: center bottom;
  }

  .home-about__inner,
  .home-about__inner.has-media {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.5rem;
    width: min(100% - 32px, 1600px);
  }

  .home-about__content {
    width: 100%;
    max-width: 760px;
  }

  .home-about__media {
    width: min(100%, 720px);
    aspect-ratio: 16 / 9;
    max-height: 420px;
  }
}

@media (max-width: 640px) {

  .news-archive,
  .news-single {
    padding-top: 6.5rem;
  }

  .news-grid,
  .news-single__nav {
    grid-template-columns: 1fr;
  }

  .news-single__breadcrumb {
    padding-top: 0.75rem;
  }

  .news-single__nav-item--next {
    grid-column: auto;
    text-align: left;
  }

  .home-about {
    padding: 4rem 0 3.5rem;
  }

  .home-about__text {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .home-about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .home-about__media {
    aspect-ratio: 16 / 10;
    max-height: 320px;
    border-radius: 18px;
  }

  .home-distribution__map {
    min-height: 220px;
  }

  .home-distribution__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-distribution__stat+.home-distribution__stat {
    border-left: 0;
  }

  .home-distribution__stat:nth-child(2n) {
    border-left: 1px solid #c7d4dd;
  }

  .home-distribution__stat:nth-child(n + 3) {
    border-top: 1px solid #c7d4dd;
  }

  .home-brands__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .home-brands__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brands__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brands__mark {
    min-height: 96px;
    padding: 1rem;
  }

  .home-news__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-news__featured,
  .home-news__cards {
    grid-template-columns: 1fr;
  }

  .home-slider__viewport {
    min-height: 100vh;
  }

  .home-slider__slide::after {
    background: linear-gradient(0deg, rgba(16, 42, 67, 0.92), rgba(16, 42, 67, 0.28));
  }

  .home-slider__content {
    padding: 1.5rem;
  }

  .home-slider__control {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
}

@media (max-width: 980px) and (min-width: 641px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brands__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-news__featured {
    grid-template-columns: 1fr;
  }

  .home-news__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    width: min(100% - 24px, 1500px);
  }

  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-navigation,
  .site-header__tools {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
  }

  .site-header.is-open .main-navigation,
  .site-header.is-open .site-header__tools {
    display: block;
  }

  .site-header.is-open .main-navigation {
    max-height: min(62vh, 520px);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .main-navigation ul {
    display: block;
  }

  .main-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0.45rem 0;
    color: #111827;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .main-navigation>ul>li>a::after {
    display: none;
  }

  .main-navigation .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    padding: 0 0 0 1rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header__tools {
    display: none;
    padding: 0.2rem 0 1rem;
  }

  .site-header.is-open .site-header__tools {
    display: block;
  }

  .site-search {
    width: 44px;
    margin-bottom: 1rem;
  }

  .site-search.is-active,
  .site-search:focus-within {
    width: 100%;
  }

  .site-language {
    width: 100%;
    max-width: 100%;
  }

  .site-language__button {
    justify-content: flex-start;
    padding-right: 0.9rem;
  }

  .site-language__current {
    max-width: none;
  }

  .site-language__menu {
    right: auto;
    left: 0;
    width: min(100%, 320px);
    transform-origin: top left;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__inner {
    min-height: 76px;
    width: min(100% - 20px, 1500px);
  }

  .site-logo--settings {
    min-width: 0;
    min-height: 54px;
  }

  .site-logo img,
  .custom-logo {
    max-height: 54px;
  }

  .home-slider__viewport {
    min-height: 100vh;
  }

  .home-slider__title {
    max-width: 100%;
  }

  .home-slider__text {
    display: flex;
    width: 100%;
  }
}

.product-archive {
  background: #f2f9fc;
}

.product-archive__hero,
.about-template__hero,
.contact-template__hero,
.services-template__hero,
.videos-template__hero,
.news-list-hero {
  min-height: clamp(260px, 30vw, 380px);
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(15, 55, 110, 0.88), rgba(15, 55, 110, 0.38)),
    linear-gradient(135deg, #143f75 0%, #5d91bf 100%);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.product-archive__hero-inner,
.about-template__hero-inner,
.contact-template__hero-inner,
.services-template__hero-inner,
.videos-template__hero-inner,
.news-list-hero__inner {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 84px;
}

.product-archive__hero span,
.about-template__eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-archive__hero h1,
.about-template__hero h1,
.contact-template__hero h1,
.services-template__hero h1,
.videos-template__hero h1,
.news-list-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.product-archive__breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(1600px, calc(100% - 48px));
  min-height: 54px;
  margin: 0 auto;
  color: #7b8a9c;
  font-size: 0.86rem;
}

.product-archive__breadcrumb a,
.product-archive__breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-archive__breadcrumb a {
  color: #1d57a9;
}

.product-breadcrumb__separator {
  color: #9aa6b4;
  font-size: 0.74rem;
}

.product-archive__inner {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 34px;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 86px;
}

.product-filter {
  align-self: start;
  background: #fff;
  padding: 34px 32px 40px;
  box-shadow: 0 18px 45px rgba(12, 47, 87, 0.06);
}

.product-filter h2 {
  margin: 0 0 22px;
  color: #1d57a9;
  font-size: 1.45rem;
  line-height: 1.2;
}

.product-filter__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-filter__children {
  display: grid;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.product-filter__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid #dce4eb;
}

.product-filter__children .product-filter__row {
  min-height: 44px;
}

.product-filter__list a,
.product-filter__children a {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  min-height: inherit;
  color: #172033;
  font-weight: 800;
}

.product-filter__children a {
  color: #536174;
  font-size: 0.94rem;
  font-weight: 700;
}

.product-filter__list a:hover,
.product-filter__list a:focus,
.product-filter__list a.is-active,
.product-filter__children a:hover,
.product-filter__children a:focus,
.product-filter__children a.is-active {
  color: #1d57a9;
}

.product-filter__toggle,
.product-filter__spacer {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.product-filter__toggle {
  display: inline-grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: #1d57a9;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

.product-filter__toggle:hover,
.product-filter__toggle:focus {
  color: #0d3f82;
}

.product-filter__list i,
.product-filter__children i {
  font-size: 0.76rem;
  transition: transform 0.25s ease;
}

.product-filter .is-open>.product-filter__row .product-filter__toggle i {
  transform: rotate(90deg);
}

.product-filter__children-wrap[hidden] {
  display: none;
}

.product-listing {
  min-width: 0;
}

.product-listing__header {
  padding: 26px 0 22px;
}

.product-listing__header h2 {
  margin: 0 0 16px;
  color: #1d57a9;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.product-listing__header p {
  max-width: 930px;
  margin: 0 0 18px;
  color: #8a96a6;
  line-height: 1.7;
}

.product-listing__inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1d57a9;
  color: #fff;
  font-weight: 800;
}

.product-listing__inquire:hover,
.product-listing__inquire:focus {
  background: #0d3f82;
  color: #fff;
  transform: translateY(-1px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  min-width: 0;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(16, 45, 83, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(16, 45, 83, 0.13);
}

.product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1.18;
  padding: 20px;
  background: #fff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
  transform: scale(1.04);
}

.product-card__media span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #b9c6d4;
  font-size: 3rem;
  background: #f5f8fb;
}

.product-card__body {
  display: grid;
  gap: 14px;
  padding: 0 22px 24px;
  text-align: center;
}

.product-card__brand {
  justify-self: center;
  min-width: 116px;
  margin-top: -5px;
  padding: 5px 16px;
  border: 1px solid #d8e1eb;
  border-radius: 999px;
  color: #3e4b5e;
  background: #fff;
  font-size: 0.9rem;
}

.product-card__title {
  min-height: 48px;
  margin: 0;
  color: #111827;
  font-size: 1rem;
  line-height: 1.45;
}

.product-card__title a {
  color: inherit;
}

.product-card__title a:hover,
.product-card__title a:focus {
  color: #1d57a9;
}

.product-card__meta {
  display: grid;
  gap: 10px;
  text-align: left;
}

.product-card__meta div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #eef2f6;
  padding-top: 10px;
}

.product-card__meta span {
  color: #909baa;
}

.product-card__meta strong {
  color: #1d57a9;
  font-weight: 800;
  text-align: right;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 6px;
  background: #eef5ff;
  color: #1d57a9;
  font-weight: 800;
}

.product-card__link:hover,
.product-card__link:focus {
  background: #1d57a9;
  color: #fff;
}

@media (max-width: 420px) {
  .home-about h2 {
    font-size: 1.65rem;
  }

  .home-about__stats {
    grid-template-columns: 1fr;
  }

  .home-about__stat strong {
    font-size: 2.6rem;
  }
}

@media (max-width: 1100px) {
  .search-results__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-template__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-archive__inner {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {

  .search-hero,
  .search-results {
    width: min(100% - 32px, 1320px);
  }

  .contact-template__info,
  .contact-template__map-section,
  .contact-template__quote>.contact-template__heading,
  .contact-template__form,
  .contact-template__notice {
    width: min(100% - 32px, 1320px);
  }

  .contact-template__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-template__icon {
    width: 74px;
    height: 74px;
  }

  .contact-template__icon i {
    font-size: 1.9rem;
  }

  .contact-template__map {
    border-width: 3px;
  }

  .search-hero__inner {
    padding: 2rem 1.25rem;
  }

  .search-page__form {
    grid-template-columns: 1fr;
  }

  .search-page__form button {
    width: 100%;
  }

  .search-results__grid {
    grid-template-columns: 1fr;
  }

  .product-archive__hero {
    min-height: 300px;
  }

  .product-archive__hero-inner,
  .about-template__hero-inner,
  .contact-template__hero-inner,
  .services-template__hero-inner,
  .videos-template__hero-inner,
  .news-list-hero__inner,
  .product-archive__breadcrumb,
  .product-archive__inner {
    width: min(100% - 32px, 1600px);
  }

  .product-archive__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .product-filter {
    padding: 26px 22px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-single {
  background: #f2f9fc;
  padding: 112px 0 86px;
}

.product-single__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto 24px;
  color: #7b8a9c;
  font-size: 0.86rem;
}

.product-single__breadcrumb a,
.product-single__breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-single__breadcrumb a {
  color: #1d57a9;
}

.product-single__breadcrumb a+a::before,
.product-single__breadcrumb a+span::before {
  content: ">";
  margin-right: 12px;
  color: #9aa6b4;
}

.product-single__shell {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 34px;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
}

.product-single__shell .product-filter {
  align-self: start;
}

.product-single__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 34px;
  min-width: 0;
}

.product-single__media,
.product-single__summary,
.product-single__content,
.product-single__video {
  background: #fff;
  box-shadow: 0 20px 46px rgba(16, 45, 83, 0.08);
}

.product-single__media {
  padding: 28px;
}

.product-single__main-image {
  display: grid;
  place-items: center;
  margin: 0;
  aspect-ratio: 1.18;
  background: #fff;
}

.product-single__main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-single__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.product-single__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid #e4eaf1;
}

.product-single__summary {
  padding: 38px;
}

.product-single__summary h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.product-single__excerpt {
  margin: 0 0 22px;
  color: #718095;
  line-height: 1.75;
}

.product-single__specs {
  display: grid;
  margin: 0;
  border-top: 1px solid #e8eef5;
}

.product-single__specs div {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e8eef5;
}

.product-single__specs dt {
  color: #7b8798;
  font-weight: 700;
}

.product-single__specs dd {
  margin: 0;
  color: #1d57a9;
  font-weight: 800;
}

.product-single__inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 28px;
  border-radius: 999px;
  background: #1d57a9;
  color: #fff;
  font-weight: 800;
}

.product-single__inquire:hover,
.product-single__inquire:focus {
  background: #0d3f82;
  color: #fff;
}

.product-single__content,
.product-single__video {
  grid-column: 1 / -1;
  padding: 36px;
}

.product-single__content h2,
.product-single__video h2 {
  margin: 0 0 18px;
  color: #1d57a9;
}

.product-single__video video {
  display: block;
  width: 100%;
  max-height: 680px;
  background: #111827;
}

@media (max-width: 900px) {

  .product-single__shell,
  .product-single__inner {
    grid-template-columns: 1fr;
  }

  .product-single__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .product-single {
    padding-top: 96px;
  }

  .product-single__breadcrumb,
  .product-single__shell {
    width: min(100% - 32px, 1600px);
  }

  .product-single__media,
  .product-single__summary,
  .product-single__content,
  .product-single__video {
    padding: 22px;
  }

  .product-single__specs div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

/* Product detail page inspired by the machinery reference layout. */
.product-detail {
  background: #fff;
  padding: 0 0 90px;
}

.product-detail__hero {
  min-height: 350px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(29, 87, 169, 0.96) 0%, rgba(29, 87, 169, 0.72) 48%, rgba(29, 87, 169, 0.22) 100%),
    linear-gradient(135deg, #0f4f9f 0%, #69a9d4 100%);
  background-position: center;
  background-size: cover;
}

.product-detail__hero-inner {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 86px;
}

.product-detail__hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 3.45rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.product-detail__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 54px;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  color: #7b8a9c;
  font-size: 0.86rem;
}

.product-detail__breadcrumb a,
.product-detail__breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-detail__breadcrumb a {
  color: #1d57a9;
}

.product-detail__overview {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 56px;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 66px;
}

.product-detail__media,
.product-detail__summary {
  min-width: 0;
}

.product-detail__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  background: #fff;
}

.product-detail__stage img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.product-detail__gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #2f67b5;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.product-detail__gallery-control:hover,
.product-detail__gallery-control:focus {
  background: #0d3f82;
  transform: translateY(-50%) scale(1.05);
}

.product-detail__gallery-control--prev {
  left: 0;
}

.product-detail__gallery-control--next {
  right: 0;
}

.product-detail__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding: 2px 2px 10px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-color: #1d57a9 #e6edf6;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.product-detail__thumbs::-webkit-scrollbar {
  height: 6px;
}

.product-detail__thumbs::-webkit-scrollbar-track {
  background: #e6edf6;
}

.product-detail__thumbs::-webkit-scrollbar-thumb {
  background: #1d57a9;
  border-radius: 999px;
}

.product-detail__thumbs button {
  flex: 0 0 clamp(88px, 8vw, 118px);
  display: grid;
  place-items: center;
  aspect-ratio: 1.35;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  background: #eef3f8;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-detail__thumbs button.is-active {
  border-color: #1d57a9;
  box-shadow: 0 8px 20px rgba(29, 87, 169, 0.18);
  transform: translateY(-1px);
}

.product-detail__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail__summary h2 {
  margin: 0 0 44px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dfe6ef;
  color: #1d57a9;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.18;
}

.product-detail__spec-table,
.product-detail__intro-specs {
  display: grid;
  width: min(100%, 430px);
  margin: 0;
  border: 1px solid #e1e7ee;
  border-bottom: 0;
  background: #fff;
}

.product-detail__spec-table div,
.product-detail__intro-specs div {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1fr);
  min-height: 32px;
  border-bottom: 1px solid #e1e7ee;
}

.product-detail__spec-table dt,
.product-detail__intro-specs dt,
.product-detail__spec-table dd,
.product-detail__intro-specs dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 6px 9px;
  font-size: 0.84rem;
}

.product-detail__spec-table dt,
.product-detail__intro-specs dt {
  color: #2f3848;
  font-weight: 700;
}

.product-detail__spec-table dd,
.product-detail__intro-specs dd {
  color: #1d57a9;
}

.product-detail__share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #dfe6ef;
}

.product-detail__share strong {
  color: #111827;
}

.product-detail__share a {
  color: #9aa6b4;
}

.product-detail__share a:hover,
.product-detail__share a:focus {
  color: #1d57a9;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.product-detail__inquire,
.product-detail__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 164px;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 800;
}

.product-detail__inquire {
  border: 1px solid #1d57a9;
  color: #1d57a9;
  background: #fff;
}

.product-detail__phone {
  gap: 9px;
  padding: 0 22px;
  color: #fff;
  background: #1d57a9;
}

.product-detail__inquire:hover,
.product-detail__inquire:focus {
  color: #fff;
  background: #1d57a9;
}

.product-detail__phone:hover,
.product-detail__phone:focus {
  color: #fff;
  background: #0d3f82;
}

.product-detail__why {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 48px 24px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(13, 20, 31, 0.82) 0%, rgba(13, 20, 31, 0.72) 45%, rgba(29, 87, 169, 0.92) 100%),
    linear-gradient(135deg, #18202d 0%, #1d57a9 100%);
}

.product-detail__why div {
  width: min(760px, 100%);
}

.product-detail__why h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.product-detail__why p {
  margin: 0;
  line-height: 1.7;
}

.product-detail__body {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 54px;
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 0;
}

.product-detail__content {
  min-width: 0;
}

.product-detail__intro,
.product-detail__intro .entry-content {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-detail__intro img,
.product-detail__intro video,
.product-detail__intro iframe,
.product-detail__intro embed,
.product-detail__intro object,
.product-detail__intro table,
.product-detail__intro pre {
  max-width: 100%;
}

.product-detail__intro img,
.product-detail__intro video,
.product-detail__intro iframe {
  height: auto;
}

.product-detail__intro table {
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
}

.product-detail__intro pre {
  overflow-x: auto;
  white-space: pre-wrap;
}

.product-detail__intro h2 {
  display: inline-block;
  margin: 0 0 34px;
  border-bottom: 3px solid #1d57a9;
  color: #1d57a9;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.product-detail__intro-specs {
  width: 100%;
  margin-bottom: 22px;
}

.product-detail__content-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.product-detail__content-gallery img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.product-detail__details {
  margin-top: 70px;
  text-align: center;
}

.product-detail__details h2 {
  display: inline-flex;
  align-items: center;
  min-width: min(560px, 100%);
  margin: 0 0 36px;
  color: #fff;
  background: #1d57a9;
  transform: skewX(-24deg);
}

.product-detail__details h2 span {
  display: block;
  width: 100%;
  padding: 11px 34px;
  transform: skewX(24deg);
}

.product-detail__details video,
.product-detail__details img {
  width: min(100%, 860px);
  max-height: 680px;
  object-fit: contain;
  background: #111827;
}

@media (max-width: 1020px) {

  .product-detail__overview,
  .product-detail__body {
    grid-template-columns: 1fr;
  }

  .product-detail__summary {
    justify-content: start;
  }
}

@media (max-width: 760px) {
  .product-detail__hero {
    min-height: 300px;
  }

  .product-detail__hero-inner,
  .product-detail__breadcrumb,
  .product-detail__overview,
  .product-detail__body {
    width: min(100% - 32px, 1600px);
    padding: 15px 0;
  }

  .product-detail__overview {
    gap: 30px;
    padding: 44px 0 50px;
  }

  .product-detail__stage,
  .product-detail__stage img {
    min-height: 280px;
    height: 280px;
  }

  .product-detail__content-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail__thumbs {
    margin-top: 14px;
  }

  .product-detail__thumbs button {
    flex: 0 0 88px;
    width: 88px;
  }

  .product-detail__spec-table,
  .product-detail__intro-specs {
    width: 100%;
  }

  .product-detail__details h2 {
    min-width: 0;
    max-width: 100%;
  }
}

.product-detail__extra {
  width: min(1600px, calc(100% - 48px));
  margin: 0 auto;
  padding: 52px 0 46px;
  background: #fff;
}

.product-detail__extra-list {
  display: grid;
  gap: 14px;
  margin: 0 0 36px;
}

.product-detail__extra-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}

.product-detail__extra-list dt {
  color: #111827;
  font-weight: 800;
}

.product-detail__extra-list dd {
  margin: 0;
  color: #2d3a4d;
}

.product-detail__extra-list a {
  color: #1d57a9;
}

.product-detail__post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #dfe6ef;
  padding-top: 22px;
}

.product-detail__post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  color: #a0a7b1;
  font-size: 1.04rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail__post-nav-link--next {
  justify-self: end;
}

.product-detail__post-nav-link+.product-detail__post-nav-link,
.product-detail__post-nav>span+a,
.product-detail__post-nav>a+span {
  border-left: 1px solid #dfe6ef;
  padding-left: 42px;
}

.product-detail__post-nav-link:hover,
.product-detail__post-nav-link:focus {
  color: #1d57a9;
}

.product-detail__related {
  position: relative;
  padding: 64px max(24px, calc((100vw - 1260px) / 2)) 72px;
  background: #eff8fc;
}

.product-detail__related-heading {
  margin-bottom: 28px;
}

.product-detail__related-heading h2 {
  margin: 0 0 14px;
  color: #1d57a9;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.product-detail__related-heading p {
  margin: 0;
  color: #8a96a6;
  font-size: 1.08rem;
}

.product-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-detail__message {
  padding: 76px 24px 70px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(240, 248, 252, 0.84), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, #eef6fb 0%, #ffffff 52%, #dfeaf3 100%);
}

.product-detail__message-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.product-detail__message h2 {
  margin: 0 0 14px;
  color: #1d57a9;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
}

.product-detail__message p {
  margin: 0 0 34px;
  color: #8a96a6;
  font-size: 1.05rem;
}

.product-detail__message-form {
  display: grid;
  gap: 14px;
}

.product-detail__message-form label {
  display: grid;
  margin: 0;
}

.product-detail__message-form label>span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.product-detail__message-form input,
.product-detail__message-form textarea {
  width: 100%;
  border: 1px solid #c6d0dc;
  border-radius: 0;
  padding: 13px 16px;
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}

.product-detail__message-form textarea {
  resize: vertical;
}

.product-detail__message-form input:focus,
.product-detail__message-form textarea:focus {
  border-color: #1d57a9;
  outline: 2px solid rgba(29, 87, 169, 0.16);
}

.product-detail__message-company {
  display: none !important;
}

.product-detail__message-form button {
  justify-self: center;
  min-width: 148px;
  min-height: 44px;
  border: 0;
  color: #fff;
  background: #1d57a9;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.product-detail__message-form button:hover,
.product-detail__message-form button:focus {
  background: #0d3f82;
}

@media (max-width: 1020px) {
  .product-detail__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-detail__extra {
    width: min(100% - 32px, 1600px);
  }

  .product-detail__extra-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-detail__post-nav {
    grid-template-columns: 1fr;
  }

  .product-detail__post-nav-link--next {
    justify-self: start;
  }

  .product-detail__post-nav-link+.product-detail__post-nav-link,
  .product-detail__post-nav>span+a,
  .product-detail__post-nav>a+span {
    border-left: 0;
    border-top: 1px solid #dfe6ef;
    padding-left: 0;
  }

  .product-detail__related-grid {
    grid-template-columns: 1fr;
  }
}

/* Services page template
--------------------------------------------- */
.videos-template {
  min-height: 70vh;
  padding: 0 0 86px;
  color: #253142;
  background: #f3f8fb;
}

.videos-template__intro-wrap,
.videos-template__grid-wrap {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
}

.videos-template__intro-wrap {
  padding: clamp(2rem, 4vw, 3.2rem) 0 0;
}

.videos-template__intro {
  max-width: 760px;
  color: #617084;
  line-height: 1.75;
}

.videos-template__intro>* {
  margin: 0 0 0.9rem;
}

.videos-template__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.videos-template__card {
  min-width: 0;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 55, 110, 0.1);
  overflow: hidden;
}

.videos-template__media {
  position: relative;
  background: #0d274d;
}

.videos-template__media iframe,
.videos-template__media video,
.videos-template__play,
.videos-template__cover-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.videos-template__media video {
  object-fit: cover;
}

.videos-template__play {
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}

.videos-template__play img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.videos-template__play:hover img,
.videos-template__play:focus img {
  transform: scale(1.04);
}

.videos-template__cover-placeholder {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(29, 87, 169, 0.94), rgba(31, 107, 90, 0.78)),
    #143f75;
}

.videos-template__play-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(29, 87, 169, 0.92);
  font-size: 1.8rem;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, background-color 180ms ease;
}

.videos-template__play:hover .videos-template__play-icon,
.videos-template__play:focus .videos-template__play-icon {
  background: #1f6b5a;
  transform: scale(1.06);
}

.videos-template__card h2 {
  margin: 0;
  padding: 1rem 1.15rem 1.2rem;
  color: #172033;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.videos-template__empty {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 4rem 1rem;
  color: #617084;
  background: #ffffff;
  text-align: center;
}

.videos-template__empty i {
  color: #1d57a9;
  font-size: 2.6rem;
}

@media (max-width: 1020px) {
  .videos-template__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .videos-template {
    padding-top: 92px;
  }

  .videos-template__grid {
    grid-template-columns: 1fr;
  }
}

.services-template {
  width: 100%;
  color: #253142;
  background: #ffffff;
}

.services-template h1,
.services-template h2,
.services-template h3,
.services-template p {
  letter-spacing: 0;
}

.services-template__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100% - 2rem, 1320px);
  min-height: 58px;
  margin: 0 auto;
  color: #7b899a;
  font-size: 0.82rem;
}

.services-template__breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #1d57a9;
}

.services-template__intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) 0 1rem;
  border-bottom: 1px solid #ccd4df;
}

.services-template__intro h2 {
  margin: 0 0 0.8rem;
  color: #1d57a9;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 900;
}

.services-template__intro p {
  margin: 0;
  color: #7d8794;
  font-size: 0.9rem;
}

.services-template__anchors {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.services-template__anchors a {
  color: #111827;
}

.services-template__anchors a:hover,
.services-template__anchors a:focus {
  color: #1d57a9;
}

.services-template__content {
  width: min(100% - 2rem, 1400px);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.services-template__section-heading {
  max-width: 1080px;
  margin: 0 auto clamp(2.3rem, 4vw, 3.6rem);
  text-align: center;
}

.services-template__section-heading h2 {
  margin: 0 0 1rem;
  color: #1d57a9;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 900;
}

.services-template__section-heading p {
  margin: 0 auto;
  color: #7c8796;
  line-height: 1.7;
}

.services-template__service-list {
  display: grid;
  gap: clamp(1.2rem, 2.4vw, 2rem);
}

.services-template__service-item {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: 280px;
}

.services-template__service-item:nth-child(even) .services-template__media {
  order: 2;
}

.services-template__media,
.services-template__panel-media {
  margin: 0;
  overflow: hidden;
  background: #e8eef6;
}

.services-template__media img,
.services-template__panel-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
}

.services-template__media-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(29, 87, 169, 0.92), rgba(31, 107, 90, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: auto, 36px 36px;
}

.services-template__media-placeholder i {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  opacity: 0.82;
}

.services-template__service-copy {
  padding: clamp(1.5rem, 4vw, 3.6rem);
}

.services-template__service-copy h3,
.services-template__panel-copy h3 {
  position: relative;
  margin: 0 0 1.7rem;
  color: #1d57a9;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.24;
}

.services-template__service-copy h3::after,
.services-template__panel-copy h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.9rem;
  width: 64px;
  height: 3px;
  background: #1d57a9;
}

.services-template__service-copy p,
.services-template__panel-copy p {
  margin: 0;
  color: #7e8795;
  font-size: 0.92rem;
  line-height: 1.75;
}

.services-template__advantage {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(4.5rem, 8vw, 7rem);
  background: #eef8fc;
  overflow: hidden;
}

.services-template__advantage::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -130px;
  top: 30px;
  border: 42px solid rgba(208, 232, 243, 0.58);
  border-radius: 50%;
}

.services-template__advantage>* {
  position: relative;
  z-index: 1;
}

.services-template__tabs,
.services-template__panels {
  width: min(100% - 2rem, 1400px);
  margin: 0 auto;
}

.services-template__tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(29, 87, 169, 0.11);
}

.services-template__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 72px;
  border: 0;
  padding: 0.8rem 1rem;
  color: #1f2937;
  background: #f5f5f5;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.services-template__tab.is-active {
  color: #ffffff;
  background: #255ba9;
}

.services-template__tab i {
  font-size: 1.35rem;
}

.services-template__panels {
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(29, 87, 169, 0.11);
}

.services-template__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  min-height: 330px;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.services-template__panel[hidden] {
  display: none;
}

.services-template__panel-copy {
  padding: clamp(1.5rem, 4vw, 3.4rem);
}

@media (max-width: 900px) {

  .services-template__intro,
  .services-template__service-item,
  .services-template__panel {
    grid-template-columns: 1fr;
  }

  .services-template__intro {
    display: grid;
    align-items: start;
  }

  .services-template__anchors {
    justify-content: flex-start;
  }

  .services-template__service-item:nth-child(even) .services-template__media {
    order: 0;
  }
}

@media (max-width: 640px) {
  .services-template__hero-inner {
    padding-top: 72px;
  }

  .services-template__breadcrumb,
  .services-template__intro,
  .services-template__content,
  .services-template__tabs,
  .services-template__panels {
    width: min(100% - 1.2rem, 1200px);
  }

  .services-template__service-copy,
  .services-template__panel-copy {
    padding: 1.35rem 0.4rem 1.8rem;
  }
}

/* About page template
--------------------------------------------- */
.about-template {
  width: 100%;
  padding-top: 0;
  color: #202a36;
  background: #ffffff;
}

.about-template h1,
.about-template h2,
.about-template h3,
.about-template p {
  letter-spacing: 0;
}

.about-template__intro-panel {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}

.about-template__intro {
  max-width: 720px;
  margin: 0 auto;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.74;
}

.about-template__intro>* {
  margin: 0 0 0.9rem;
}

.about-template__intro>*:last-child {
  margin-bottom: 0;
}

.about-template__hero-media,
.about-template__story-media,
.about-template__certificate-grid figure,
.about-template__factory-grid figure {
  margin: 0;
}

.about-template__hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 4px;
}

.about-template__numbers {
  background: #eef3fb;
}

.about-template__numbers-inner {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0;
  text-align: center;
}

.about-template__numbers h2 {
  margin: 0 auto 1rem;
  color: #232832;
  font-size: clamp(2rem, 4.1vw, 3.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.about-template__numbers p {
  max-width: 620px;
  margin: 0 auto;
  color: #5f6b7a;
  line-height: 1.65;
}

.about-template__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.about-template__stats div {
  min-width: 0;
  padding: 0 1rem;
  border-right: 1px solid rgba(97, 116, 140, 0.18);
}

.about-template__stats div:last-child {
  border-right: 0;
}

.about-template__stats strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  color: #004de6;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.about-template__stats strong span {
  color: #004de6;
  font-size: 0.82rem;
  font-weight: 700;
}

.about-template__stats small {
  display: block;
  margin-top: 0.9rem;
  color: #7b8794;
  font-size: 0.76rem;
}

.about-template__story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  width: min(100% - 2rem, 1400px);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6.5rem) 0;
  align-items: center;
}

.about-template__story-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px;
}

.about-template__story-media img,
.about-template__story-media video,
.about-template__story-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: inherit;
}

.about-template__story-copy h2 {
  max-width: 620px;
  margin: 0 0 1.1rem;
  color: #232832;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  line-height: 0.96;
}

.about-template__story-copy p {
  max-width: 680px;
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.75;
}

.about-template__difference {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 56, 170, 0.9), rgba(0, 22, 78, 0.76)),
    radial-gradient(circle at 30% 20%, rgba(90, 170, 255, 0.38), transparent 34%),
    #063aa0;
}

.about-template__difference::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 44px 44px;
}

.about-template__difference-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 1400px);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
  color: #ffffff;
  text-align: center;
}

.about-template__difference h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 900;
  line-height: 1;
}

.about-template__difference-inner>p {
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.about-template__advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  text-align: left;
}

.about-template__advantage {
  min-height: 330px;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(27, 31, 65, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.about-template__advantage i {
  margin-bottom: 1.4rem;
  font-size: 2.1rem;
}

.about-template__advantage h3 {
  margin: 0 0 0.8rem;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.about-template__advantage p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.75;
}

.about-template__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  min-height: 54px;
  padding: 0 1.6rem 0 2rem;
  margin-top: clamp(2.6rem, 5vw, 4.2rem);
  color: #ffffff;
  font-weight: 800;
  background: #0056d6;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 38, 110, 0.35);
}

.about-template__cta:hover,
.about-template__cta:focus {
  color: #ffffff;
  text-decoration: none;
  background: #0049b8;
}

.about-template__gallery {
  width: min(100% - 2rem, 1320px);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  text-align: center;
}

.about-template__gallery h2 {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  color: #101827;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
}

.about-template__certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.4rem);
  max-width: 1100px;
  margin: 0 auto;
}

.about-template__certificate-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
}

.about-template__gallery--factory {
  width: 100%;
  max-width: none;
  padding-right: max(1rem, calc((100vw - 1320px) / 2));
  padding-left: max(1rem, calc((100vw - 1320px) / 2));
  background: #eef3f7;
}

.about-template__factory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}

.about-template__factory-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 1180px) {
  .about-template__advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-template__advantage {
    min-height: 250px;
  }
}

@media (max-width: 900px) {
  .about-template__story {
    grid-template-columns: 1fr;
  }

  .about-template__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-template__stats div:nth-child(2n) {
    border-right: 0;
  }

  .about-template__certificate-grid,
  .about-template__factory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {

  .about-template__stats,
  .about-template__advantage-grid,
  .about-template__certificate-grid,
  .about-template__factory-grid {
    grid-template-columns: 1fr;
  }

  .about-template__stats div {
    padding-bottom: 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(97, 116, 140, 0.18);
  }

  .about-template__stats div:last-child {
    border-bottom: 0;
  }
}

/* News single mobile overrides
--------------------------------------------- */
@media (max-width: 900px) {
  .news-single__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .news-single__main,
  .news-single__article,
  .news-single__nav {
    width: 100%;
    max-width: none;
  }

  .news-single__layout > .news-list-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.6rem;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .news-single {
    width: min(100% - 24px, 1320px);
    padding-top: 6.5rem;
  }

  .news-single__breadcrumb {
    gap: 0.35rem;
    padding-top: 0.75rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .news-single__breadcrumb span:last-child {
    flex-basis: 100%;
    min-width: 0;
  }

  .news-single__layout {
    padding-bottom: 4rem;
  }

  .news-single__header {
    padding: 1.6rem 0 1.25rem;
  }

  .news-single__title {
    margin-top: 0.65rem;
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    line-height: 1.18;
  }

  .news-single__cover img {
    aspect-ratio: 16 / 10;
    max-height: none;
    object-fit: cover;
  }

  .news-single__content {
    font-size: 0.96rem;
    line-height: 1.82;
    overflow-wrap: anywhere;
  }

  .news-single__content img,
  .news-single__content iframe,
  .news-single__content video {
    max-width: 100%;
    height: auto;
  }

  .news-single__content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .news-single__nav {
    grid-template-columns: 1fr;
  }

  .news-single__nav-item--next {
    grid-column: auto;
    text-align: left;
  }
}
