body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #111;
  background: #fff;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-size: 30px;
  font-weight: bold;
}

nav a {
  margin-left: 20px;
  color: #111;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 70px 6%;
  border-bottom: 1px solid #ddd;
  max-width: 1100px;
}

.kicker,
.category,
.byline {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #777;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 10px 0;
}

.hero p {
  font-size: 21px;
  line-height: 1.5;
  max-width: 760px;
}

.layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 50px 6%;
}

.lead-story h2 {
  font-size: 38px;
}

.lead-story a {
  color: #111;
  text-decoration: none;
}

.sidebar {
  border-left: 1px solid #ddd;
  padding-left: 30px;
}

.sections {
  padding: 50px 6%;
  border-top: 1px solid #ddd;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.grid a {
  padding: 18px;
  border: 1px solid #ddd;
  color: #111;
  text-decoration: none;
  font-weight: bold;
}

footer {
  padding: 30px 6%;
  border-top: 1px solid #ddd;
  color: #555;
}

@media (max-width: 800px) {
  .site-header,
  .layout {
    display: block;
  }

  nav a {
    display: block;
    margin: 12px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-left: none;
    padding-left: 0;
  }
}
