:root{
  --parchment:#FAF7F0;
  --parchment-alt:#F2EDE0;
  --surface-card:#FDFBF5;
  --stage-bg:#ECE4D2;
  --ink:#1A1714;
  --ink-secondary:#3C3733;
  --ink-muted:#6B6358;
  --gold:#9A7A3A;
  --rule:#C5BBA3;
  --rule-light:#DDD4BD;
  --footer-bg:#1E0710;
  --footer-text:#D4C4A2;
  --footer-text-dim:#8A7D68;
}
*{box-sizing:border-box;}
body{
  margin:0;
  background:var(--parchment);
  color:var(--ink-secondary);
  font-family:'EB Garamond', Georgia, serif;
  font-size:18px;
  line-height:1.7;
}
h1,h2,h3,.wordmark,.stage-name,blockquote{
  font-family:'Cormorant Garamond', Georgia, serif;
  color:var(--ink);
}
a{color:inherit;}
img{max-width:100%;}

/* HEADER (loaded from partials/header.html) */
header.site{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1.5rem 2rem;
  background:var(--footer-bg);
  flex-wrap:wrap;
  gap:1rem;
}
.wordmark{font-size:1.1rem;font-weight:500;letter-spacing:0.16em;text-decoration:none;color:var(--footer-text);}
nav.site-nav{display:flex;gap:1.75rem;font-size:0.85rem;color:var(--footer-text);flex-wrap:wrap;}
nav.site-nav a{text-decoration:none;color:var(--footer-text);}

nav.site-nav a:hover{color:var(--gold);}
.nav-dropdown{position:relative;}
.dropdown-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  background:var(--footer-bg);
  border:1px solid rgba(212,196,162,0.2);
  border-radius:6px;
  padding:0.6rem 0 0.4rem;
  min-width:200px;
  z-index:200;
}
.dropdown-menu a{display:block;padding:0.5rem 1rem;white-space:nowrap;color:var(--footer-text);}
.dropdown-menu a:hover{color:var(--gold);}
.nav-dropdown.open .dropdown-menu{display:block;}

/* HERO (homepage only, harmless elsewhere if unused) */
.hero{max-width:900px;margin:0 auto;padding:4.5rem 1.5rem 3.5rem;text-align:left;}
.hero h1{font-size:clamp(2.2rem, 5vw, 3.4rem);font-weight:500;line-height:1.15;margin:0 0 0.3rem;}
.hero h1 em{font-style:italic;color:var(--gold);}
.hero p{max-width:60ch;font-size:1.05rem;color:var(--ink-secondary);margin:1.25rem 0 2rem;}

/* BUTTONS */
.cta{
  display:inline-block;
  padding:0.85rem 1.75rem;
  background:var(--ink);
  color:var(--parchment);
  text-decoration:none;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:1.05rem;
  border-radius:4px;
  transition:background 0.2s ease;
}
.cta:hover{background:var(--gold);}
.cta.outline{background:transparent;border:1px solid var(--ink);color:var(--ink);}
.cta.outline:hover{background:var(--ink);color:var(--parchment);}

/* PAGE / ARTICLE LAYOUT (course pages, essays, etc.) */
main{max-width:900px;margin:0 auto;padding:0 1.5rem 5rem;}
main.narrow{max-width:640px;padding-top:3rem;}
section{margin-top:3.5rem;padding-top:3rem;border-top:1px solid var(--rule-light);}
section:first-of-type{border-top:none;padding-top:0;}
section.hero:first-of-type{padding-top:4.5rem;margin-top:0;}
section h2{font-size:1.6rem;font-weight:600;margin:0 0 1rem;}
section > p{max-width:65ch;margin:0 0 1rem;}
article h1{font-size:clamp(1.7rem, 4.5vw, 2.4rem);font-weight:600;margin:0 0 0.25rem;line-height:1.15;}
article .dek{font-size:1rem;color:var(--ink-muted);margin:0 0 2rem;letter-spacing:0.02em;}
article h2{font-size:1.15rem;font-weight:600;margin:2.25rem 0 0.75rem;}
article p{margin:0 0 1.1rem;}
article ul, article ol{margin:0 0 1.3rem;padding-left:1.4rem;}
article li{margin-bottom:0.5rem;}

