/* Editorial-specific list and reading-column styles for Writing and News.
   Shared page shell styles live in content-pages.css; shared chrome and hero art live in atlascrew.css. */

.reading-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.editorial-hero-label {
  font-variation-settings:
    "wght" 700,
    "MONO" 1,
    "CASL" 0,
    "CRSV" 0.5,
    "slnt" 0;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 18px;
}

.editorial-hero-title {
  font-variation-settings:
    "wght" 400,
    "MONO" 0,
    "CASL" 0.2,
    "CRSV" 0.5,
    "slnt" 0;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 20px;
}

.editorial-hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-variation-settings:
    "wght" 400,
    "MONO" 0,
    "CASL" 0.6,
    "CRSV" 0.5,
    "slnt" 0;
  max-width: 640px;
}

.editorial-hero-action {
  margin-top: 24px;
}

.writing-list {
  padding: 24px 0 64px;
}

.article-entry {
  display: block;
  position: relative;
  color: inherit;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
.article-entry:first-of-type {
  border-top: 1px solid var(--border-strong);
}
.article-entry:last-of-type {
  border-bottom: 1px solid var(--border);
}
.article-entry-eyebrow {
  font-variation-settings:
    "wght" 700,
    "MONO" 1,
    "CASL" 0,
    "CRSV" 0.5,
    "slnt" 0;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 12px;
}

.article-entry-title {
  font-variation-settings:
    "wght" 500,
    "MONO" 0,
    "CASL" 0.2,
    "CRSV" 0.5,
    "slnt" 0;
  font-size: 26px;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.article-entry-title a {
  color: inherit;
  text-decoration: none;
}
.article-entry-title a:hover {
  color: var(--warm);
}

.article-entry-excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 14px;
  max-width: 640px;
}

.article-entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-variation-settings:
    "wght" 500,
    "MONO" 1,
    "CASL" 0,
    "CRSV" 0.5,
    "slnt" 0;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}
.article-entry-meta .sep {
  color: var(--border-strong);
}

.news-list {
  padding: 16px 0 64px;
}

.news-entry {
  display: grid;
  position: relative;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.news-entry:first-of-type {
  border-top: 1px solid var(--border-strong);
}
.news-entry:last-of-type {
  border-bottom: 1px solid var(--border);
}
.news-date {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  padding-top: 4px;
  text-transform: uppercase;
}

.news-content h2 a {
  text-decoration: none;
  color: inherit;
}

.news-content h2 {
  font-variation-settings:
    "wght" 500,
    "MONO" 0,
    "CASL" 0.2,
    "CRSV" 0.5,
    "slnt" 0;
  font-size: 19px;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.news-content h2 a:hover {
  color: var(--warm);
}

.news-link-source {
  display: inline-block;
  margin-left: 8px;
  transform: translateY(-2px);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--warm);
}

.news-content p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 560px;
}

.news-content .mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.88em;
  color: var(--warm);
}

@media (max-width: 768px) {
  .reading-container {
    padding: 0 24px;
  }
  .editorial-hero-desc {
    font-size: 15px;
  }
  .article-entry {
    padding: 28px 0;
  }
  .article-entry-title {
    font-size: 21px;
  }
  .article-entry-excerpt {
    font-size: 14px;
  }
  .news-entry {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
  .news-date {
    padding-top: 0;
  }
  .news-content h2 {
    font-size: 17px;
  }
}
