:root {
  --lp-black: #0b0b0a;
  --lp-ink: #171715;
  --lp-muted: #5f5d58;
  --lp-paper: #f4f1e8;
  --lp-paper-deep: #e7e0d1;
  --lp-line: rgba(11, 11, 10, 0.72);
  --lp-hairline: rgba(11, 11, 10, 0.2);
  --lp-red: #bf3528;
  --lp-blue: #1f5f77;
  --lp-gold: #9d7f3a;
  --lp-font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --lp-font-sans: "Helvetica Neue", Arial, sans-serif;
  --lp-font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.lp-newspaper-theme {
  margin: 0;
  background: #252523;
  color: var(--lp-ink);
  font-family: var(--lp-font-sans);
  font-size: 16px;
  line-height: 1.55;
}

body.lp-newspaper-theme a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

body.lp-newspaper-theme img {
  display: block;
  max-width: 100%;
  height: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--lp-black);
  color: var(--lp-paper);
}

.lp-site-header,
.lp-site-main,
.lp-site-footer {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--lp-paper);
  background-image:
    linear-gradient(rgba(11, 11, 10, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 15% 20%, rgba(157, 127, 58, 0.08), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(31, 95, 119, 0.06), transparent 28%);
  background-size: 100% 7px, 720px 720px, 680px 680px;
}

.lp-site-main {
  min-height: 70vh;
  padding: 0 48px 64px;
}

.lp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--lp-line);
}

.lp-header-bar {
  display: grid;
  grid-template-columns: 160px 1fr 260px;
  align-items: stretch;
  min-height: 74px;
  border-top: 1px solid var(--lp-line);
}

.lp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--lp-line);
}

.lp-brand .custom-logo-link,
.lp-brand__fallback {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-black);
  text-decoration: none;
}

.lp-brand img.custom-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.lp-brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--lp-black);
  border-radius: 50%;
  font-family: var(--lp-font-display);
  font-size: 0.75rem;
}

.lp-brand__name {
  font-family: var(--lp-font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.lp-primary-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.lp-menu,
.lp-fallback-menu,
.lp-footer-menu {
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.lp-menu > li,
.lp-fallback-menu > li {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--lp-hairline);
}

.lp-menu a,
.lp-fallback-menu a {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0 18px;
  font-family: var(--lp-font-display);
  font-size: 0.72rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lp-menu a:hover,
.lp-menu a:focus-visible,
.lp-fallback-menu a:hover,
.lp-fallback-menu a:focus-visible {
  background: var(--lp-black);
  color: var(--lp-paper);
}

.lp-header-actions {
  display: grid;
  grid-template-columns: 1fr 96px;
  align-items: stretch;
  border-left: 1px solid var(--lp-line);
}

.lp-search {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-right: 1px solid var(--lp-line);
}

.lp-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 8px;
  border: 0;
  background: transparent;
  color: var(--lp-ink);
  font-family: var(--lp-font-sans);
  font-size: 0.85rem;
  outline: 0;
}

.lp-search button {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  font-size: 0;
}

.lp-search button::before,
.lp-search button::after {
  position: absolute;
  content: "";
}

.lp-search button::before {
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--lp-black);
  border-radius: 50%;
}

.lp-search button::after {
  top: 21px;
  left: 21px;
  width: 9px;
  height: 2px;
  background: var(--lp-black);
  transform: rotate(45deg);
}

.lp-sign-in {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--lp-font-display);
  font-size: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
}

.lp-sign-in:hover,
.lp-sign-in:focus-visible {
  background: var(--lp-red);
  color: #fff;
}

.lp-menu-toggle {
  display: none;
}

.lp-hero {
  padding-top: 42px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.82fr) minmax(260px, 0.78fr);
  border: 1px solid var(--lp-line);
}

.lp-lead-story,
.lp-headline-stack,
.lp-visual-card {
  min-width: 0;
  padding: 28px;
}

