/* =========================================================
   RSKO FAQ
========================================================= */

.rsko-faq-page {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}


/* =========================================================
   HERO
========================================================= */

.rsko-faq-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 78px 24px 82px;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(139, 209, 75, .68),
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 35%,
      rgba(120, 207, 190, .34),
      transparent 38%
    ),
    linear-gradient(
      110deg,
      #24ab91 0%,
      #32b49c 52%,
      #67c7ad 100%
    );
}

.rsko-faq-hero__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}


/* BADGE */

.rsko-faq-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 42px;
  padding: 0 18px;

  border-radius: 999px;

  background: rgba(255,255,255,.17);
  border: 1px solid rgba(255,255,255,.18);

  color: #fff;

  font-size: 15px;
  line-height: 1;
  font-weight: 700;
}

.rsko-faq-badge__icon {
  width: 21px;
  height: 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fff;
  color: #159682;

  font-size: 14px;
  font-weight: 800;
}


/* TITLE */

.rsko-faq-title {
  max-width: 1000px;
  margin: 28px auto 18px;

  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.08;

  font-weight: 800;
  letter-spacing: -0.035em;

  color: #07111f;
}


/* SUBTITLE */

.rsko-faq-subtitle {
  max-width: 780px;
  margin: 0 auto;

  font-size: 18px;
  line-height: 1.65;

  font-weight: 400;

  color: rgba(255,255,255,.96);
}


/* =========================================================
   CONTENT
========================================================= */

.rsko-faq-content {
  padding: 76px 24px 100px;
  background: #f8fafc;
}

.rsko-faq-container {
  width: min(1020px, 100%);
  margin: 0 auto;
}


/* =========================================================
   SEARCH
========================================================= */

.rsko-faq-search {
  width: 100%;
  min-height: 68px;

  margin: 0 0 32px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  gap: 16px;

  background: #fff;

  border: 1px solid #dce5ee;
  border-radius: 999px;

  box-shadow:
    0 12px 30px rgba(15, 23, 42, .07);
}

.rsko-faq-search__icon {
  flex: 0 0 auto;

  font-size: 31px;
  line-height: 1;

  color: #8297b4;
}

.rsko-faq-search__input {
  flex: 1 1 auto;

  width: 100%;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;

  font-family: "Poppins", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;

  color: #334155;
}

.rsko-faq-search__input::placeholder {
  color: #95a7c2;
}


/* =========================================================
   FAQ LIST
========================================================= */

.rsko-faq-list {
  display: grid;
  gap: 14px;
}


/* CARD */

.rsko-faq-card {
  overflow: hidden;

  background: #fff;

  border: 1px solid #dbe5ee;
  border-radius: 18px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.rsko-faq-card:hover {
  border-color: #bcded6;

  box-shadow:
    0 10px 26px rgba(15, 23, 42, .06);
}


/* =========================================================
   QUESTION
========================================================= */

.rsko-faq-question {
  width: 100%;
  min-height: 88px;

  padding: 18px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  background: transparent;
  border: 0;

  cursor: pointer;

  text-align: left;
}

.rsko-faq-question__left {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 22px;
}

.rsko-faq-question__icon {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e7f8f5;

  color: #078775;

  font-size: 17px;
  font-weight: 800;
}

.rsko-faq-question__text {
  font-size: 17px;
  line-height: 1.45;

  font-weight: 700;

  color: #111827;
}

.rsko-faq-question__arrow {
  flex: 0 0 auto;

  font-size: 25px;
  line-height: 1;

  color: #8a9cb4;

  transition: transform .25s ease;
}


/* OPEN */

.rsko-faq-card.is-open
.rsko-faq-question__arrow {
  transform: rotate(180deg);
}


/* =========================================================
   ANSWER
========================================================= */

.rsko-faq-answer {
  border-top: 1px solid #edf1f5;
}

.rsko-faq-answer__inner {
  padding:
    0 76px 26px 94px;

  font-size: 15.5px;
  line-height: 1.75;

  color: #52627a;
}

.rsko-faq-answer__inner p {
  margin: 18px 0 0;
}

.rsko-faq-answer__inner p:first-child {
  margin-top: 20px;
}

.rsko-faq-answer__inner a {
  color: #079681;
  font-weight: 600;
}


/* =========================================================
   EMPTY
========================================================= */

.rsko-faq-empty {
  padding: 36px 20px;

  text-align: center;

  font-size: 16px;

  color: #64748b;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .rsko-faq-hero {
    padding: 54px 18px 58px;
  }

  .rsko-faq-hero__inner {
    width: 100%;
  }

  .rsko-faq-title {
    margin-top: 20px;
    font-size: 34px;
  }

  .rsko-faq-subtitle {
    font-size: 15px;
  }

  .rsko-faq-content {
    padding: 42px 16px 70px;
  }

  .rsko-faq-search {
    min-height: 60px;
    padding: 0 18px;
  }

  .rsko-faq-search__input {
    font-size: 14px;
  }

  .rsko-faq-question {
    min-height: 76px;

    padding: 15px 17px;

    gap: 14px;
  }

  .rsko-faq-question__left {
    gap: 13px;
  }

  .rsko-faq-question__icon {
    flex-basis: 38px;

    width: 38px;
    height: 38px;

    font-size: 14px;
  }

  .rsko-faq-question__text {
    font-size: 14px;
  }

  .rsko-faq-answer__inner {
    padding:
      0 18px 22px 68px;

    font-size: 14px;
  }

}