/* This article shows the entire localized Backoffice frame at its native ratio. */
.r-fullscreen-hero {
  display: flex;
  min-height: 0;
  flex-direction: column;
  background: #0d234b;
}

.r-fullscreen-hero-img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: min(100svh, 62.5vw);
  object-fit: contain;
  object-position: center;
  background: #0d234b;
}

.r-fullscreen-hero-overlay {
  display: none;
}

.r-fullscreen-hero-inner {
  width: 100%;
  min-height: 0;
  justify-content: flex-start;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Each question has two directly comparable answers. */
.r-article-content h3 {
  margin: 1.5rem 0 0.6rem;
  color: #0d234b;
  font-size: 1.125rem;
  line-height: 1.4;
}

.r-article-content h3 + ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  border: 1px solid #d6dce6;
  border-radius: 12px;
}

.r-article-content h3 + ul li {
  min-width: 0;
  margin: 0;
  padding: 1rem 1.25rem 1.125rem;
  background: #fff;
  color: #18181b;
  line-height: 1.55;
}

.r-article-content h3 + ul li:first-child {
  border-inline-end: 1px solid #d6dce6;
  background: #fff7f2;
}

.r-article-content h3 + ul li strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #9a3700;
  font-size: 0.875rem;
  line-height: 1.4;
}

.r-article-content h3 + ul li:nth-child(2) strong {
  color: #0d234b;
}

@media (max-width: 640px) {
  .r-article-content h3 + ul {
    grid-template-columns: 1fr;
  }

  .r-article-content h3 + ul li:first-child {
    border-inline-end: 0;
    border-bottom: 1px solid #d6dce6;
  }
}
