* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #0e0d0c;
  color: #f2f2f2;
  font-family: 'Georgia', serif;
}
.hero {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}
.hero-container {
  position: relative;
  width: 1000px;
  max-width: 100%;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero-text {
  position: absolute;
  bottom: 6.7%;
  left: 66.6%;
  transform: translateY(0);
  color: #a62222;
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
}
.content {
  display: flex;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 2rem 0;
}
.articles {
  width: 66.66%;
  padding-left: 2.5%;
  padding-right: 2.5%;
}
.articles article {
  margin-bottom: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 1rem;
}
.articles h2 {
  color: #a62222;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}
.sidebar {
  width: 33.33%;
}
.sidebar nav ul,
.sidebar .widget ul {
  list-style: none;
  margin-top: 1rem;
}
.sidebar nav a {
  text-decoration: none;
  color: #e7d76d;
  font-size: 1rem;
}
.sidebar .widget h3 {
  color: #e7d76d;
  margin-top: 1.5rem;
}
.sidebar .widget ul li {
  color: #e7d76d;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .hero-text {
    font-size: 1.8rem;
    left: 10%;
  }
  .content {
    flex-direction: column;
    width: 100%;
    padding: 1rem;
  }
  .articles,
  .sidebar {
    width: 100%;
    padding: 0;
  }
}