
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;700&family=Inter:wght@400;500;600&display=swap');

:root{
  --paper:#f5f0e6;
  --ink:#111111;
  --muted:#5f5a52;
  --border:#1b1b1b;
  --accent:#8d1d14;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  background:#d9d1c4;
  color:var(--ink);
  font-family:'Inter',sans-serif;
  padding:20px;
}

.paper{
  max-width:1450px;
  margin:auto;
  background:var(--paper);
  border:2px solid var(--border);
  box-shadow:0 10px 40px rgba(0,0,0,.15);
}

.masthead{
  padding:24px 30px 12px;
  border-bottom:2px solid var(--border);
}

.edition{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:11px;
  text-align:center;
  margin-bottom:12px;
}

.title-row{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
}

.line{
  height:2px;
  background:var(--border);
}

h1{
  margin:0;
  font-size:96px;
  line-height:.9;
  font-family:'Cormorant Garamond',serif;
  text-transform:lowercase;
  font-weight:700;
}

.meta-row{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:16px 30px;
  border-bottom:1px solid var(--border);
}

.nav-btn{
  background:none;
  border:none;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
  padding:8px 0;
  border-bottom:2px solid transparent;
}

.nav-btn.active{
  border-color:var(--accent);
  color:var(--accent);
}

.headline-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:24px;
  padding:30px;
  border-bottom:1px solid var(--border);
}

.hero{
  border-right:1px solid var(--border);
  padding-right:24px;
}

.hero h2{
  margin:0 0 16px;
  font-size:64px;
  line-height:.95;
  font-family:'Cormorant Garamond',serif;
}

.hero p{
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
}

.hero .hero-meta{
  margin-bottom:18px;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:2px;
}

.section-label{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:3px;
  margin-bottom:18px;
  color:var(--accent);
}

.ticker-item{
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.15);
}

.ticker-item h4{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.2;
  font-family:'Cormorant Garamond',serif;
}

.ticker-item p{
  margin:0;
  font-size:14px;
  color:var(--muted);
  line-height:1.5;
}

.toolbar{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:20px 30px;
  border-bottom:1px solid var(--border);
}

.toolbar input{
  flex:1;
  background:none;
  border:none;
  border-bottom:1px solid var(--border);
  padding:14px 0;
  font-size:16px;
  outline:none;
}

.toolbar button{
  background:var(--ink);
  color:var(--paper);
  border:none;
  padding:14px 18px;
  cursor:pointer;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:11px;
}

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

.story{
  padding:28px;
  border-right:1px solid rgba(0,0,0,.12);
  border-bottom:1px solid rgba(0,0,0,.12);
  min-height:360px;
  display:flex;
  flex-direction:column;
}

.story-meta{
  display:flex;
  justify-content:space-between;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:2px;
  color:var(--muted);
}

.story-title{
  font-family:'Cormorant Garamond',serif;
  font-size:42px;
  line-height:1;
  margin:18px 0;
}

.story-body{
  color:var(--muted);
  line-height:1.8;
  font-size:15px;
}

.story-footer{
  margin-top:auto;
}

.story-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.story-tags span{
  font-size:10px;
  border:1px solid var(--border);
  padding:4px 8px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.read-link{
  text-decoration:none;
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:11px;
}

@media(max-width:1100px){
  .grid{
    grid-template-columns:1fr 1fr;
  }

  h1{
    font-size:72px;
  }

  .hero h2{
    font-size:52px;
  }
}

@media(max-width:800px){
  body{
    padding:0;
  }

  .headline-layout{
    grid-template-columns:1fr;
  }

  .hero{
    border-right:none;
    border-bottom:1px solid var(--border);
    padding-right:0;
    padding-bottom:20px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:54px;
  }

  .toolbar{
    flex-direction:column;
  }
}
