.cover {
  position: relative;

  height: 80vh;
  width: 100%;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding-top: min(20vh, 300px);

  display: grid;
  align-items: top;
  justify-items: center;
}

.cover .responsive-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cover h1, .cover p {
  color: var(--clr-white);
}

.cover h1 {
  font-size: var(--fs-l);
  font-weight: 300;
}

.cover p {
  font-weight: 400;
  max-width: min(75%, 500px);
}

/* Content */
/* See: grafik-grid.css */

@media only screen and (min-width: 1100px) {
  .grafik {
    display: block;
    margin: auto;
  }

  .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content max-content;
    row-gap: 200px;
  }
}

/* News */

.news {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.news-container p {
  border-top: 2px solid var(--clr-dark-gray);
  padding-top: 12px;
}

.news-container p a {
  gap: 3px;
}

.news-container p:nth-of-type(n + 3) { /* Only display the first 2 */
  display: none;
}

.news .controls {
  display: flex;
  flex-direction: row;
  gap: 18px;

  align-self: flex-end;
}

.news .controls button {
  background: none;
  padding: 4px 8px;
  outline: none;
  border: none;

  display: grid;
  place-items: center;
}

.news .controls button img {
  max-height: 32px;
}

.news .controls button:hover {
  cursor: pointer;
  opacity: .5;
}

.news .controls button:disabled {
  opacity: .3;
}

@media only screen and (min-width: 1100px) {
  .news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .news .controls button {
    width: 35px;
    height: 35px;
  }
}
