:root {
  --color_1: #1D2B2E;
  --color_2: #0D0F11;
  --color_3: #232426;
  --color_4: rgb(86, 123, 149);
  --color_5: #1C1E1F;
  --color_6: #C7C7C7;
  --font_base: 0.875rem;
}

body {
  background-color: white;
  padding: 0;
  margin: 0;
  font-family: nyt-franklin, helvetica, arial, sans-serif;
  font-size: var(--font_base);
}

header a {
  color: white;
}
header .navbar {
  margin: 0 auto;
  display: flex;
  justify-content: end;
}
header .subscribe {
  margin: 0 auto;
  display: flex;
  justify-content: end;
}

.subscribe {
  display: flex;
  flex-direction: row-reverse;
}
.subscribe span, .subscribe a {
  flex-grow: 0;
  background-color: var(--color_4);
  color: white;
  padding: 8px 12px;
  border-radius: 3px;
  cursor: pointer;
  margin-left: 1em;
  font-size: 11px;
  font-weight: 700;
}

.container {
  max-width: 1220px;
  padding: 0.3em 1em;
  font-weight: 400;
  margin: 0 auto;
}

#logo {
  margin: 0 auto;
  display: block;
  height: 2.5em;
  max-width: 70vw;
}

.news-categories {
  grid-column: span 20;
  display: flex;
  align-content: space-between;
  padding: 0;
  margin-bottom: 1em;
  border-bottom: 1px double var(--color_2);
  position: relative;
}
.news-categories::after {
  content: "";
  border-bottom: 1px double var(--color_2);
  display: block;
  position: absolute;
  bottom: -5px;
  width: 100%;
}
.news-categories li {
  display: block;
  flex-basis: 100%;
  text-align: center;
  padding: 1em;
  text-transform: capitalize;
  cursor: pointer;
}
.news-categories li:hover {
  background-color: var(--color_2);
}
.content {
  margin: -1em auto 0 auto;
  display: grid;
  grid-column-gap: calc(2rem + 1px);
  grid-template-columns: repeat(20, 1fr);
  font-family: nyt-cheltenham, cheltenham-fallback-georgia, cheltenham-fallback-noto, georgia, "times new roman", times, serif;
}

.articles {
  min-width: 0;
  position: relative;
  grid-column: span 14;
}
.articles:after {
  display: block;
  content: "";
  position: absolute;
  right: -17px;
  bottom: 0;
  top: 0;
  border-right: 1px solid var(--color_6);
}
.articles article {
  grid-column-gap: calc(2rem + 1px);
  grid-template-columns: repeat(14, 1fr);
  display: block;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--color_6);
}
.articles article > img {
  float: right;
  max-width: 40%;
  padding: 0 0 0.25em 1em;
  grid-column: span 6;
}
.articles article h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.articles article span {
  opacity: 0.4;
}
.articles article > div {
  grid-column: span 8;
}

.ads {
  min-width: 0;
  position: relative;
  grid-column: span 6;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ad--half {
  flex-basis: calc(50% - 0.25vw);
}

img {
  max-width: 100%;
}

.clear {
  float: none;
  clear: both;
}

@media (max-width: 768px) {
  .ads {
    display: none;
  }
  .content {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
  }
  .articles {
    grid-column: span 20;
  }
  #logo {
    margin-top: 1em;
  }
  .news-categories {
    flex-wrap: wrap;
  }
  .news-categories li {
    flex-basis: 25%;
  }
}

/*# sourceMappingURL=style.css.map */
