.overview-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}

.overview-card .card-content {
  gap: 0;
}

.overview-card .media {
  order: 2;
}

.overview-card .content {
  display: flex;
  flex-direction: column;
  order: 1;
  gap: 0;
}

/* Eyebrow */
.overview-card .eyebrow * {
  font: var(--font-16-24-gotham-book);
  font-weight: var(--font-weight-book);
  color: var(--off-black);
  margin-bottom: 10px;
}

/* Title */
.overview-card .title * {
  font: var(--font-36-40);
  font-weight: var(--font-weight-bold);
  color: var(--black);
  margin-bottom: 10px;
}

/* Subtitle */
.overview-card .subtitle * {
  font: var(--font-16-24-gotham-book);
  font-weight: var(--font-weight-book);
  color: var(--off-black);
}

/* Description */
.overview-card .description * {
  font: var(--font-18-26-gotham-book);
  font-weight: var(--font-weight-book);
  color: var(--off-black);
}

/* Posttext */
.overview-card .posttext * {
  font: var(--font-18-26-gotham-book);
  font-weight: var(--font-weight-book);
  color: var(--off-black);
}

.overview-card .title + .description {
  margin-top: 10px;
}

.overview-card .subtitle + .description {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (width >= 1200px) {
  .overview-card {
    margin: 0 auto;

    /* padding-left: 20px; */
    justify-content: space-between;
  }

  .overview-card .content {
    width: 47%;
  }

  .overview-card .media {
    width: 52%;
  }
}

@media (width >= 768px) and (width <= 1199px) {
  /* .overview-card {
    margin: 0 64px;
  } */
  .overview-card .title * {
    font: var(--font-30-32);
    font-weight: var(--font-weight-bold);
  }
}

/* Tablet: column direction, 40px gap */
@media (width <= 1199px) {
  .overview-card {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .overview-card .media {
    order: 2;
    max-width: 100%;
  }

  .overview-card .content {
    order: 1;
    max-width: 100%;
  }
}

/* Mobile: column direction, 20px gap */
@media (width <= 767px) {
  .overview-card {
    /* margin: 0 30px; */
    flex-direction: column;
    gap: 20px;
  }

  .overview-card .title * {
    font: var(--font-20-28);
    font-weight: var(--font-weight-bold);
  }

  .overview-card .description * {
    font: var(--font-16-24-gotham-book);
  }

  .overview-card .media {
    order: 2;
    max-width: 100%;
  }

  .overview-card .content {
    order: 1;
    max-width: 100%;
  }
}


@media (width <= 425px) {
  .overview-card .link-group {
    display: block !important;
  }
  
  .overview-card .link-group a {
    width: 100% !important;
  }
}