/* FAQ ACCORDION */
.faq-item{border-bottom:1px solid var(--rule-light);}
.faq-item summary{
  padding:1rem 0;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:1.1rem;
  color:var(--ink);
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary::after{content:"+";font-size:1.3rem;color:var(--gold);margin-left:1rem;}
.faq-item[open] summary::after{content:"\2212";}
.faq-item p{padding-bottom:1rem;margin:0;color:var(--ink-secondary);}

/* STAGE STRIP */
.stage-strip{display:flex;gap:0.5rem;margin-bottom:0.5rem;}
.stage-strip .stage{
  flex:1;text-align:center;padding:0.6rem 0.5rem;
  font-family:'Cormorant Garamond', Georgia, serif;font-size:0.95rem;
  border-radius:6px;background:var(--parchment-alt);color:var(--ink-muted);
  text-decoration:none;display:block;
}
.stage-strip a.stage:hover{background:var(--stage-bg);color:var(--ink);}
.stage-strip .stage.active{
  background:var(--stage-bg);color:var(--ink);font-weight:600;border:1px solid var(--gold);
}
.stage-strip-note{font-size:0.85rem;color:var(--ink-muted);margin:0 0 2.5rem;}
.stage-strip-note a{color:var(--gold);}

/* QUOTE BLOCK */
.quote-block{
  border-left:3px solid var(--gold);padding-left:1.25rem;margin:2rem 0;
  font-family:'Cormorant Garamond', Georgia, serif;font-style:italic;
  font-size:1.15rem;color:var(--ink-secondary);
}
.quote-block cite{display:block;font-style:normal;font-size:0.85rem;margin-top:0.5rem;color:var(--ink-muted);}

/* CURRICULUM TABLE */
table.curriculum{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:0.95rem;}
table.curriculum th, table.curriculum td{text-align:left;padding:0.75rem;border-bottom:1px solid var(--rule-light);vertical-align:top;}
table.curriculum th{font-family:'Cormorant Garamond', Georgia, serif;font-weight:600;color:var(--ink-muted);font-size:0.85rem;}
table.curriculum td:first-child{font-weight:600;color:var(--ink);white-space:nowrap;}
table.curriculum td a{color:var(--ink);text-decoration:underline;text-decoration-color:var(--rule);text-underline-offset:3px;}
table.curriculum td a:hover{color:var(--gold);text-decoration-color:var(--gold);}

/* CARDS: courses + news */
.card-scroll{display:flex;gap:1rem;overflow-x:auto;padding:0.5rem 0.25rem 1.25rem;margin:1.5rem -0.25rem 0;scroll-snap-type:x proximity;}
.course-card{flex:0 0 240px;scroll-snap-align:start;background:var(--surface-card);border:1px solid var(--rule-light);border-top:3px solid var(--gold);border-radius:8px;padding:1.4rem 1.25rem 1.25rem;text-decoration:none;display:block;transition:transform 0.2s ease, box-shadow 0.2s ease;}
.course-card:hover{transform:translateY(-3px);box-shadow:0 8px 18px rgba(26,23,20,0.08);}
.course-card p.stage-tag{font-size:0.78rem;color:var(--gold);margin:0 0 0.4rem;letter-spacing:0.02em;}
.course-card h3{font-size:1.15rem;margin:0 0 0.5rem;font-weight:600;}
.course-card p.blurb{font-size:0.92rem;color:var(--ink-secondary);margin:0;line-height:1.5;}
.not-seeing{font-size:0.9rem;color:var(--ink-muted);margin-top:0.75rem;}
.not-seeing a{color:var(--gold);}

.news-grid{display:grid;grid-template-columns:repeat(2, 1fr);gap:1rem;margin-top:1.5rem;}
.news-card{background:var(--surface-card);border:1px solid var(--rule-light);border-top:3px solid var(--gold);border-radius:8px;padding:1.3rem 1.25rem 1.1rem;transition:transform 0.2s ease, box-shadow 0.2s ease;}
.news-grid a.news-card, .news-grid .news-card{display:block;text-decoration:none;}
.news-card:hover{transform:translateY(-3px);box-shadow:0 8px 18px rgba(26,23,20,0.08);}
.news-card p.pillar{font-size:0.75rem;letter-spacing:0.04em;color:var(--gold);margin:0 0 0.4rem;}
.news-card p.headline{font-size:1rem;font-weight:600;color:var(--ink);margin:0 0 0.3rem;font-family:'Cormorant Garamond', Georgia, serif;transition:color 0.2s ease;}
.news-card:hover p.headline{color:var(--gold);}
.news-card p.snippet{font-size:0.88rem;color:var(--ink-muted);margin:0;}

/* FOOTER (loaded from partials/footer.html) */
footer.site{background:var(--footer-bg);color:var(--footer-text);padding:1.75rem 1.5rem 2rem;}
.footer-inner{max-width:1120px;margin:0 auto;}
.footer-motto{text-align:center;font-family:'Cormorant Garamond', Georgia, serif;font-style:italic;font-size:1.05rem;font-weight:500;color:var(--footer-text);border-bottom:1px solid rgba(212,196,162,0.15);padding-bottom:2rem;margin-bottom:2.5rem;}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2.5rem;}
.footer-brand{grid-column:1;}
.footer-word{font-family:'Cormorant Garamond', Georgia, serif;font-size:1.35rem;font-weight:500;color:var(--footer-text);letter-spacing:0.16em;margin:0;}
.footer-tagline{font-family:'Cormorant Garamond', Georgia, serif;font-style:italic;color:var(--footer-text);margin:0.5rem 0 1.25rem;}
.footer-desc{max-width:44ch;font-size:0.92rem;color:var(--footer-text-dim);margin:0 0 1.5rem;}
.footer-contact{font-size:0.88rem;margin:0.25rem 0;}
.footer-contact .label{color:var(--footer-text-dim);display:inline-block;width:3.5rem;}
.footer-contact a{color:var(--footer-text);text-decoration:none;}
.footer-contact a:hover{color:var(--gold);}
.footer-links{margin:1rem 0 0;font-size:0.88rem;}
.footer-links a{display:block;margin:0.25rem 0;text-decoration:none;color:var(--footer-text);}
.footer-links a:hover{color:var(--gold);}
.footer-cta{display:inline-block;margin-top:1.75rem;padding:0.75rem 1.5rem;border:1px solid var(--gold);color:var(--gold);text-decoration:none;font-size:0.9rem;letter-spacing:0.03em;border-radius:4px;}
.footer-top h4{font-family:'Cormorant Garamond', Georgia, serif;font-size:0.8rem;letter-spacing:0.05em;color:var(--footer-text-dim);margin:0 0 0.5rem;font-weight:600;}
.footer-bottom{text-align:center;font-size:0.8rem;color:var(--footer-text-dim);margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid rgba(212,196,162,0.15);}
@media (max-width:800px){
  .footer-top{grid-template-columns:1fr 1fr;row-gap:2rem;}
  .footer-brand{grid-column:1 / -1;}
}
@media (max-width:500px){
  .footer-top{grid-template-columns:1fr;}
}

