/* articles.css — shared styles for /articles/* pages */

:root{
  --nav-h:65px;
  --navy:#0C374D;
  --teal:#4FA6C0;
  --teal-ink:#2B7A92;
  --teal-soft:#E0F0F5;
}

#page-wrap{padding-top:var(--nav-h)}

/* ── SECTION WRAPPER (shared with other pages) ── */
.section{max-width:1320px;margin:0 auto;padding:64px 32px;position:relative}

/* ── ARTICLE LAYOUT ── */
.article-wrap{
  max-width:760px;
  margin:0 auto;
  padding:72px 24px 80px;
}

/* ── NEWSLETTER MASTHEAD (above article header) ── */
.newsletter-masthead{
  margin-bottom:28px;
  padding-bottom:24px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}

.newsletter-masthead-title{
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink);
}

.newsletter-masthead-vol{
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--faint);
}

/* ── TAG / CATEGORY ── */
.article-tag{
  display:inline-block;
  background:var(--teal-soft);
  color:var(--teal-ink);
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:5px 13px;
  border-radius:999px;
  margin-bottom:24px;
}

/* ── HEADER ── */
.article-header{
  margin-bottom:48px;
  padding-bottom:40px;
  border-bottom:1px solid var(--line);
}

.article-header h1{
  font-size:clamp(36px,5vw,54px);
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.03em;
  color:var(--ink);
  margin-bottom:20px;
}

.article-header .lede{
  font-size:19px;
  line-height:1.6;
  color:var(--muted);
  font-weight:400;
  max-width:640px;
}

.article-byline{
  margin-top:20px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:13px;
  color:var(--faint);
  font-weight:500;
}

.byline-sep{
  color:var(--faint);
}

/* ── HERO IMAGE ── */
.article-hero{
  border-radius:16px;
  overflow:hidden;
  margin-bottom:56px;
  aspect-ratio:16/7;
}

.article-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* Product cutout variant — transparent PNG on gradient */
.article-hero--product{
  background:linear-gradient(135deg,#E0F0F5 0%,#F1F3F4 100%);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Newsletter/gradient hero variant */
.article-hero--gradient{
  background:linear-gradient(135deg,#0C374D 0%,#164FB1 50%,#4FA6C0 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}

.newsletter-hero-inner{
  position:relative;
  z-index:1;
  text-align:center;
  padding:40px;
}

.newsletter-vol{
  font-size:11px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.65);
  margin-bottom:16px;
}

.newsletter-title{
  font-size:clamp(22px,4vw,40px);
  font-weight:800;
  letter-spacing:-.03em;
  line-height:1.1;
  color:#fff;
}

.hero-node{
  width:14px;height:14px;
  background:#4FA6C0;
  border-radius:4px;
  margin:20px auto 0;
  opacity:.8;
}

.article-hero--product img{
  object-fit:contain;
  object-position:center;
  padding:32px;
  filter:drop-shadow(0 24px 48px rgba(12,55,77,.18));
}

/* ── BODY COPY ── */
.article-body p{
  font-size:17px;
  line-height:1.75;
  color:var(--ink);
  margin-bottom:24px;
}

.article-body h2{
  font-size:26px;
  font-weight:700;
  letter-spacing:-.02em;
  color:var(--ink);
  margin:48px 0 16px;
}

/* ── NODE BULLET LIST ── */
.node-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin:32px 0 40px;
  padding:32px 36px;
  background:#fff;
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow:0 4px 16px rgba(12,55,77,.06);
}

.node-list li{
  display:flex;
  align-items:flex-start;
  gap:14px;
  font-size:16px;
  line-height:1.55;
  color:var(--ink);
}

.node{
  flex-shrink:0;
  width:10px;height:10px;
  background:var(--teal);
  border-radius:3px;
  margin-top:4px;
}

/* ── PULL QUOTE ── */
.pullquote{
  margin:48px 0;
  padding:28px 36px;
  border-left:4px solid var(--teal);
  background:var(--teal-soft);
  border-radius:0 12px 12px 0;
  font-size:20px;
  font-weight:600;
  line-height:1.45;
  letter-spacing:-.01em;
  color:var(--ink);
}

/* ── EVENTS CARDS ── */
.events-list{
  display:flex;
  flex-direction:column;
  gap:20px;
  margin-bottom:56px;
}

.event-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px 36px;
  display:grid;
  grid-template-columns:140px 1fr;
  align-items:center;
  gap:40px;
  box-shadow:0 4px 16px rgba(12,55,77,.06);
  transition:box-shadow .2s,transform .2s;
}

.event-card:hover{
  box-shadow:0 12px 40px rgba(12,55,77,.10);
  transform:translateY(-2px);
}

.event-date-block{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-right:1px solid var(--line);
  flex-shrink:0;
  padding-right:36px;
}

.event-date-num{
  font-size:36px;
  font-weight:800;
  letter-spacing:-.04em;
  line-height:1;
  color:var(--ink);
  white-space:nowrap;
  text-align:center;
  width:100%;
}

.event-date-month{
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--teal);
  margin-top:6px;
  text-align:center;
  width:100%;
}

.event-info{
  padding-left:8px;
}

.event-name{
  font-size:18px;
  font-weight:700;
  letter-spacing:-.01em;
  color:var(--ink);
  margin-bottom:4px;
}

.event-location{
  font-size:13px;
  color:var(--muted);
  font-weight:500;
}

/* ── PHOTO GRID ── */
.photo-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:220px;
  gap:10px;
  margin-bottom:56px;
}

.photo-grid .photo-wide{
  grid-column:span 2;
}

.photo-grid .photo-tall{
  grid-row:span 2;
}

.photo-grid a{
  display:block;
  border-radius:12px;
  overflow:hidden;
  background:var(--teal-soft);
}

.photo-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
  transition:transform .4s ease;
}

.photo-grid a:hover img{
  transform:scale(1.04);
}

@media(max-width:680px){
  .photo-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px}
  .photo-grid .photo-wide{grid-column:span 2}
  .photo-grid .photo-tall{grid-row:span 1}
}

/* ── CTA BLOCK ── */
.final-cta{
  margin-top:64px;
  background:linear-gradient(180deg,#fff 0%,var(--bg) 100%);
  border:1px solid var(--line-soft);
  border-radius:32px;
  padding:80px 56px;
  text-align:center;
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(12,55,77,.08);
}

.final-cta h2{
  font-size:clamp(22px,4.25vw,51px);
  letter-spacing:-.025em;
  line-height:1.05;
  font-weight:700;
  color:var(--ink);
  margin-bottom:20px;
}

.final-cta h2 em{font-style:normal;color:var(--teal)}

.final-cta p{
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
  max-width:560px;
  margin:0 auto 32px;
}

.final-cta .btns{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ── RESPONSIVE ── */
@media(max-width:680px){
  .article-wrap{padding:48px 20px 80px}
  .article-cta{padding:32px 24px}
  .event-card{grid-template-columns:90px 1fr;gap:16px;padding:20px 20px}
}