.lp-lead-story,
.lp-headline-stack {
  border-right: 1px solid var(--lp-line);
}

.lp-lead-story h1,
.lp-single-header h1,
.lp-archive-header h1,
.lp-big-intro h2,
.lp-section-heading h2,
.lp-empty-state h1 {
  margin: 0;
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lp-lead-story h1 {
  margin-bottom: 18px;
  font-size: 3rem;
}

.lp-lead-article h2,
.lp-stack-item h2,
.lp-visual-card h2,
.lp-card__title,
.lp-sidebar-box h2,
.lp-section-card__header h2 {
  margin: 0;
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lp-lead-article h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.lp-lead-article h2 a,
.lp-stack-item h2 a,
.lp-visual-card h2 a,
.lp-card__title a,
.lp-post-navigation a {
  text-decoration: none;
}

.lp-lead-article p {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--lp-muted);
  font-family: var(--lp-font-serif);
  font-size: 1rem;
}

.lp-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--lp-muted);
  font-family: var(--lp-font-display);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.lp-meta-line > * {
  position: relative;
}

.lp-meta-line > * + *::before {
  position: absolute;
  left: -9px;
  content: "-";
}

.lp-kicker {
  color: var(--lp-black);
  text-decoration: none;
}

.lp-kicker:hover,
.lp-kicker:focus-visible {
  color: var(--lp-red);
}

.lp-lead-media,
.lp-card__media,
.lp-sidebar-cta__media,
.lp-visual-card__image,
.lp-single-image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  background: var(--lp-paper-deep);
}

.lp-lead-media,
.lp-visual-card__image {
  aspect-ratio: 16 / 10;
}

.lp-print-image::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.03)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.lp-print-image__img,
.lp-card__media img,
.lp-lead-media img,
.lp-visual-card__image img,
.lp-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) sepia(0.09);
}

.lp-image-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 95, 119, 0.16), transparent 42%),
    linear-gradient(315deg, rgba(191, 53, 40, 0.13), transparent 48%),
    repeating-linear-gradient(0deg, rgba(11, 11, 10, 0.055) 0 1px, transparent 1px 8px),
    var(--lp-paper-deep);
}

.lp-image-placeholder::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(11, 11, 10, 0.28);
  content: "";
}

.lp-image-placeholder::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--lp-black);
  content: "";
}

.lp-image-placeholder span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid var(--lp-line);
  background: rgba(244, 241, 232, 0.72);
  font-family: var(--lp-font-display);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.lp-stack-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 14px;
  padding: 0 0 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-stack-item:last-child {
  margin-bottom: 0;
}

.lp-stack-item h2 {
  grid-column: 1 / 2;
  font-size: 1rem;
}

.lp-stack-item .lp-meta-line {
  grid-column: 1 / 2;
  margin: 0;
}

.lp-arrow-link {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  align-self: center;
  border: 1px solid var(--lp-line);
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  text-decoration: none;
}

.lp-arrow-link:hover,
.lp-arrow-link:focus-visible {
  background: var(--lp-black);
  color: var(--lp-paper);
}

.lp-visual-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lp-visual-card__body h2 {
  margin-top: 8px;
  font-size: 1.1rem;
}

.lp-news-ticker {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  border-left: 1px solid var(--lp-line);
  white-space: nowrap;
}

.lp-news-ticker a {
  flex: 0 0 auto;
  padding: 12px 22px;
  border-right: 1px solid var(--lp-hairline);
  font-family: var(--lp-font-display);
  font-size: 0.66rem;
  text-decoration: none;
  text-transform: uppercase;
}

.lp-news-ticker a::before {
  content: "Breaking News ";
  color: var(--lp-red);
}

.lp-big-intro {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: start;
  padding: 36px 0 34px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-big-intro p,
.lp-section-heading p,
.lp-archive-header p,
.lp-footer-eyebrow,
.lp-empty-state > p:first-child {
  margin: 0;
  color: var(--lp-muted);
  font-family: var(--lp-font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.lp-big-intro h2 {
  max-width: 980px;
  font-size: 2.35rem;
}

.lp-category-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0;
}

.lp-section-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.18);
}

