@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@400;600;700&display=swap");

:root {
  --primary: #b91c1c;
  --secondary: #1f2937;
  --header-h: 3.75rem;
}

@media (min-width: 768px) {
  :root {
    --header-h: 4rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 4.25rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
}

.font-display,
h1,
h2,
h3,
.brand {
  font-family: "Playfair Display", Georgia, serif;
}

.hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(17, 24, 39, 0.88) 0%,
    rgba(185, 28, 28, 0.42) 70%,
    rgba(17, 24, 39, 0.55) 100%
  );
}

.page-hero-overlay {
  background: linear-gradient(to right, rgba(17, 24, 39, 0.82), rgba(185, 28, 28, 0.45));
}

.line-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-clip {
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.site-nav {
  background: #626262;
  position: fixed;
  width: 100%;
  z-index: 50;
  top: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  min-height: var(--header-h);
  padding: 0.25rem 3.25rem;
}

@media (min-width: 768px) {
  .site-nav-inner {
    justify-content: space-between;
    padding: 0.25rem 1.5rem 0.25rem 0.75rem;
    gap: 1.25rem;
  }
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: calc(100vw - 5.5rem);
  object-fit: contain;
}

@media (min-width: 768px) {
  .site-logo {
    height: 3.35rem;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .site-logo {
    height: 3.5rem;
  }
}

.menu-btn {
  color: #fff;
  flex-shrink: 0;
  padding: 0.45rem;
  border-radius: 0.4rem;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .menu-btn {
    position: static;
    transform: none;
  }
}

.menu-btn:hover,
.menu-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-desktop {
  gap: 0.85rem;
  font-size: 0.78rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (min-width: 1024px) {
  .nav-desktop {
    gap: 1.25rem;
    font-size: 0.875rem;
  }
}

.nav-link {
  color: #d1d5db;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #f87171;
  font-weight: 700;
}

.page-offset {
  margin-top: var(--header-h);
}

#mobileMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: #585858;
  border-top: 1px solid #737373;
}

#mobileMenu.open {
  max-height: 420px;
}

#mobileMenu a {
  color: #e5e5e5;
}

#mobileMenu a.text-primary {
  color: #f87171;
}

.story-prose p + p {
  margin-top: 1rem;
}
