.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--water-dark);
}

.article-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.article-chips li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
  color: var(--water-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.field-note {
  display: grid;
  grid-template-columns: minmax(130px, 0.32fr) 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 42px 0;
  padding: 22px;
  border: 1px solid rgba(31, 111, 120, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 111, 120, 0.09), transparent 52%),
    #f7f8f1;
}

.field-note h2,
.field-note p {
  margin: 0;
}

.field-note h2 {
  font-size: 1.12rem;
  line-height: 1.1;
}

.field-note p {
  color: var(--muted);
}

.field-note a {
  justify-self: end;
  min-width: 170px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--water-dark);
  color: #fff;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.article-content h1 {
  font-size: 1.9rem;
  line-height: 1.15;
  margin: 0 0 24px;
}

.article-content h3 {
  margin: 32px 0 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--sun);
  background: var(--paper);
  color: var(--muted);
}

.related-reading h2 {
  margin: 0 0 18px;
  font-size: 1.65rem;
  line-height: 1.15;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.related-grid a {
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.related-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .field-note,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .field-note a {
    justify-self: stretch;
  }
}

.article-content ol {
  margin: 20px 0 26px 24px;
  padding: 0;
}

.article-content ol li,
.article-content ul li {
  padding-left: 4px;
  margin-bottom: 8px;
}

.article-content h2 + p,
.article-content h3 + p {
  margin-top: 0;
}

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


