/* =========================================================
   News Archive Page Styles
   File: css/news-archive.css
   Purpose: Chapter-wide news, articles, SIG updates, event recaps,
   newsletters, outreach stories, and student highlights.
========================================================= */

:root{
  --news-navy:#071326;
  --news-navy-2:#0b1d38;
  --news-blue:#2f6fed;
  --news-blue-2:#5b8cff;
  --news-cyan:#56d7ff;
  --news-ink:#182033;
  --news-muted:#667085;
  --news-line:#e5e7eb;
  --news-soft:#f5f7fb;
  --news-white:#ffffff;
  --news-green:#2fa66a;
  --news-purple:#6757d8;
  --news-amber:#c98218;
  --news-red:#c94a4a;
  --news-shadow:0 18px 45px rgba(7, 19, 38, .12);
  --news-radius:18px;
  
  --primary: #0a2463;
  --primary-light: #1e3a8a;
  --secondary: #00d4ff;
  --accent: #ff6b35;

  --dark: #0f172a;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --white: #ffffff;

  --gradient-1: linear-gradient(135deg, #0a2463 0%, #1e3a8a 100%);
  --gradient-2: linear-gradient(135deg, #00d4ff 0%, #0a2463 100%);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

*{
  box-sizing:border-box;
}

body{
  padding-top: 90px;
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--news-ink);
  background:#ffffff;
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  width:100%;
}

/* =========================
   Navigation
   ========================= */
.navbar{
  position: fixed;
  top:0; left:0; right:0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  z-index: 1000;
  animation: navSlideDown 0.5s ease;
}

@keyframes navSlideDown{
  from{ transform: translateY(-100%); }
  to{ transform: translateY(0); }
}

.nav-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 18px;
}

.nav-logo{
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.nav-logo-container{
  display:flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-university{
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.nav-brands{
  display:flex;
  align-items:center;
  font-size: 28px;
  font-weight: 700;
  gap: 2px;
}

.logo-acm{ color: var(--primary); }
.logo-separator{ color: var(--secondary); font-weight: 500; }
.logo-upe{ color: var(--accent); }

.nav-links{
  display:flex;
  gap: 32px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s ease;
  position: relative;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta):hover{ color: var(--secondary); }

.nav-links a:not(.nav-cta).active::after,
.nav-links a[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-6px;
  height: 2px;
  background: var(--secondary);
}

.nav-cta{
  background: var(--gradient-1);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(10,36,99,0.08);
}

.nav-cta:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav-toggle{
  display:none;
  flex-direction: column;
  gap: 6px;
  cursor:pointer;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid rgba(10,36,99,0.10);
  background: rgba(255,255,255,0.70);
}

.nav-toggle span{
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Sample stand-alone header and footer.
   Remove these blocks if your site template already has them. */
.site-header{
  background:#050c18;
  color:#ffffff;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-header-inner,
.site-footer-inner{
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
}

.site-header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-lockup{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-mark{
  width:48px;
  height:48px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg, rgba(47,111,237,.22), rgba(86,215,255,.09));
  border:1px solid rgba(91,140,255,.38);
  color:#d9e8ff;
  font-weight:900;
  font-size:24px;
  box-shadow:0 0 35px rgba(47,111,237,.25);
}

.brand-text strong{
  display:block;
  letter-spacing:.05em;
  text-transform:uppercase;
  font-size:.82rem;
  line-height:1.2;
}

.brand-text span{
  display:block;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.67rem;
  color:#b9c7df;
  margin-top:3px;
}

.sample-nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:#dce8fa;
  font-weight:700;
  font-size:.92rem;
}

.sample-nav a:hover,
.sample-nav a:focus{
  color:#75a2ff;
  outline:none;
}

.site-footer{
  background:#050c18;
  color:#dce8fa;
  padding:24px 0;
}

.site-footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:.94rem;
}

.site-footer a{
  color:#75a2ff;
  font-weight:800;
}

.chapter-newsroom{
  background:linear-gradient(180deg, #ffffff 0%, #f6f8fc 46%, #eef3fb 100%);
  color:var(--news-ink);
}

.news-wrap{
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
}

.news-archive-intro{
  padding:54px 0 30px;
}

.news-archive-panel{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:24px;
  align-items:stretch;
  padding:30px;
  border-radius:24px;
  background:
    radial-gradient(circle at 86% 18%, rgba(86,215,255,.20), transparent 30%),
    linear-gradient(135deg, var(--news-navy) 0%, var(--news-navy-2) 62%, #102b54 100%);
  color:var(--news-white);
  box-shadow:var(--news-shadow);
  overflow:hidden;
  position:relative;
}

.news-archive-panel::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size:46px 46px;
  opacity:.18;
  pointer-events:none;
}

.news-archive-copy,
.news-stats-card{
  position:relative;
  z-index:1;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 12px;
  color:#b9d5ff;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.76rem;
}

.eyebrow p span{
  color:#f4c95d;
}

.eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--news-cyan);
  box-shadow:0 0 20px rgba(86,215,255,.85);
}

.news-archive-copy h1{
  margin:0;
  max-width:790px;
  font-size:clamp(2rem, 4vw, 3.65rem);
  line-height:1.05;
  letter-spacing:-.045em;
  color:#75a2ff;
}

.news-archive-copy h1 span{
  color:#f4c95d;
}

.news-archive-copy p{
  max-width:760px;
  margin:18px 0 0;
  color:#e6eefc;
  font-size:1.08rem;
}

.news-stats-card{
  align-self:center;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.07);
  border-radius:22px;
  padding:24px;
  backdrop-filter:blur(10px);
}

.news-stat-main{
  display:flex;
  gap:16px;
  align-items:center;
  margin-bottom:18px;
}

.news-stat-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(117, 162, 255, .14);
  border:1px solid rgba(117, 162, 255, .28);
  flex:0 0 auto;
}

.news-stat-icon svg{
  width:30px;
  height:30px;
  fill:none;
  stroke:#f4c95d;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.news-stat-number{
  font-size:2.4rem;
  font-weight:900;
  letter-spacing:-.04em;
  line-height:1;
}

.news-stat-label{
  color:#d6e4fb;
  font-size:.9rem;
  margin-top:5px;
}

.news-stat-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:#dbe8fb;
  font-size:.94rem;
}