.lp-section-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--lp-hairline);
}

.lp-section-card__header h2 {
  font-size: 0.82rem;
}

.lp-section-card__header span {
  color: var(--lp-blue);
}

.lp-section-card__header a {
  color: var(--lp-muted);
  font-family: var(--lp-font-display);
  font-size: 0.62rem;
  text-decoration: none;
  text-transform: uppercase;
}

.lp-card {
  min-width: 0;
  border: 1px solid var(--lp-line);
  background: rgba(244, 241, 232, 0.62);
}

.lp-card__media {
  aspect-ratio: 4 / 3;
  border-width: 0 0 1px;
}

.lp-card__body {
  padding: 16px;
}

.lp-card__title {
  margin-bottom: 12px;
  font-size: 1.02rem;
}

.lp-card__excerpt {
  margin: 0 0 14px;
  color: var(--lp-muted);
  font-family: var(--lp-font-serif);
  font-size: 0.96rem;
}

.lp-read-more {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.lp-read-more::after {
  margin-left: 6px;
  content: "+";
}

.lp-card--section .lp-card__body {
  padding: 12px 0 0;
}

.lp-card--section {
  border: 0;
  background: transparent;
}

.lp-card--section + .lp-card--section {
  padding-top: 16px;
  border-top: 1px solid var(--lp-hairline);
}

.lp-card--section .lp-card__media {
  border: 1px solid var(--lp-line);
}

.lp-latest-grid-section {
  padding-top: 10px;
}

.lp-section-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--lp-line);
}

.lp-section-heading h2 {
  font-size: 2rem;
}

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

.lp-single {
  padding-top: 54px;
}

.lp-single-header {
  max-width: 980px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-single-header h1 {
  margin-top: 12px;
  font-size: 4rem;
}

.lp-share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.lp-share a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--lp-line);
  font-family: var(--lp-font-display);
  font-size: 0.66rem;
  text-decoration: none;
  text-transform: uppercase;
}

.lp-share a:hover,
.lp-share a:focus-visible {
  background: var(--lp-black);
  color: var(--lp-paper);
}

.lp-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
  padding-top: 34px;
}

.lp-single-main {
  min-width: 0;
}

.lp-single-image {
  margin: 0 0 28px;
  aspect-ratio: 16 / 10;
}

.lp-single-image figcaption {
  padding: 8px 0 0;
  color: var(--lp-muted);
  font-size: 0.78rem;
}

.lp-dek {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  font-size: 1.12rem;
  line-height: 1.35;
}

.lp-content {
  max-width: 820px;
  font-family: var(--lp-font-serif);
  font-size: 1.06rem;
  line-height: 1.72;
}

.lp-content > *:first-child {
  margin-top: 0;
}

.lp-content h2,
.lp-content h3,
.lp-content h4 {
  margin: 1.45em 0 0.55em;
  color: var(--lp-black);
  font-family: var(--lp-font-sans);
  line-height: 1.2;
}

.lp-content h2 {
  font-size: 1.75rem;
}

.lp-content h3 {
  font-size: 1.35rem;
}

.lp-content a {
  color: var(--lp-blue);
  font-weight: 700;
}

.lp-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--lp-red);
  background: rgba(255, 255, 255, 0.24);
  font-family: var(--lp-font-sans);
  font-weight: 700;
}

.lp-content ul,
.lp-content ol {
  padding-left: 1.4em;
}

.lp-post-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--lp-line);
}

.lp-post-navigation a {
  display: block;
  min-height: 98px;
  padding: 14px;
  border: 1px solid var(--lp-line);
  font-family: var(--lp-font-display);
  text-transform: uppercase;
}

