/* Full FAQ accordion with the complete legacy question set. */
.kv2-site .kv2-faq-showcase {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  margin-top: 20px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(237, 216, 194, .94);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 222, 181, .46), transparent 27%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(255, 249, 241, .94));
  box-shadow: 0 18px 46px rgba(31, 45, 63, .055);
  scroll-margin-top: 82px;
}

.kv2-site .kv2-faq-header {
  position: relative;
  min-height: 390px;
  padding: 24px 20px;
  overflow: hidden;
  border-radius: 21px;
  background: linear-gradient(155deg, #fff1dc, #fffaf3);
}

.kv2-site .kv2-faq-header .kv2-eyebrow {
  color: var(--kuzya-orange-strong);
}

.kv2-site .kv2-faq-header .kv2-heading {
  margin-top: 5px !important;
  font-size: 31px;
  line-height: 1.05;
}

.kv2-site .kv2-faq-mascot {
  position: absolute;
  right: 22px;
  bottom: -43px;
  width: 205px;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 11px 17px rgba(22, 38, 60, .09));
}

.kv2-site .kv2-faq-list {
  display: grid;
  align-content: start;
  gap: 9px;
}

.kv2-site .kv2-faq-item {
  overflow: hidden;
  border: 1px solid rgba(237, 216, 194, .95);
  border-radius: 17px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 20px rgba(23, 38, 59, .035);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.kv2-site .kv2-faq-item[open] {
  border-color: rgba(255, 122, 30, .48);
  background: linear-gradient(180deg, #fff, #fffaf4);
  box-shadow: 0 14px 28px rgba(23, 38, 59, .07);
  transform: translateX(-3px);
}

.kv2-site .kv2-faq-item summary {
  display: grid;
  min-height: 54px;
  grid-template-columns: 34px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  padding: 10px 13px;
  color: var(--kuzya-navy-deep);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.kv2-site .kv2-faq-item summary::-webkit-details-marker {
  display: none;
}

.kv2-site .kv2-faq-number {
  display: inline-flex;
  width: 31px;
  height: 31px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff4e7;
  color: var(--kuzya-orange-strong);
  font-size: 9px;
  font-weight: 850;
}

.kv2-site .kv2-faq-item[open] .kv2-faq-number {
  background: var(--kuzya-orange-strong);
  color: #fff;
}

.kv2-site .kv2-faq-item summary > i {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff7ed;
  transition: background .22s ease, transform .22s ease;
}

.kv2-site .kv2-faq-item summary > i::before,
.kv2-site .kv2-faq-item summary > i::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--kuzya-orange-strong);
  content: "";
}

.kv2-site .kv2-faq-item summary > i::after {
  transform: rotate(90deg);
  transition: transform .22s ease;
}

.kv2-site .kv2-faq-item[open] summary > i {
  background: #ffe2bd;
  transform: rotate(180deg);
}

.kv2-site .kv2-faq-item[open] summary > i::after {
  transform: rotate(0deg);
}

.kv2-site .kv2-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 55px 0 59px;
  color: var(--kuzya-gray);
  font-size: 10px;
  line-height: 1.5;
  opacity: 0;
  transition: grid-template-rows .28s ease, padding-bottom .28s ease, opacity .2s ease;
}

.kv2-site .kv2-faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.kv2-site .kv2-faq-answer p {
  margin: 0 !important;
}

.kv2-site .kv2-faq-item[open] .kv2-faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 15px;
  opacity: 1;
}

@media (min-width: 701px) and (max-width: 1199px) {
  .kv2-site .kv2-faq-showcase {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .kv2-site .kv2-faq-header {
    min-height: 420px;
  }

  .kv2-site .kv2-faq-header .kv2-heading {
    font-size: 28px;
  }

  .kv2-site .kv2-faq-mascot {
    right: 6px;
    width: 195px;
  }
}

@media (max-width: 700px) {
  .kv2-site .kv2-faq-showcase {
    display: block;
    margin-top: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .kv2-site .kv2-faq-header {
    min-height: 128px;
    padding: 18px 125px 18px 18px;
    border-radius: 17px;
  }

  .kv2-site .kv2-faq-header .kv2-heading {
    font-size: 26px;
  }

  .kv2-site .kv2-faq-mascot {
    right: 5px;
    bottom: -35px;
    width: 130px;
    height: 158px;
  }

  .kv2-site .kv2-faq-list {
    gap: 7px;
    margin-top: 12px;
  }

  .kv2-site .kv2-faq-item[open] {
    transform: none;
  }

  .kv2-site .kv2-faq-item summary {
    min-height: 56px;
    grid-template-columns: 31px minmax(0, 1fr) 28px;
    gap: 9px;
    padding: 10px;
    font-size: 11px;
  }

  .kv2-site .kv2-faq-answer {
    padding-right: 42px;
    padding-left: 50px;
    font-size: 10px;
  }
}