.news-stat-list li::before{
  content:"•";
  color:var(--news-cyan);
  margin-right:8px;
}

.news-toolbar{
  display:grid;
  grid-template-columns:1fr auto;
  gap:18px;
  align-items:center;
  padding:26px 0;
}

.news-search{
  position:relative;
}

.news-search input{
  width:100%;
  min-height:48px;
  padding:0 16px 0 46px;
  border-radius:999px;
  border:1px solid var(--news-line);
  background:#ffffff;
  box-shadow:0 10px 26px rgba(7,19,38,.06);
  color:var(--news-ink);
  font-size:.95rem;
}

.news-search input:focus{
  border-color:rgba(47,111,237,.58);
  outline:3px solid rgba(47,111,237,.14);
}

.news-search span{
  position:absolute;
  left:17px;
  top:50%;
  transform:translateY(-50%);
  color:var(--news-muted);
}

.news-filter-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.news-filter{
  border:1px solid var(--news-line);
  background:#ffffff;
  color:#344054;
  min-height:42px;
  padding:9px 14px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(7,19,38,.05);
  transition:.2s ease;
}

.news-filter:hover,
.news-filter:focus,
.news-filter.active{
  border-color:rgba(47,111,237,.58);
  background:linear-gradient(135deg, var(--news-blue), #1d55cf);
  color:#ffffff;
  outline:none;
}

.news-layout{
  display:grid;
  grid-template-columns:250px 1fr;
  gap:28px;
  padding:0 0 56px;
}

.news-sidebar{
  align-self:start;
  position:sticky;
  top:22px;
  display:grid;
  gap:18px;
}

.news-side-card{
  background:#ffffff;
  border:1px solid var(--news-line);
  border-radius:var(--news-radius);
  box-shadow:0 14px 30px rgba(7,19,38,.06);
  padding:18px;
}

.news-side-card h2{
  margin:0 0 14px;
  font-size:.84rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#101828;
}

.news-side-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.news-side-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border-radius:12px;
  padding:10px 12px;
  color:#344054;
  transition:.2s ease;
  font-size:.94rem;
}