.lp-post-navigation span {
  display: block;
  margin-bottom: 6px;
  color: var(--lp-muted);
  font-size: 0.65rem;
}

.lp-sidebar {
  min-width: 0;
}

.lp-sidebar-stack {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp-sidebar-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lp-sidebar-box h2 {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-line);
  font-size: 1rem;
}

.lp-sidebar-ctas {
  padding: 14px;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.18);
}

.lp-sidebar-ctas h2 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-line);
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  font-size: 1rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.lp-sidebar-cta {
  display: block;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  background: rgba(244, 241, 232, 0.72);
  color: var(--lp-black);
  text-decoration: none;
}

.lp-sidebar-cta + .lp-sidebar-cta {
  margin-top: 12px;
}

.lp-sidebar-cta__media {
  display: block;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--lp-line);
  background: var(--lp-paper-deep);
}

.lp-sidebar-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) sepia(0.09);
}

.lp-sidebar-cta__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.lp-sidebar-cta__source,
.lp-sidebar-cta__action {
  color: var(--lp-muted);
  font-family: var(--lp-font-display);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.lp-sidebar-cta__title {
  color: var(--lp-black);
  font-family: var(--lp-font-display);
  font-size: 1rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.lp-sidebar-cta__description {
  color: var(--lp-muted);
  font-family: var(--lp-font-serif);
  font-size: 0.94rem;
  line-height: 1.45;
}

.lp-sidebar-cta__action {
  color: var(--lp-red);
}

.lp-sidebar-cta__action::after {
  margin-left: 6px;
  content: "+";
}

.lp-card--compact {
  border: 0;
  border-bottom: 1px solid var(--lp-hairline);
  background: transparent;
}

.lp-card--compact .lp-card__media {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--lp-line);
}

.lp-card--compact .lp-card__body {
  padding: 10px 0 14px;
}

.lp-card--compact .lp-card__title {
  font-size: 0.86rem;
}

.lp-card--compact .lp-read-more {
  display: none;
}

.lp-archive-header,
.lp-empty-state {
  padding: 54px 0 32px;
  border-bottom: 1px solid var(--lp-line);
}

.lp-archive-header h1,
.lp-empty-state h1 {
  max-width: 980px;
  margin-top: 8px;
  font-size: 3.2rem;
}

.lp-archive-description {
  max-width: 760px;
  margin-top: 14px;
  color: var(--lp-muted);
  font-family: var(--lp-font-serif);
}

.lp-archive-grid {
  padding-top: 28px;
}

.lp-pagination {
  padding-top: 30px;
}

.lp-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-pagination a,
.lp-pagination span {
  display: inline-flex;
  min-height: 38px;
  min-width: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lp-line);
  padding: 0 10px;
  font-family: var(--lp-font-display);
  text-decoration: none;
}

.lp-pagination .current {
  background: var(--lp-black);
  color: var(--lp-paper);
}

.lp-empty-state {
  max-width: 760px;
}

.lp-empty-state form {
  display: flex;
  max-width: 440px;
  margin: 22px 0;
}

.lp-empty-state input[type="search"] {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--lp-line);
  background: rgba(255, 255, 255, 0.38);
}

.lp-empty-state input[type="submit"],
.lp-empty-state button[type="submit"] {
  border: 1px solid var(--lp-line);
  border-left: 0;
  background: var(--lp-black);
  color: var(--lp-paper);
  font-family: var(--lp-font-display);
  text-transform: uppercase;
}

.lp-site-footer {
  border-top: 1px solid var(--lp-line);
  color: var(--lp-paper);
  background-color: var(--lp-black);
  background-image: none;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 28px;
  padding: 42px 48px;
}

.lp-footer-brand h2,
.lp-footer-links h3,
.lp-footer-contact h3 {
  margin: 8px 0 12px;
  font-family: var(--lp-font-display);
  text-transform: uppercase;
}

.lp-footer-brand p:last-child {
  max-width: 520px;
  color: rgba(244, 241, 232, 0.72);
}

