@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@400;600;700&display=swap');

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

body {
  font-family: 'Libre Baskerville', Georgia, serif;
  background: #f7f4ef;
  color: #1a1a1a;
  line-height: 1.72;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-content-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Breaking bar ── */
.breaking-bar {
  background: #b71c1c;
  color: #fff;
  text-align: center;
  padding: 8px 14px;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* ── Header ── */
.site-header {
  background: #1b1b1b;
  border-bottom: 3px solid #c9a84c;
}

.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  border-radius: 4px;
}

.brand-text {
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: 0.5px;
}

.brand-tagline {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 22px 14px;
  transition: color 0.2s;
}

nav a:hover, nav a.active {
  color: #c9a84c;
}

/* ── Hero ── */
.hero {
  position: relative;
  background: #111;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 0 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.hero-overlay .eyebrow {
  color: #c9a84c;
  margin-bottom: 12px;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  max-width: 800px;
}

.hero-overlay .subhead {
  color: #ccc;
  font-size: 18px;
  max-width: 700px;
  margin-top: 12px;
}

.hero-overlay .read-more {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: #c9a84c;
  color: #111;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s;
}

.hero-overlay .read-more:hover {
  background: #d4b65e;
}

/* ── Eyebrow ── */
.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  color: #b71c1c;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}

/* ── Home grid ── */
.section-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1a1a;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9a84c;
  margin: 36px 0 22px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}

.story-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.story-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-card-body {
  padding: 20px;
}

.story-card-body h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.story-card-body h3 a {
  color: #1a1a1a;
  text-decoration: none;
}

.story-card-body h3 a:hover {
  color: #b71c1c;
}

.story-card-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.story-card-body .card-meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* ── Sidebar ticker ── */
.latest-bar {
  background: #fff;
  border: 1px solid #e0dcd4;
  border-radius: 4px;
  padding: 22px;
  margin: 36px 0;
}

.latest-bar h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b71c1c;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.latest-bar ul {
  list-style: none;
}

.latest-bar li {
  padding: 8px 0;
  border-bottom: 1px solid #f0ede6;
  font-size: 14px;
  line-height: 1.5;
}

.latest-bar li:last-child {
  border-bottom: none;
}

.latest-bar .time {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  color: #999;
  display: block;
  margin-top: 2px;
}

/* ── Article page ── */
.article-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 4px;
  margin: 24px 0 8px;
}

.img-caption {
  font-size: 13px;
  color: #777;
  font-style: italic;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e4dc;
}

.article-header {
  padding: 36px 0 0;
}

.article-header h1 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.article-header .subhead {
  font-size: 20px;
  color: #555;
  margin-bottom: 18px;
  font-style: italic;
}

.article-meta {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  color: #888;
  padding: 14px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.article-meta .author {
  font-weight: 700;
  color: #1a1a1a;
}

.article-body p {
  font-size: 18px;
  margin-bottom: 20px;
}

.article-body .lead {
  font-size: 21px;
  color: #333;
  line-height: 1.65;
}

.article-body blockquote {
  margin: 30px 0;
  padding: 22px 28px;
  background: #faf7f0;
  border-left: 4px solid #c9a84c;
  font-size: 20px;
  font-style: italic;
  color: #3a3a3a;
  border-radius: 0 4px 4px 0;
}

.article-body blockquote cite {
  display: block;
  font-size: 14px;
  font-style: normal;
  color: #888;
  margin-top: 10px;
}

.inline-img-block {
  margin: 32px 0;
}

.inline-img-block img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.inline-img-block .img-caption {
  margin-top: 8px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.figure-wide {
  margin: 36px -60px;
}

.figure-wide img {
  width: 100%;
  border-radius: 4px;
}

/* ── Info box ── */
.info-box {
  background: #f0ece3;
  border: 1px solid #d8d2c4;
  border-radius: 4px;
  padding: 22px 26px;
  margin: 30px 0;
}

.info-box h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8b5a2b;
  margin-bottom: 10px;
}

.info-box ul {
  margin-left: 18px;
  font-size: 15px;
}

.info-box li {
  margin-bottom: 4px;
}

/* ── Data table ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 15px;
}

.data-table th {
  font-family: 'Source Sans 3', sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #888;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid #c9a84c;
}

.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
}

.data-table tr:last-child td {
  border-bottom: none;
}

/* ── Team page ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 28px 0 36px;
}

.team-card {
  background: #fff;
  border-radius: 4px;
  padding: 26px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.team-card h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.team-card .role {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8b5a2b;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 15px;
  color: #555;
}

/* ── Footer ── */
.footer {
  background: #1b1b1b;
  color: #888;
  padding: 28px 0;
  margin-top: 40px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer a {
  color: #c9a84c;
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 18px;
}

/* ── Share bar ── */
.share-bar {
  display: flex;
  gap: 10px;
  margin: 24px 0;
  padding: 14px 0;
  border-top: 1px solid #e8e4dc;
}

.share-bar a {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 3px;
}

.share-bar .share-tw { background: #1da1f2; }
.share-bar .share-fb { background: #1877f2; }
.share-bar .share-li { background: #0a66c2; }
.share-bar .share-email { background: #666; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header .wrap {
    flex-direction: column;
    padding: 14px 20px;
    gap: 8px;
  }

  nav a { padding: 8px 10px; }

  .hero-img { height: 320px; }
  .hero-overlay h1 { font-size: 26px; }
  .hero-overlay .subhead { font-size: 15px; }

  .article-header h1 { font-size: 28px; }
  .article-body p { font-size: 16px; }
  .article-body blockquote { font-size: 18px; }

  .figure-wide { margin: 28px 0; }

  .footer .wrap { flex-direction: column; text-align: center; }
}