/* CLOSING CTA */
.closing{
  text-align:center;
  max-width:600px;
  margin:0 auto;
  padding:3rem 0 1rem;
}
.closing p{color:var(--ink-secondary);margin:0 0 1.5rem;}

/* BEGIN GRID (Stage I tracks, Overview page) */
.begin-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1.25rem;
  margin:1.5rem 0 3rem;
}
.begin-card{
  display:block;
  background:var(--surface-card);
  border:1px solid var(--rule-light);
  border-top:3px solid var(--gold);
  border-radius:8px;
  padding:1.75rem 1rem 1.5rem;
  text-decoration:none;
  text-align:center;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.begin-card:hover{transform:translateY(-4px);box-shadow:0 8px 20px rgba(26,23,20,0.08);}
.begin-card h3{font-size:1.25rem;margin:0 0 0.4rem;color:var(--ink);}
.begin-card .item-grade{display:block;font-size:0.8rem;color:var(--ink-muted);}
@media (max-width:700px){
  .begin-grid{grid-template-columns:repeat(2, 1fr);}
}

/* JOURNEY PATH (Full Path, Overview page) */
.journey-path{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  position:relative;
  margin:1rem 0 0.5rem;
  padding:0 1rem;
}
.journey-path::before{
  content:"";
  position:absolute;
  top:44px;
  left:12%;
  right:12%;
  height:2px;
  background:var(--rule);
  z-index:0;
}
.journey-stage{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-decoration:none;
  flex:1;
}
.journey-stage .circle{
  width:88px;
  height:88px;
  border-radius:50%;
  background:var(--surface-card);
  border:2px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:2.2rem;
  font-weight:600;
  color:var(--ink);
  transition:background 0.2s ease, color 0.2s ease;
}
.journey-stage:hover .circle{background:var(--gold);color:var(--parchment);}
.journey-stage .stage-label{
  margin-top:0.85rem;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:1.05rem;
  color:var(--ink);
  text-align:center;
}
.journey-stage .stage-sub{font-size:0.78rem;color:var(--ink-muted);text-align:center;}
@media (max-width:600px){
  .journey-path::before{left:9%;right:9%;top:32px;}
  .journey-stage .circle{width:64px;height:64px;font-size:1.6rem;}
  .journey-stage .stage-label{font-size:0.85rem;margin-top:0.5rem;}
  .journey-stage .stage-sub{font-size:0.68rem;}
}

/* CONTACT CARDS */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1rem;
  margin:1.5rem 0 2rem;
}
.contact-card{
  background:var(--surface-card);
  border:1px solid var(--rule-light);
  border-radius:8px;
  padding:1.25rem;
}
.contact-card .channel-tag{
  font-size:0.75rem;
  letter-spacing:0.04em;
  color:var(--gold);
  margin:0 0 0.5rem;
}
.contact-card p{margin:0 0 0.9rem;font-size:0.95rem;}
.contact-card a.cta{
  display:inline-block;
  padding:0.55rem 1.1rem;
  font-size:0.92rem;
}
@media (max-width:600px){
  .contact-grid{grid-template-columns:1fr;}
}

