.hos-faq {
  padding: 64px 0;
}

@media (max-width: 900px) {
  .hos-faq {
    padding: 48px 0;
  }
  
}
.hos-faq__head {
  display: block;
  margin-bottom: 32px;
}

.hos-faq__heading {
  margin: 0;
  margin-bottom: 10px;
}
.hos-faq__label {
  display: inline-block;
  color: #0f1115;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}
.hos-faq__lead {
  color: #697289;
  font-size: 16px;
  max-width: 560px;
}

.hos-faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 992px) {
  .hos-faq__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.hos-faq__intro {
  position: sticky;
  top: var(--faq-sticky-top, 160px);
  align-self: start;
}
.hos-faq__intro-inner {
  position: relative;
  width: 100%;
  transition: transform 0.28s ease, opacity 0.28s ease;
  will-change: transform, opacity;
  margin-bottom: 32px;
}
/* Subtelne wejście przy przejściu w sticky – jak w process-timeline */
.hos-faq:not(.is-intro-sticky) .hos-faq__intro-inner {
  transform: translateY(8px);
  opacity: 0.96;
}
.hos-faq.is-intro-sticky .hos-faq__intro-inner {
  transform: translateY(0);
  opacity: 1;
}

.hos-faq__card {
  background: #f9fafb;
  border-radius: 32px;
  padding: 32px;
}
.hos-faq__card-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #070d0b;
  margin-bottom: 12px;
}
.hos-faq__card-lead {
  margin-bottom: 24px;
  color: #697289;
  font-size: 14px;
}

/* List (reuse m-faq classes where możliwe) */
.hos-faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.hos-faq__list .m-faq__item {
  border-bottom: 1px solid rgba(56, 54, 18, 0.1);
}
.hos-faq__list .m-faq__item:last-child {
  border-bottom: none;
}
.hos-faq__list .m-faq__item-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 32px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .hos-faq__list .m-faq__item-header {
    padding: 24px 24px;
  }
}
.hos-faq__list .m-faq__item-title {
  flex: 1 1 auto;
  margin: 0;
  color: #070d0b;
  font-size: 16px;
  font-weight: 500;
}
.hos-faq__list .m-faq__item svg {
  transition: transform 0.25s ease;
  min-width: 16px;
}
.hos-faq__list .m-faq__item.is-active svg {
  transform: rotate(180deg);
}
.hos-faq__list .m-faq__item-text p {
  padding: 0px 32px;
  color: #39413f;
  font-size: 14px;
}

.hos-faq__list .m-faq__item-text ul {
  padding: 0px 62px;
  color: #39413f;
  font-size: 14px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hos-faq__list .m-faq__item-text p a {
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s;
  text-transform: none;
  text-align: center;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 360px;
  box-shadow: 0px 4px 20px 0px rgba(255, 102, 0, 0.2);
  background: white;
  border: 1px solid #e2e7ee;
  color: #070d0b;
  box-shadow: none;
  padding: 7px 18px;
  margin-top: 16px;
}

/* Plus / minus zamiast chevrona */
.hos-faq__pm {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-top: 2px;
}
.hos-faq__pm:before,
.hos-faq__pm:after {
  content: "";
  position: absolute;
  background: #070d0b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hos-faq__pm:before {
  width: 17px;
  height: 1px;
}
.hos-faq__pm:after {
  width: 1px;
  height: 17px;
  transition: opacity 0.2s ease;
}
.m-faq__item.is-active .hos-faq__pm:after {
  opacity: 0;
}

/* When card is moved under list on mobile */
@media (max-width: 992px) {
  .hos-faq--card-after .hos-faq__card {
    margin-top: 24px;
  }
}
