.answers-page {
  background: #131f28;
  color: #fff;
}

.answers-page .box-container {
  overflow-x: hidden;
}

.answers-hero {
  background: #1d262f;
  padding: 200px 0 150px;
}

.answers-hero .container {
  position: relative;
}

.answers-kicker {
  color: #ff9800;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.answers-kicker i {
  margin-right: 7px;
}

.answers-hero h1 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.13;
  margin: 0 0 20px;
}

.answers-hero p {
  color: #eaeaea;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
  max-width: 980px;
}

.answers-main {
  background: #131f28;
  padding: 90px 0;
}

.answers-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.answer-card {
  background: #1d262f;
  border: 0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
}

.answer-card h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 13px;
}

.answer-card p {
  color: rgba(255,255,255,.78);
  flex: 1;
  line-height: 1.7;
  margin-bottom: 22px;
}

.answer-card .btn {
  align-self: flex-start;
}

.answer-breadcrumbs {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-bottom: 28px;
}

.answer-breadcrumbs a {
  color: #00cfc0;
  font-weight: 700;
}

.answer-layout {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 820px) minmax(240px, 310px);
  justify-content: center;
}

.answer-article {
  background: #1d262f;
  border: 0;
  border-radius: 8px;
  min-width: 0;
  padding: 52px;
}

.answer-direct {
  background: #006c6e;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 36px;
  padding: 22px 24px;
}

.answer-article h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 42px 0 16px;
}

.answer-article > h2:first-child {
  margin-top: 0;
}

.answer-direct + h2 {
  margin-top: 0;
}

.answer-article h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 28px 0 11px;
}

.answer-article p,
.answer-article li {
  color: rgba(255,255,255,.8);
  font-size: 16px;
  line-height: 1.8;
}

.answer-article ul,
.answer-article ol {
  margin-bottom: 24px;
}

.answer-article a:not(.btn) {
  color: #00cfc0;
  font-weight: 700;
}

.answer-faq {
  margin-top: 46px;
  padding-top: 4px;
}

.answer-faq-item {
  background: #111b23;
  border: 0;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 20px 0;
}

.answer-faq-item h3 {
  margin: 0;
  padding: 0 20px 8px;
}

.answer-faq-item p {
  margin-bottom: 0;
  padding: 0 20px;
}

.answer-author {
  align-items: flex-start;
  background: #111b23;
  border-radius: 8px;
  color: #fff;
  display: flex;
  gap: 18px;
  margin-top: 42px;
  padding: 25px;
}

.answer-author img {
  background: #fff;
  border: 0;
  border-radius: 8px;
  flex: 0 0 112px;
  height: 112px;
  object-fit: contain;
  padding: 8px;
  width: 112px;
}

.answer-author strong,
.answer-author span {
  display: block;
}

.answer-author strong {
  color: #fff;
  font-size: 17px;
  margin-bottom: 7px;
}

.answer-author span,
.answer-author a {
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.answer-sidebar {
  align-self: start;
  position: sticky;
  top: 110px;
}

.answer-side-card {
  background: #1d262f;
  border: 0;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 22px;
  padding: 27px;
}

.answer-side-card h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.answer-side-card p,
.answer-side-card li {
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.answer-side-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.answer-side-card li {
  padding: 9px 0;
}

.answer-side-card a:not(.btn) {
  color: #fff;
  font-weight: 700;
}

.answer-source-note {
  background: #111b23;
  border: 0;
  border-radius: 8px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  padding: 18px 20px;
}

.answer-source-note li {
  font-size: 14px;
}

@media (max-width: 991px) {
  .answers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .answer-layout {
    grid-template-columns: 1fr;
  }

  .answer-sidebar {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .answer-side-card {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .answers-hero {
    padding: 155px 0 85px;
  }

  .answers-hero h1 {
    font-size: 38px;
  }

  .answers-hero p {
    font-size: 18px;
  }

  .answers-main {
    padding: 65px 0;
  }

  .answers-grid,
  .answer-sidebar {
    grid-template-columns: 1fr;
  }

  .answer-card,
  .answer-article,
  .answer-side-card {
    padding: 24px;
  }

  .answer-article h2 {
    font-size: 24px;
  }

  .answer-author {
    display: block;
  }

  .answer-author img {
    height: 96px;
    margin-bottom: 16px;
    width: 96px;
  }
}
