


.what-index-page,
.what-detail-page,
.what-index-page *,
.what-detail-page * {
  box-sizing: border-box;
}

.what-index-page,
.what-detail-page {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--euroasia-article-text);
  background: #fff;
}

.what-index-container,
.what-detail-container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* Main page */
.what-index-hero {
  padding: 60px 0 36px;
  background: #f1faff;
}

.what-index-hero h1 {
  margin: 0;
  color: #203b48;
  font-size: clamp(44px, 4.8vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.what-index-listing {
  padding: 54px 0 88px;
  background: #fff;
}

.what-index-stack {
  display: grid;
  gap: 16px;
}

.what-index-card {
  padding: 21px 24px 22px;
  border: 1px solid var(--euroasia-border);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(27,71,91,.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.what-index-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.what-index-title-link {
  color: var(--euroasia-accent);
  font-size: 24px;
  font-weight: 550;
  line-height: 1.18;
  letter-spacing: -.02em;
  text-decoration: none;
}

.what-index-title-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.what-index-read-more {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(17,147,212,.20);
  border-radius: 999px;
  background: rgba(17,147,212,.06);
  color: var(--euroasia-accent);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.what-index-read-more span {
  font-size: 14px;
  line-height: 1;
}

.what-index-read-more:hover {
  background: var(--euroasia-accent);
  border-color: var(--euroasia-accent);
  color: #fff;
}

.what-index-excerpt {
  max-width: 820px;
  margin: 11px 0 0;
  color: var(--euroasia-text);
  font-size: 12px;
  line-height: 1.65;
}

/* Dedicated pages */
.what-detail-hero {
  padding: 29px 0 34px;
  background: var(--euroasia-accent);
}

.what-detail-back {
  display: inline-flex;
  margin-bottom: 19px;
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 650;
  text-decoration: none;
}

.what-detail-back:hover {
  color: #fff;
}

.what-detail-hero h1 {
  max-width: 970px;
  margin: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -.03em;
}

.what-detail-content {
  padding: 48px 0 82px;
  background: #fff;
}

.what-detail-card {
  padding: 20px 34px 20px;
  border: 1px solid var(--euroasia-border);
  border-radius: 16px;
  background: #fff;
}

.what-detail-card p,
.what-detail-card li {
  color: var(--euroasia-article-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
}

.what-detail-card p {
  margin: 0 0 19px;
}

.what-detail-card ul {
  margin: 2px 0 24px 22px;
  padding: 0;
}

.what-detail-card li {
  margin: 5px 0;
}

.what-detail-image {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 27px 0 30px;
}

.what-detail-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (hover:hover) {
  .what-index-card:hover {
    transform: translateY(-1px);
    border-color: rgba(17,147,212,.18);
    box-shadow: 0 13px 30px rgba(27,71,91,.07);
  }
}

@media (max-width: 680px) {
  .what-index-container,
  .what-detail-container {
    width: calc(100% - 28px);
  }

  .what-index-hero {
    padding: 43px 0 29px;
  }

  .what-index-hero h1 {
    font-size: 40px;
  }

  .what-index-card {
    padding: 18px 18px 19px;
  }

  .what-index-top {
    align-items: flex-start;
    gap: 12px;
  }

  .what-index-title-link {
    font-size: 21px;
  }

  .what-index-read-more {
    min-height: 32px;
    padding: 0 11px;
    font-size: 8px;
  }

  .what-detail-card {
    padding: 24px 20px 29px;
  }

  .what-detail-hero h1 {
    font-size: 28px;
  }
}


/* Match overview page title to article title styling */
.what-index-hero {
  padding: 29px 0 34px !important;
  background: var(--euroasia-accent) !important;
}

.what-index-hero h1 {
  margin: 0 !important;
  color: var(--euroasia-white) !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1.16 !important;
  letter-spacing: -.03em !important;
}

@media (max-width: 680px) {
  .what-index-hero h1 {
    font-size: 28px !important;
  }
}


.what-detail-card {
  text-align: left;
}

.what-detail-card p,
.what-detail-card h3,
.what-detail-card h4,
.what-detail-card ul,
.what-detail-card ol {
  max-width: 900px;
}

.what-detail-image {
  justify-content: flex-start !important;
  max-width: 900px;
}

.what-detail-image img {
  margin-left: 0 !important;
  margin-right: 0 !important;
  object-position: left center;
}


/* Mobile overview card supporting copy */
@media (max-width: 680px) {
  .what-index-excerpt {
    font-size: 15px !important;
    line-height: 1.68 !important;
  }
}
