@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Source+Serif+Pro:wght@400;600;700&display=swap');

:root {
  --bg-paper: #F9F7F2;
  --ink-black: #1A1A1A;
  --ink-grey: #4A4A4A;
  --border-sep: #D1D1D1;
  --accent-red: #A52A2A; /* Traditional editorial red */
  --font-serif: 'Source Serif Pro', serif;
  --font-header: 'Playfair Display', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-paper);
  color: var(--ink-black);
  font-family: var(--font-serif);
  line-height: 1.6;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  border-left: 1px solid var(--border-sep);
  border-right: 1px solid var(--border-sep);
  background: white;
  min-height: 100vh;
}

/* Header/Masthead */
header {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 4px double var(--ink-black);
  margin-bottom: 2rem;
}

.masthead h1 {
  font-family: var(--font-header);
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}

.masthead-meta {
  border-top: 1px solid var(--ink-black);
  border-bottom: 1px solid var(--ink-black);
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Editorial Summary (AI Summary) */
.editorial-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-sep);
  margin-bottom: 2rem;
}

.summary-box {
  background: #fdfdfd;
  padding: 2rem;
  border: 1px solid var(--border-sep);
  position: relative;
}

.summary-box::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--ink-black);
  margin-top: 1.5rem;
}

.summary-box h2 {
  font-family: var(--font-header);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.2;
}

.summary-box p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-black);
  text-align: justify;
}

/* News List - Columnar Style */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.main-content {
  border-right: 1px solid var(--border-sep);
  padding-right: 2rem;
}

.news-row {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-sep);
}

.news-row:last-child {
  border-bottom: none;
}

.source-tag {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-red);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.news-row h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.news-row p {
  font-size: 1rem;
  color: var(--ink-grey);
  margin-bottom: 1rem;
  text-align: justify;
}

.read-more {
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.sidebar h4 {
  font-family: var(--font-header);
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink-black);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.sidebar-item {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--border-sep);
  font-size: 0.8rem;
  color: var(--ink-grey);
}

@media (max-width: 850px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .main-content {
    border-right: none;
    padding-right: 0;
  }
  .masthead h1 {
    font-size: 2.5rem;
  }
}
