.offers_overview .wrapper {
    display: grid;
    grid-template-columns: calc(var(--col) * 7) 1fr;
    gap: calc(var(--col) * 2);
    align-items: start;
    justify-items: end;

    /* padding-top: 32.5rem; */
}

.offers_overview .content_wrap {
  position: sticky;
  top: calc(var(--header, 10rem) + 10rem);
  flex-grow: 1;
}

.offers_overview .headline {
  text-transform: uppercase;
  max-width: 100%;
  line-height: 1;
  margin-bottom: 5rem;
}

.offers_overview .headline em {
  color: var(--secondary);
  font-style: normal;
}

.offers_overview .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

  max-width: calc(var(--col) * 9);
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  align-content: center;
}

.offers_overview .image figure {
  aspect-ratio: 1;
  max-height: calc(var(--col) * 4.5 - .5rem);
  width: 100%;
  background-color: var(--black);
  border-radius: 13px;
}

.offers_overview .image img {
  width: 100%;
  height: 100%;
}

.offers_overview .image[data-size="large"] {
  grid-column: 1 / -1;
}

.offers_overview .image[data-size="large"] figure {
  aspect-ratio: 2 / 1;
}

.offers_overview .image_title{
  padding: 0;
  font-size: var(--small-font);
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

.offers_overview .image {
  position: relative;
  hyphens: auto;
}

.offers_overview .image::after {
  content: "";
  grid-area: 1 / 1;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 13px;
}

.offers_overview .image:hover::after {
  opacity: 1;
}


.offers_overview .image:hover figcaption .image_title {
  color: rgba(255, 255, 255, 0.9);
}

main .offers_overview .grid a::after {
  content: none;
}


/* MOBILES STYLING */

@media screen and (max-width: 1280px) {
    .offers_overview .wrapper {
      display: flex;
      flex-direction: column;
    }

    .offers_overview .content_wrap {
        margin-bottom: 8rem;
    }

    .offers_overview .grid {
      background-color: var(--white);
      z-index: 1;
    }

    .offers_overview .grid {
      max-width: 100%;
      margin: auto;
    }

    .offers_overview .content_wrap {
      position: relative;
      top: auto;
    }

    .offers_overview .grid,
    .offers_overview .image figure {
      width: 100%;
    }

    .offers_overview .image figure {
      max-height: calc(var(--col) * 10 - .5rem);
    }
}




@media screen and (max-width: 560px) {
    .offers_overview figure.image {
    display: grid;
    grid-column: 0;

    overflow: hidden;
    position: relative;
    z-index: 1;
    grid-auto-rows: 100%;
  }
}