.wide-article__inner {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 2000px;
}

.wide-article__title {
  margin-bottom: 8px;
  font-family: 'Dosis', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wide-article__title-link {
  display: block;
}

.wide-article__read-time {
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--clr-text-light);
}

.wide-article__content {
  position: absolute;
  bottom: 24px;
  right: 0;
  border-radius: 10px 0 0 10px;
  max-width: 90%;
  padding: 16px 24px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  background: #fff;
}

.wide-article__read-more-link {
  font-weight: 700;
}

.wide-article__image {
  height: clamp(450px, 45vw, 800px);
}

.wide-article__image picture {
  display: unset;
}

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

@media (min-width:992px) {
  .wide-article__content {
    min-height: 144px;
    max-width: 70%;
    padding: 32px 72px;
  }
}

@media (min-width: 2000px) {
  .wide-article {
    padding: 0 16px;
  }

  .wide-article__inner {
    border-radius: 10px;
  }
}