/* NEWS ARTICLE BODY (shared patterns from migrated posts) */
.article-tag{font-size:0.78rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--gold);margin:0 0 0.5rem;}
.article-date{font-size:0.85rem;color:var(--ink-muted);margin:0 0 2rem;}
article .sec-head{font-size:0.78rem;letter-spacing:0.1em;text-transform:uppercase;color:var(--gold);margin:2.25rem 0 0.9rem;padding-bottom:0.4rem;border-bottom:1px solid var(--rule-light);}
.sec-rule{border:none;border-top:1px solid var(--rule-light);margin:2.25rem 0;}
.sec-rule + *{margin-top:0 !important;}
.epigraph{border-left:3px solid var(--gold);padding-left:1.25rem;margin:1.75rem 0;font-family:'Cormorant Garamond', Georgia, serif;font-style:italic;font-size:1.1rem;color:var(--ink-secondary);}
.epigraph cite{display:block;font-style:normal;font-size:0.85rem;margin-top:0.4rem;color:var(--ink-muted);}
.stat-row{display:flex;gap:1rem;margin:1.5rem 0;}
.stat{flex:1;text-align:center;background:var(--surface-card);border:1px solid var(--rule-light);border-radius:8px;padding:1rem 0.5rem;}
@media (max-width:500px){
  .stat-row{flex-direction:column;gap:0.75rem;}
}
.stat-num{font-family:'Cormorant Garamond', Georgia, serif;font-size:2rem;font-weight:600;color:var(--gold);}
.stat-label{font-size:0.78rem;color:var(--ink-muted);margin-top:0.2rem;}
.roster{list-style:none;padding:0;margin:1rem 0;}
.roster li{padding:0.5rem 0;border-bottom:1px solid var(--rule-light);font-size:1rem;}
.roster-role{font-size:0.72rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--gold);margin-right:0.6rem;}
.honor-grid{margin:1.5rem 0;}
.honor-card{padding:0.9rem 0;border-bottom:1px solid var(--rule-light);text-align:left;}
.honor-grid .honor-card:first-child{border-top:1px solid var(--rule-light);}
.honor-label{font-size:0.72rem;letter-spacing:0.06em;text-transform:uppercase;color:var(--gold);margin-bottom:0.3rem;}
.honor-name{display:block;font-family:'Cormorant Garamond', Georgia, serif;font-size:1.1rem;color:var(--ink);}
.honor-distinction{font-size:0.85rem;color:var(--ink-muted);margin-top:0.1rem;}
.commentary{margin-top:2.25rem;padding-top:1.75rem;border-top:1px solid var(--rule-light);}
.commentary p{font-family:'Cormorant Garamond', Georgia, serif;font-style:italic;font-size:1.02rem;line-height:1.75;color:var(--ink-muted);}
.coda{font-family:'Cormorant Garamond', Georgia, serif;font-style:italic;font-size:1rem;color:var(--ink-muted);display:block;margin-top:1rem;}
.detail-note{font-size:0.9rem;color:var(--ink-muted);background:var(--parchment-alt);border-radius:6px;padding:0.9rem 1.1rem;margin:1.5rem 0;}

