/* ============================================================
   SIMPLE PAGE BODY
============================================================ */
.simple-body {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.simple-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 52rem; /* narrower for long-form reading */
}

.simple-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   CONTENT BLOCKS
============================================================ */
.simple-block {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(26,42,34,0.1);
}
.simple-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.simple-block h2 {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--racing);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.simple-block p {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(26,42,34,0.85);
  margin-bottom: 1rem;
}
.simple-block p:last-child { margin-bottom: 0; }

.simple-block a {
  color: var(--tom-thumb);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.15s;
}
.simple-block a:hover { opacity: 0.7; }

.simple-block strong {
  font-weight: 600;
  color: var(--racing);
}

.simple-meta {
  font-family: var(--font-dm);
  font-size: 0.875rem;
  color: rgba(26,42,34,0.5);
  margin-bottom: 0 !important;
}

/* ============================================================
   LISTS
============================================================ */
.simple-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.75rem;
}
.simple-list li {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(26,42,34,0.85);
  padding-left: 1.25rem;
  position: relative;
}
.simple-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--finlandia);
}
.simple-list li a {
  color: var(--tom-thumb);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.15s;
}
.simple-list li a:hover { opacity: 0.7; }
.simple-list li strong {
  font-weight: 600;
  color: var(--racing);
}

/* ============================================================
   NOTE BLOCK (italic editorial note)
============================================================ */
.simple-block--note {
  background: var(--white-rock);
  border-radius: 0.375rem;
  padding: 1.25rem 1.5rem !important;
  border: none;
  margin-top: 1rem;
}
.simple-block--note p {
  font-size: 1rem;
  color: rgba(26,42,34,0.65);
}

/* ============================================================
   URGENT BLOCK (crisis page)
============================================================ */
.simple-block--urgent {
  background: rgba(204,107,49,0.08);
  border-left: 3px solid var(--tuscany);
  border-radius: 0 0.375rem 0.375rem 0;
  padding: 1.5rem 1.75rem;
  border-bottom: none;
  margin-bottom: 2.5rem;
}
.simple-block--urgent h2 {
  color: var(--tuscany);
}
.simple-block--urgent p {
  color: rgba(26,42,34,0.9);
}

/* ============================================================
   CRISIS RESOURCE ITEMS
============================================================ */
.resource-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}

.resource-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26,42,34,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.resource-item:last-child { border-bottom: none; }
.resource-item:first-child { padding-top: 0; }

.resource-item__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--racing);
  line-height: 1.2;
}

.resource-item__detail {
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  color: var(--tom-thumb);
  font-weight: 500;
}

.resource-item__desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26,42,34,0.75);
}

.resource-item__link {
  font-family: var(--font-dm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tom-thumb);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: opacity 0.15s;
  margin-top: 0.125rem;
}
.resource-item__link:hover { opacity: 0.7; }

/* Crisis hero override */
.page-hero--crisis .page-hero__subhead strong {
  color: var(--ecru);
  font-weight: 700;
}

/* ============================================================
   RESPONSIVE — 48rem (768px)
============================================================ */
@media (max-width: 48rem) {
  .simple-body { padding-top: 2.5rem; padding-bottom: 3rem; }
  .simple-block h2 { font-size: 1.375rem; }
  .simple-block--urgent { padding: 1.25rem; }
}