.news-side-list a:hover,
.news-side-list a:focus{
  background:#edf4ff;
  color:#174cbd;
  outline:none;
}

.news-side-list span:last-child{
  font-weight:800;
  color:#667085;
  font-size:.84rem;
}

.featured-story{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:0;
  margin-bottom:28px;
  background:#ffffff;
  border:1px solid var(--news-line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--news-shadow);
}

.featured-image {
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(7, 19, 38, 0.18), rgba(7, 19, 38, 0.06)),
    url("../photos/news/aug/cover.png") center / contain no-repeat;
  background-color: #d9dee5;
}

/* .featured-image{
  min-height:210px;
  background:
    linear-gradient(135deg, rgba(7,19,38,.25), rgba(7,19,38,.1)),
    url("../photos/news/aug/cover.png") center/cover no-repeat;
} */

.featured-content{
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.story-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  color:var(--news-muted);
  font-size:.86rem;
  margin:0 0 12px;
}

.story-badge{
  display:inline-flex;
  align-items:center;
  width:max-content;
  padding:5px 10px;
  border-radius:999px;
  color:#ffffff;
  font-size:.72rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:900;
}

.badge-chapter {
  background: #8A5A00;
}

.badge-sig {
  background: var(--news-purple);
}

.badge-event {
  background: var(--news-green);
}

.badge-newsletter {
  background: var(--news-amber);
}

.badge-highlight {
  background: #A61E5C;
}

.badge-article {
  background: #334155;
}

.badge-outreach {
  background: #B42318;
}

.badge-impact {
  background: #8A5A00;
}

.badge-recap {
  background: #2F6F4E;
}

.featured-content h2{
  margin:0;
  font-size:clamp(1.55rem, 3vw, 2.35rem);
  line-height:1.12;
  letter-spacing:-.03em;
}

.featured-content p{
  margin:14px 0 20px;
  color:#475467;
}

.story-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  font-weight:900;
  color:#174cbd;
}

.story-link:hover,
.story-link:focus{
  color:#0b2f82;
  outline:none;
}

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

.news-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:#ffffff;
  border:1px solid var(--news-line);
  border-radius:var(--news-radius);
  overflow:hidden;
  box-shadow:0 14px 30px rgba(7,19,38,.07);
  transition:.2s ease;
}

.news-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(7,19,38,.12);
}

.news-card-image{
  min-height:154px;
  background:#dbe4f2 center/cover no-repeat;
  position:relative;
}

.news-card-image .story-badge{
  position:absolute;
  left:14px;
  bottom:12px;
}