/* NEWS INDEX LIST */
.news-index-item{padding:1.25rem 0;border-bottom:1px solid var(--rule-light);}
.news-index-item a{text-decoration:none;}
.news-index-item .article-date{margin:0 0 0.3rem;}
.news-index-item h3{font-size:1.2rem;margin:0 0 0.3rem;color:var(--ink);}
.news-index-item:hover h3{color:var(--gold);}

/* Mailing list CTA at the bottom of every news post */
.news-cta{
  text-align:center;
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid var(--rule-light);
}
.news-cta p{color:var(--ink-muted);margin:0 0 1rem;font-size:0.95rem;}

/* Custom-styled MailerLite signup form (classic embed, restyled entirely
   with the site's own design system rather than MailerLite's defaults) */
.signup-form{
  display:flex;
  flex-direction:column;
  gap:0.85rem;
  max-width:360px;
  margin:1.5rem 0;
  text-align:left;
}
.signup-form input{
  padding:0.75rem 0.9rem;
  border:1px solid var(--rule);
  border-radius:4px;
  font-family:'EB Garamond', Georgia, serif;
  font-size:1rem;
  background:var(--surface-card);
  color:var(--ink);
  width:100%;
  box-sizing:border-box;
}
.signup-form input::placeholder{color:var(--ink-muted);}
.signup-form button{
  padding:0.8rem;
  background:var(--ink);
  color:var(--parchment);
  border:none;
  border-radius:4px;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:1.1rem;
  cursor:pointer;
  transition:background 0.2s ease;
}
.signup-form button:hover{background:var(--gold);}
.signup-success{
  max-width:360px;
  margin:1.5rem 0;
  padding:1rem 1.25rem;
  background:var(--surface-card);
  border:1px solid var(--rule-light);
  border-radius:6px;
}
.signup-success p{margin:0;color:var(--ink);}

/* Force the MailerLite embedded form left, since MailerLite's own widget
   styling defaults to centering itself regardless of the page around it. */
.ml-embedded{text-align:left !important;margin-left:0 !important;margin-right:0 !important;}
.ml-embedded * {text-align:left !important;margin-left:0 !important;}
.ml-embedded form{margin:0 !important;}

