@charset "UTF-8";
.cat-list {
  flex: 0 0 260px;
  align-self: flex-start;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cat-list .icon {
  width: 18px;
  height: 18px;
  color: var(--brand);
}
@media (max-width: 991px) {
  .cat-list {
    display: none;
  }
}

.cat-list-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cat-list-head .icon {
  color: inherit;
}

.cm-item {
  position: relative;
}
.cm-item > a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-top: 1px solid var(--line);
  font-family: var(--ff-head);
  font-size: 14px;
  color: var(--ink);
}
.cm-item:last-child > a {
  border-radius: 0 0 var(--radius) var(--radius);
}
.cm-item:hover > a {
  background: var(--bg-soft);
  color: var(--brand);
}
.cm-item.is-accent > a {
  color: var(--accent);
  font-weight: 600;
}
.cm-item.has-flyout > a::after {
  content: "›";
  margin-left: auto;
  font-size: 17px;
  line-height: 1;
  color: var(--muted);
}

.cm-badge {
  padding: 1px 5px;
  border-radius: 4px;
  background: #223883;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}
.cm-badge.hot {
  background: var(--accent);
}

.cm-flyout {
  display: none;
  position: absolute;
  left: 100%;
  top: -1px;
  z-index: 60;
  padding: 8px 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}
.cm-flyout.narrow {
  min-width: 260px;
}
.cm-flyout.narrow a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}
.cm-flyout.narrow a:hover {
  background: var(--bg-soft);
  color: var(--brand);
}
.cm-flyout.wide {
  width: 750px;
  padding: 22px;
}
.cm-flyout .mega-img {
  flex: 0 0 160px;
  min-height: 240px;
}

.cm-item:hover > .cm-flyout,
.cm-item:focus-within > .cm-flyout {
  display: block;
}

.hero {
  padding: 26px 0 6px;
}

.hero-grid {
  display: flex;
  gap: var(--gutter);
  align-items: stretch;
}

.hero-banner {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 44px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #eef7f7 0%, #f6fbfb 60%);
}
.hero-banner .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 46%;
}
.hero-banner h1,
.hero-banner h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.15;
  text-wrap: balance;
}
.hero-banner p {
  max-width: 34ch;
  color: var(--muted);
  font-size: 16px;
}
.hero-banner img.hero-photo {
  position: absolute;
  right: 30px;
  z-index: 1;
  width: 48%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: darken;
}

.hero-slides {
  flex: 1;
  min-width: 0;
  display: grid;
  align-items: center;
}

.hero-slide {
  grid-area: 1/1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.hero-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip-path: inset(50%);
  overflow: hidden;
}

.hero-banner.is-slider {
  padding-bottom: 64px;
}
.hero-banner.is-slider .hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-radio:nth-of-type(1):checked ~ .hero-slides .hero-slide:nth-child(1) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(1):checked ~ .hero-dots .hero-dot:nth-child(1) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(1):focus-visible ~ .hero-dots .hero-dot:nth-child(1) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(2):checked ~ .hero-slides .hero-slide:nth-child(2) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(2):checked ~ .hero-dots .hero-dot:nth-child(2) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(2):focus-visible ~ .hero-dots .hero-dot:nth-child(2) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(3):checked ~ .hero-slides .hero-slide:nth-child(3) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(3):checked ~ .hero-dots .hero-dot:nth-child(3) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(3):focus-visible ~ .hero-dots .hero-dot:nth-child(3) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(4):checked ~ .hero-slides .hero-slide:nth-child(4) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(4):checked ~ .hero-dots .hero-dot:nth-child(4) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(4):focus-visible ~ .hero-dots .hero-dot:nth-child(4) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(5):checked ~ .hero-slides .hero-slide:nth-child(5) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(5):checked ~ .hero-dots .hero-dot:nth-child(5) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(5):focus-visible ~ .hero-dots .hero-dot:nth-child(5) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(6):checked ~ .hero-slides .hero-slide:nth-child(6) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(6):checked ~ .hero-dots .hero-dot:nth-child(6) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(6):focus-visible ~ .hero-dots .hero-dot:nth-child(6) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(7):checked ~ .hero-slides .hero-slide:nth-child(7) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(7):checked ~ .hero-dots .hero-dot:nth-child(7) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(7):focus-visible ~ .hero-dots .hero-dot:nth-child(7) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(8):checked ~ .hero-slides .hero-slide:nth-child(8) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(8):checked ~ .hero-dots .hero-dot:nth-child(8) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(8):focus-visible ~ .hero-dots .hero-dot:nth-child(8) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(9):checked ~ .hero-slides .hero-slide:nth-child(9) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(9):checked ~ .hero-dots .hero-dot:nth-child(9) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(9):focus-visible ~ .hero-dots .hero-dot:nth-child(9) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-radio:nth-of-type(10):checked ~ .hero-slides .hero-slide:nth-child(10) {
  opacity: 1;
  visibility: visible;
}

.hero-radio:nth-of-type(10):checked ~ .hero-dots .hero-dot:nth-child(10) {
  background: var(--brand);
  border-color: var(--brand);
  transform: scale(1.15);
}

.hero-radio:nth-of-type(10):focus-visible ~ .hero-dots .hero-dot:nth-child(10) {
  outline: 2px solid var(--brand-dark);
  outline-offset: 3px;
}

.hero-dots {
  position: absolute;
  left: 44px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: 0.15s ease;
}
.hero-dot:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner.is-slider .hero-slide {
    transition: none;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-top: 18px;
  }
  .hero-banner {
    min-height: 300px;
    padding: 34px 30px;
  }
  .hero-banner .hero-copy {
    max-width: 54%;
  }
  .hero-banner img.hero-photo {
    right: 14px;
    width: 44%;
  }
  .hero-banner.is-slider {
    padding-bottom: 56px;
  }
  .hero-dots {
    left: 30px;
    bottom: 22px;
  }
}
@media (max-width: 720px) {
  .hero-banner {
    min-height: 0;
    padding: 26px 22px 22px;
  }
  .hero-banner .hero-copy {
    max-width: 100%;
  }
  .hero-banner p {
    max-width: none;
  }
  .hero-banner img.hero-photo {
    position: static;
    width: 100%;
    max-width: 300px;
    height: auto;
    align-self: center;
    margin-top: 18px;
  }
  .hero-slide {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-banner.is-slider {
    padding-bottom: 48px;
  }
  .hero-dots {
    left: 0;
    right: 0;
    bottom: 18px;
    justify-content: center;
  }
}

/*# sourceMappingURL=hero.css.map */
