*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #ffffff;
  color: #000000;
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.home-main {
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  width: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  min-height: 60vh;
  max-height: 80vh;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

.hero-content h1,
.hero-content .hero-tagline {
  text-shadow:
    0 0 10px #ffffff,
    0 0 20px #ffffff,
    2px 2px 0 #ffffff,
    -2px -2px 0 #ffffff,
    2px -2px 0 #ffffff,
    -2px 2px 0 #ffffff;
}

.hero-tagline {
  margin: 1rem 0 0;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000000;
}

.drudge-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  border-top: 1px solid #000000;
}

.drudge-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.drudge-column {
  padding: 0.75rem 1rem;
  border-right: 1px solid #000000;
}

.drudge-column:last-child {
  border-right: none;
}

.drudge-section + .drudge-section {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #000000;
}

.drudge-section h3 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.drudge-subsection + .drudge-subsection {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #000000;
}

.drudge-subsection h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.news-source {
  font-size: 0.8125rem;
  font-weight: 400;
}

.news-spotlight {
  margin-bottom: 0.875rem;
}

.news-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-kind {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

.drudge-headline {
  font-weight: 700;
}

.drudge-section p {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.drudge-section p:last-child {
  margin-bottom: 0;
}

.resource-country {
  margin: 1rem 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.resource-country:first-of-type {
  margin-top: 0;
}

.resource-links {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.resource-links li {
  margin: 0 0 0.35rem;
}

.resource-links a {
  color: #000000;
  text-decoration: underline;
}

.resource-links a:hover,
.resource-links a:focus {
  color: #000000;
  text-decoration: underline;
}

.site-mission {
  font-size: 0.9375rem;
  font-weight: 700;
}

.candidate-section {
  padding-bottom: 1rem;
}

.candidate-meta {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
}

.candidate-office {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.candidate-office:first-of-type {
  margin-top: 0;
}

.candidate-state {
  margin: 1rem 0 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
}

.candidate-links {
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.candidate-links li {
  margin: 0 0 0.3rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.candidate-links a {
  color: #000000;
  text-decoration: underline;
}

.candidate-links a:hover,
.candidate-links a:focus {
  color: #000000;
  text-decoration: underline;
}

.digest-meta,
.digest-source {
  font-size: 0.8125rem;
}

.digest-list {
  margin: 0 0 0.875rem;
  padding-left: 1.25rem;
}

.digest-list li {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .drudge-columns {
    grid-template-columns: 1fr;
  }

  .drudge-column {
    border-right: none;
    border-bottom: 1px solid #000000;
  }

  .drudge-column:last-child {
    border-bottom: none;
  }
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
}

h2 {
  margin: 0 0 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #000000;
}

h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}

a {
  color: #000000;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.site-footer p {
  margin: 0 0 0.75rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
}

.legal-meta {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