.cta-group{display:flex;flex-wrap:wrap;gap:0.75rem;margin-top:1.5rem;}
.cta-group .cta{margin:0;}
@media (max-width:500px){
  .cta-group{flex-direction:column;}
  .cta-group .cta{text-align:center;width:100%;}
}

/* PAGE PORTRAITS (About Emerson, The Magister) */
.page-portrait{
  display:block;
  margin:0 auto 2rem;
  max-width:220px;
}
.page-portrait img{
  width:100%;
  height:auto;
  display:block;
}
.page-portrait.framed img{
  border-radius:8px;
  border:1px solid var(--rule-light);
  box-shadow:0 4px 16px rgba(26,23,20,0.08);
}
.page-portrait-caption{
  text-align:center;
  font-size:0.8rem;
  color:var(--ink-muted);
  margin-top:0.6rem;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
}
@media (max-width:500px){
  .page-portrait{max-width:170px;}
}

/* DROP CAP (Academy narrative pages) */
.drop-cap::first-letter{
  float:left;
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:3.4rem;
  line-height:0.82;
  font-weight:600;
  padding:0.05rem 0.5rem 0 0;
  color:var(--gold);
}

/* PULL QUOTE (Academy essay pages) */
.pull-quote{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-style:italic;
  font-size:1.4rem;
  line-height:1.4;
  color:var(--ink);
  text-align:center;
  max-width:520px;
  margin:2.5rem auto;
  padding:1.5rem 0;
  border-top:1px solid var(--rule);
  border-bottom:1px solid var(--rule);
}
@media (max-width:500px){
  .drop-cap::first-letter{font-size:2.6rem;}
  .pull-quote{font-size:1.2rem;}
}

/* STEP LIST (Admissions' three-step process) */
.step-list{list-style:none;padding:0;margin:1.5rem 0;counter-reset:step;}
.step-list li{
  counter-increment:step;
  position:relative;
  padding:0 0 1.5rem 3rem;
  margin-bottom:0.25rem;
}
.step-list li::before{
  content:counter(step);
  position:absolute;
  left:0;
  top:0.1rem;
  width:2rem;
  height:2rem;
  border-radius:50%;
  background:var(--stage-bg);
  border:1px solid var(--gold);
  color:var(--ink);
  font-family:'Cormorant Garamond', Georgia, serif;
  font-weight:600;
  font-size:1.05rem;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
}
.step-list li:not(:last-child)::after{
  content:"";
  position:absolute;
  left:0.99rem;
  top:2.1rem;
  bottom:0;
  width:1px;
  background:var(--rule-light);
}
.step-list strong{display:block;font-family:'Cormorant Garamond', Georgia, serif;font-size:1.1rem;color:var(--ink);margin-bottom:0.3rem;}

/* METHOD PAGE: four-pillar grid */
.pillar-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
  margin:2rem 0 2.5rem;
}
.pillar-card{
  background:var(--surface-card);
  border:1px solid var(--rule-light);
  border-radius:8px;
  padding:1.5rem 1.4rem;
}
.pillar-num{
  font-family:'Cormorant Garamond', Georgia, serif;
  font-size:2.2rem;
  font-weight:600;
  color:var(--gold);
  line-height:1;
  margin-bottom:0.3rem;
}
.pillar-card h3{
  font-size:1.2rem;
  margin:0 0 0.5rem;
  color:var(--ink);
}
.pillar-card p{font-size:0.95rem;color:var(--ink-secondary);margin:0;}
@media (max-width:560px){
  .pillar-grid{grid-template-columns:1fr;}
}

@media (max-width:700px){
  .hero{padding:3rem 1.25rem 2.5rem;}
  main{padding:0 1.25rem 4rem;}
  table.curriculum{font-size:0.85rem;}
  table.curriculum th:nth-child(3), table.curriculum td:nth-child(3){display:none;}
  .course-card{flex:0 0 210px;}
  .news-grid{grid-template-columns:1fr;}
}
