:root {
  --tif-navy: #071421;
  --tif-navy-2: #0e2132;
  --tif-ink: #13202b;
  --tif-gold: #c99742;
  --tif-gold-soft: #e8cf9d;
  --tif-paper: #fbfaf6;
  --tif-line: #d8d1c2;
  --tif-muted: #5f6870;
  --tif-alert: #9b2424;
  --tif-white: #ffffff;
}

.tif-site-front,
.tif-newsroom-view .site-main {
  color: var(--tif-ink);
}

.tif-site-front {
  max-width: 1240px;
  margin: 0 auto;
}

.tif-masthead {
  overflow: hidden;
  border-bottom: 4px solid var(--tif-gold);
  background: var(--tif-navy);
  box-shadow: 0 8px 30px rgba(7,20,33,.16);
}

.tif-masthead img {
  display: block;
  width: 100%;
  height: auto;
}

.tif-alert-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 16px;
  background: var(--tif-alert);
  color: var(--tif-white);
  font-size: .9rem;
  letter-spacing: .01em;
}

.tif-alert-strip span {
  font-weight: 800;
  letter-spacing: .08em;
}

.tif-alert-strip a {
  color: var(--tif-white);
  text-decoration: none;
  font-weight: 700;
}

.tif-alert-strip time {
  opacity: .85;
  white-space: nowrap;
}

.tif-intro {
  padding: clamp(30px, 6vw, 72px) clamp(20px, 5vw, 64px);
  text-align: center;
  background: var(--tif-paper);
  border-left: 1px solid var(--tif-line);
  border-right: 1px solid var(--tif-line);
}

.tif-intro .tif-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .78rem;
  color: #7a5a22;
}

.tif-intro h1 {
  margin: 0 auto 15px;
  max-width: 920px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--tif-navy);
}

.tif-intro p:last-child {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
  color: #3d4952;
}

.tif-section-heading {
  margin: 48px 0 22px;
  border-top: 1px solid var(--tif-line);
  border-bottom: 1px solid var(--tif-line);
  padding: 10px 0;
  color: var(--tif-navy);
}

.tif-section-heading span {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 1.5rem;
}

.tif-alert-heading span {
  color: var(--tif-alert);
}

.tif-lead {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 28px;
  background-color: var(--tif-navy-2);
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  overflow: hidden;
}

.tif-lead-overlay {
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(7,20,33,.04) 25%, rgba(7,20,33,.96) 100%);
}

.tif-lead-content {
  max-width: 900px;
  padding: clamp(28px, 6vw, 64px);
  color: var(--tif-white);
}

.tif-lead h2 {
  margin: 12px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.tif-lead h2 a {
  color: var(--tif-white);
  text-decoration: none;
}

.tif-lead p {
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 780px;
}

.tif-badge {
  display: inline-block;
  padding: 5px 9px;
  background: var(--tif-gold);
  color: #17202a;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}

.tif-lead-location,
.tif-card-location,
.tif-dateline {
  margin-left: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.tif-byline,
.tif-card-meta {
  font-size: .83rem;
  opacity: .82;
}

.tif-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.tif-card {
  background: var(--tif-white);
  border: 1px solid #e1ddd3;
  box-shadow: 0 7px 24px rgba(7,20,33,.07);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.tif-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(7,20,33,.12);
}

.tif-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9e5dd;
}

.tif-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.tif-card h3 {
  margin: 10px 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.42rem;
  line-height: 1.18;
}

.tif-card h3 a {
  color: var(--tif-navy);
  text-decoration: none;
}

.tif-card p {
  color: #49545d;
  line-height: 1.55;
}

.tif-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: 0 0 18px;
}

.tif-story-meta .tif-dateline {
  color: var(--tif-muted);
}

.tif-note {
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 4px solid var(--tif-gold);
  background: #f7f3ea;
}

.tif-note h3 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--tif-navy);
}

.tif-correction {
  border-left-color: var(--tif-alert);
  background: #fbefef;
}

.tif-ai {
  background: #f1f4f6;
  border-left-color: #587086;
}

.tif-article-footer {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--tif-line);
  color: var(--tif-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.tif-tip-box,
.tif-empty {
  padding: 28px;
  border: 1px solid var(--tif-line);
  background: var(--tif-paper);
}

.tif-tip-box h2,
.tif-empty h2 {
  margin-top: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--tif-navy);
}

@media (max-width: 900px) {
  .tif-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tif-lead,
  .tif-lead-overlay {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .tif-alert-strip {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .tif-alert-strip time {
    font-size: .75rem;
  }
  .tif-grid {
    grid-template-columns: 1fr;
  }
  .tif-lead,
  .tif-lead-overlay {
    min-height: 390px;
  }
  .tif-lead-content {
    padding: 26px 20px;
  }
  .tif-lead h2 {
    font-size: 2.2rem;
  }
  .tif-lead-location,
  .tif-card-location,
  .tif-dateline {
    display: block;
    margin: 8px 0 0;
  }
}