.img-1{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/planning.png"); }
.img-2{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/sig_update.png"); }
.img-3{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/spring_newsletter.png"); }
.img-4{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/may/camp-badge.png"); }
.img-5{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/students-collab-confusion.png"); }
.img-6{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/may/bloom.png"); }
.img-7{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/chapter-logo.png"); }
.img-8{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/jun/cover.jpg"); }
.img-9{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/build-boot.jpg"); }
.img-9{ background-image:linear-gradient(rgba(7,19,38,.05), rgba(7,19,38,.05)), url("../photos/news/build-boot.jpg"); }
.img-10{ background-image:linear-gradient(rgba(7, 19, 38, 0.05), rgba(7, 19, 38, 0.05)), url("../photosnews/sep/speaker-events/collage.png"); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #f4f8fc; }
.img-11{ background-image:linear-gradient(rgba(7, 19, 38, 0.08), rgba(7, 19, 38, 0.08)), url("../photos/news/jun/research-writing-workshop-cover.webp"); }

.news-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.news-card-body h3{
  margin:0;
  font-size:1.12rem;
  line-height:1.28;
  letter-spacing:-.015em;
}

.news-card-body p{
  margin:10px 0 16px;
  color:#475467;
  font-size:.95rem;
}

.news-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
  padding-top:12px;
  border-top:1px solid #edf0f5;
  color:#667085;
  font-size:.84rem;
}

.news-card-footer a{
  font-weight:900;
  color:#174cbd;
}

.no-results{
  margin:26px 0 0;
  padding:18px 20px;
  border-radius:16px;
  border:1px solid var(--news-line);
  background:#ffffff;
  color:#475467;
  font-weight:700;
  text-align:center;
}

.news-cta{
  margin-top:34px;
  border-radius:24px;
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:linear-gradient(135deg, #071326, #102b54);
  color:#ffffff;
  box-shadow:var(--news-shadow);
}

.news-cta h2{
  margin:0 0 6px;
  font-size:1.35rem;
}

.news-cta p{
  margin:0;
  color:#dce8fa;
}

.news-cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--news-blue), #1f57d3);
  color:#ffffff;
  font-weight:900;
  white-space:nowrap;
  box-shadow:0 12px 24px rgba(47,111,237,.28);
}

.news-cta-button:hover,
.news-cta-button:focus{
  background:linear-gradient(135deg, #1f57d3, #143f9e);
  outline:none;
}

.is-hidden{
  display:none !important;
}

@media (max-width:980px){
  .site-header-inner,
  .site-footer-inner{
    align-items:flex-start;
    flex-direction:column;
    padding:18px 0;
  }

  .sample-nav{
    flex-wrap:wrap;
  }

  .news-archive-panel,
  .news-layout,
  .featured-story{
    grid-template-columns:1fr;
  }

  .news-sidebar{
    position:static;
    grid-template-columns:1fr 1fr;
  }

  .news-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:700px){
  .site-header-inner,
  .site-footer-inner,
  .news-wrap{
    width:min(100% - 24px, 1180px);
  }

  .brand-lockup{
    align-items:flex-start;
  }

  .news-archive-intro{
    padding-top:34px;
  }

  .news-archive-panel,
  .featured-content,
  .news-cta{
    padding:22px;
  }

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

  .news-sidebar,
  .news-grid{
    grid-template-columns:1fr;
  }

  .featured-image{
    min-height:230px;
  }

  .news-cta{
    align-items:flex-start;
    flex-direction:column;
  }
  
  /* =========================================================
   Newsroom Mobile Header Refinement
   ========================================================= */

  .news-archive-intro{
    padding-top: 18px;
  }

  .news-archive-panel{
    padding: 18px;
    gap: 16px;
    border-radius: 18px;
  }

  .eyebrow{
    font-size: .68rem;
    letter-spacing: .11em;
    margin-bottom: 10px;
  }

  .news-archive-copy h1{
    max-width: 100%;
    font-size: clamp(1.65rem, 8vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -.03em;
  }

  .news-archive-copy p{
    margin-top: 14px;
    font-size: .92rem;
    line-height: 1.55;
  }

  .news-stats-card{
    padding: 16px;
    border-radius: 16px;
  }

  .news-stat-main{
    gap: 12px;
    margin-bottom: 14px;
  }

  .news-stat-icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .news-stat-number{
    font-size: 1.55rem;
  }

  .news-stat-label,
  .news-stat-list{
    font-size: .82rem;
  }

  .news-stat-list{
    gap: 6px;
  }
}


/* =========================
   MOBILE RESPONSIVENESS PATCH
   News Archive Page
   ========================= */

html{
  overflow-x: hidden;
}

body{
  overflow-x: hidden;
  font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

.chapter-newsroom,
.news-wrap,
.news-archive-panel,
.news-toolbar,
.news-layout,
.featured-story,
.news-grid,
.news-card,
.news-cta,

.news-archive-copy h1,
.featured-content h2,
.news-card-body h3,
.news-cta h2{
  overflow-wrap: anywhere;
}

.eyebrow span{
  color:#f4c95d;
}

/* Tablet navigation and content stacking */
@media (max-width: 1150px){
  body{
    padding-top: 88px;
  }

  .nav-container{
    position: relative;
    align-items: center;
  }

  .nav-toggle{
    display:flex;
    margin-left:auto;
    flex-shrink:0;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px;
    background:#ffffff;
    border:1px solid rgba(10,36,99,.10);
    border-radius:16px;
    box-shadow:0 18px 40px rgba(15,23,42,.14);
    transform:translateY(-8px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .nav-links.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateY(8px);
  }

  .nav-links a{
    width:100%;
    padding:12px 14px;
    border-radius:10px;
    white-space:normal;
  }

  .nav-links a:not(.nav-cta).active::after,
  .nav-links a[aria-current="page"]::after{
    display:none;
  }

  .nav-links a:not(.nav-cta):hover,
  .nav-links a:not(.nav-cta).active{
    background:#edf4ff;
    color:var(--primary);
  }

  .nav-cta{
    text-align:center;
    margin-top:6px;
  }

  .news-archive-panel,
  .featured-story,
  .news-layout{
    grid-template-columns:1fr;
  }

  .news-sidebar{
    position:static;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .news-toolbar{
    grid-template-columns:1fr;
    align-items:stretch;
  }

  .news-filter-row{
    justify-content:flex-start;
  }

  .news-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 700px){
  body{
    padding-top: 82px;
  }

  .nav-container{
    padding:12px 16px;
    gap:10px;
  }

  .nav-logo{
    flex:1;
    min-width:0;
  }

  .nav-university{
    font-size:12px;
    letter-spacing:.3px;
  }

  .nav-brands{
    font-size:22px;
  }

  .nav-toggle{
    width:42px;
    height:42px;
    align-items:center;
    justify-content:center;
  }

  .nav-toggle span{
    width:22px;
  }

  .nav-links{
    left:12px;
    right:12px;
    max-height:calc(100vh - 96px);
    overflow-y:auto;
  }

  .news-wrap{
    width:min(100% - 28px, 1180px);
  }

  .news-archive-intro{
    padding:24px 0 18px;
  }

  .news-archive-panel{
    gap:18px;
    padding:22px;
    border-radius:22px;
  }

  .news-archive-copy h1{
    font-size:clamp(2rem, 12vw, 2.85rem);
    line-height:1.02;
    letter-spacing:-.035em;
  }

  .news-archive-copy p{
    font-size:1rem;
    line-height:1.65;
  }

  .news-stats-card{
    padding:18px;
    border-radius:18px;
  }

  .news-stat-main{
    align-items:flex-start;
    gap:12px;
  }

  .news-stat-icon{
    width:46px;
    height:46px;
    border-radius:14px;
  }

  .news-stat-icon svg{
    width:26px;
    height:26px;
  }

  .news-stat-number{
    font-size:1.8rem;
  }

  .news-toolbar{
    padding:18px 0;
    gap:14px;
  }

  .news-search input{
    min-height:46px;
    padding-left:42px;
    border-radius:16px;
  }

  .news-filter-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .news-filter{
    width:100%;
    min-height:42px;
    padding:9px 10px;
    font-size:.86rem;
    text-align:center;
  }

  .news-layout{
    gap:20px;
    padding-bottom:42px;
  }

  .news-sidebar{
    grid-template-columns:1fr;
    gap:14px;
  }

  .news-side-card{
    padding:16px;
    border-radius:16px;
  }

  .featured-story{
    border-radius:20px;
    margin-bottom:22px;
  }

  .featured-image{
    min-height:210px;
  }

  .featured-content{
    padding:22px;
  }

  .featured-content h2{
    font-size:1.55rem;
    line-height:1.15;
  }

  .story-meta{
    gap:8px;
    font-size:.8rem;
  }

  .story-badge{
    max-width:100%;
    white-space:normal;
    line-height:1.2;
  }

  .news-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .news-card{
    border-radius:18px;
  }

  .news-card-image{
    min-height:175px;
  }

  .news-card-body{
    padding:17px;
  }

  .news-card-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .news-cta{
    flex-direction:column;
    align-items:stretch;
    padding:22px;
    border-radius:20px;
  }

  .news-cta-button{
    width:100%;
    white-space:normal;
    text-align:center;
  }
}

@media (max-width: 420px){
  .news-wrap{
    width:min(100% - 22px, 1180px);
  }

  .news-archive-panel,
  .featured-content,
  .news-cta{
    padding:18px;
  }

  .news-filter-row{
    grid-template-columns:1fr;
  }

  .news-archive-copy h1{
    font-size:2rem;
  }

  .nav-brands{
    font-size:20px;
  }
}

/* =========================================================
   Temporary News Archive Layout
   Use while search, filters, and sidebar are hidden
   ========================================================= */

.news-layout{
  display: block;
  padding-top: 10px;
}

.news-layout > div{
  width: 100%;
}

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

@media (max-width: 1150px){
  .news-layout{
    display: block;
  }

  .news-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .news-layout{
    display: block;
    padding-bottom: 42px;
  }

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