@charset "UTF-8";

.post-content-extras {
  margin-top: 0.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
}

.post-faq-section,
.post-guides-section {
  padding-top: 2rem;
  border-top: 1px solid rgba(23, 32, 33, 0.08);
}

.post-guides-section {
  margin-top: 2rem;
}

.post-extra-heading {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.post-extra-heading-icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 2.25rem;
  place-items: center;
  border-radius: 0.5rem;
  background: #eaf8fb;
  color: #1685a5;
}

.post-extra-heading-icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.post-extra-heading h2 {
  margin: 0;
  color: #172021;
  font-size: 1.125rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.7;
}

.post-faq-list {
  border-top: 1px solid #e4eaeb;
  border-bottom: 1px solid #e4eaeb;
}

.post-faq-item + .post-faq-item {
  border-top: 1px solid #e4eaeb;
}

.post-faq-item summary {
  position: relative;
  display: flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
  color: #283234;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.8;
  list-style: none;
  cursor: pointer;
}

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

.post-faq-item summary:focus-visible {
  color: #1685a5;
  outline: 2px solid rgba(41, 177, 216, 0.35);
  outline-offset: 0.25rem;
}

.post-faq-toggle-icon {
  position: relative;
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 1.75rem;
  border-radius: 0.4375rem;
  background: #29b1d8;
  color: #fff;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.post-faq-toggle-icon::before,
.post-faq-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.post-faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.18s ease;
}

.post-faq-item[open] .post-faq-toggle-icon {
  background: #aebbc0;
}

.post-faq-item[open] .post-faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.post-faq-answer {
  padding: 0 0 1.25rem;
  color: #667174;
  font-size: 0.875rem;
  line-height: 2;
}

.post-faq-answer p {
  margin: 0;
}

.post-faq-answer p + p {
  margin-top: 0.625rem;
}

.post-guide-list {
  display: grid;
  gap: 0.75rem;
}

.post-guide-card {
  --guide-accent: #1685a5;
  --guide-background: #eaf8fb;
  --guide-border: #a6dce8;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--guide-border);
  border-right: 4px solid var(--guide-accent);
  border-radius: 0.5rem;
  background: var(--guide-background);
  color: #344043;
}

.post-guide-card--warning {
  --guide-accent: #a66b00;
  --guide-background: #fff8df;
  --guide-border: #efd58b;
}

.post-guide-card--danger {
  --guide-accent: #b4233d;
  --guide-background: #fff0f3;
  --guide-border: #efadba;
}

.post-guide-card--success {
  --guide-accent: #18794e;
  --guide-background: #edfaf4;
  --guide-border: #a9dfc8;
}

.post-guide-card--neutral {
  --guide-accent: #59676a;
  --guide-background: #f2f5f5;
  --guide-border: #ccd6d8;
}

.post-guide-card--accent {
  --guide-accent: #6b4bc3;
  --guide-background: #f5f1ff;
  --guide-border: #cfc2f3;
}

.post-guide-card-icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--guide-accent);
}

.post-guide-card-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.post-guide-card-copy {
  min-width: 0;
}

.post-guide-card-copy h3 {
  margin: 0 0 0.1875rem;
  color: var(--guide-accent);
  font-size: 0.9375rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.8;
}

.post-guide-card-copy div,
.post-guide-card-copy p {
  margin: 0;
  color: #3f4b4e;
  font-size: 0.8125rem;
  line-height: 2;
}

.post-guide-card-copy p + p {
  margin-top: 0.5rem;
}

.post-guide-card-copy a {
  color: var(--guide-accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.post-guide-card-copy strong {
  color: #263235;
  font-weight: 850;
}

.post-guide-card-copy ul,
.post-guide-card-copy ol {
  margin: 0.5rem 1.25rem 0 0;
  padding: 0;
  text-align: right;
}

.post-guide-card-copy ul {
  list-style: disc;
}

.post-guide-card-copy ol {
  list-style: decimal;
}

.post-guide-card-copy li + li {
  margin-top: 0.25rem;
}

.post-guide-card-copy blockquote {
  margin: 0.625rem 0 0;
  padding: 0.25rem 0.75rem 0.25rem 0;
  border-right: 3px solid var(--guide-accent);
  color: #4c595c;
}

@media (min-width: 62rem) {
  .post-content-extras {
    padding-bottom: 2rem;
  }
}

@media (max-width: 61.9375rem) {
  .post-content-extras {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (max-width: 29.9375rem) {
  .post-faq-section,
  .post-guides-section {
    padding-top: 1.5rem;
  }

  .post-guides-section {
    margin-top: 1.5rem;
  }

  .post-extra-heading h2 {
    font-size: 1rem;
  }

  .post-faq-item summary {
    min-height: 3.375rem;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.8125rem;
  }

  .post-faq-answer {
    padding-bottom: 1rem;
    font-size: 0.75rem;
  }

  .post-guide-card {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    gap: 0.625rem;
    padding: 0.875rem;
  }

  .post-guide-card-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .post-guide-card-copy h3 {
    font-size: 0.8125rem;
  }

  .post-guide-card-copy div,
  .post-guide-card-copy p {
    font-size: 0.75rem;
  }
}