.lp-footer-menu {
  display: block;
}

.lp-footer-menu li {
  margin-bottom: 8px;
}

.lp-footer-menu a,
.lp-footer-contact a {
  color: var(--lp-paper);
  font-family: var(--lp-font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 48px;
  border-top: 1px solid rgba(244, 241, 232, 0.16);
  color: rgba(244, 241, 232, 0.64);
  font-family: var(--lp-font-display);
  font-size: 0.66rem;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .lp-site-main {
    padding-right: 30px;
    padding-left: 30px;
  }

  .lp-header-bar {
    grid-template-columns: 130px 1fr 210px;
  }

  .lp-menu a,
  .lp-fallback-menu a {
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .lp-hero-grid,
  .lp-category-board,
  .lp-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-lead-story {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-headline-stack {
    border-right: 1px solid var(--lp-line);
  }

  .lp-single-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lp-sidebar-stack {
    position: static;
  }
}

@media (max-width: 760px) {
  body.lp-newspaper-theme {
    background: var(--lp-paper);
  }

  .lp-site-header,
  .lp-site-main,
  .lp-site-footer {
    max-width: none;
  }

  .lp-site-main {
    padding: 0 16px 40px;
  }

  .lp-header-bar {
    position: relative;
    grid-template-columns: 84px 1fr 58px;
    min-height: 62px;
  }

  .lp-brand {
    justify-content: flex-start;
    padding-left: 14px;
  }

  .lp-brand img.custom-logo {
    width: 40px;
    height: 40px;
  }

  .lp-menu-toggle {
    display: grid;
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    width: 58px;
    min-height: 62px;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--lp-line);
    background: transparent;
    cursor: pointer;
  }

  .lp-menu-toggle__line,
  .lp-menu-toggle__line::before,
  .lp-menu-toggle__line::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--lp-black);
    content: "";
  }

  .lp-menu-toggle__line::before {
    transform: translateY(-7px);
  }

  .lp-menu-toggle__line::after {
    transform: translateY(5px);
  }

  .lp-primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-paper);
  }

  .lp-primary-nav.is-open {
    display: block;
  }

  .lp-menu,
  .lp-fallback-menu {
    display: block;
  }

  .lp-menu > li,
  .lp-fallback-menu > li {
    border-right: 0;
    border-bottom: 1px solid var(--lp-hairline);
  }

  .lp-menu a,
  .lp-fallback-menu a {
    min-height: 48px;
    width: 100%;
  }

  .lp-header-actions {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .lp-search {
    border-right: 0;
  }

  .lp-sign-in {
    display: none;
  }

  .lp-hero {
    padding-top: 18px;
  }

  .lp-hero-grid,
  .lp-category-board,
  .lp-post-grid,
  .lp-big-intro,
  .lp-section-heading,
  .lp-post-navigation,
  .lp-footer-grid {
    grid-template-columns: 1fr;
  }

  .lp-lead-story,
  .lp-headline-stack,
  .lp-visual-card {
    padding: 18px;
    border-right: 0;
  }

  .lp-headline-stack {
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-lead-story h1 {
    font-size: 2.1rem;
  }

  .lp-big-intro h2,
  .lp-section-heading h2 {
    font-size: 1.6rem;
  }

  .lp-big-intro,
  .lp-section-heading {
    gap: 10px;
  }

  .lp-news-ticker a {
    padding: 10px 16px;
  }

  .lp-single {
    padding-top: 28px;
  }

  .lp-single-header h1,
  .lp-archive-header h1,
  .lp-empty-state h1 {
    font-size: 2.2rem;
  }

  .lp-single-layout {
    padding-top: 24px;
  }

  .lp-content {
    font-size: 1rem;
  }

  .lp-footer-grid,
  .lp-footer-bottom {
    padding-right: 16px;
    padding-left: 16px;
  }

  .lp-footer-bottom {
    flex-direction: column;
  }
}
