.oc-card {
  display: grid;
  grid-template-columns: 1fr 742px;
  gap: 0;
  border-radius: 16px;
  background: #f8f8f9;
  align-items: stretch;
  border-radius: 16px;
}

.oc-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oc-right img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.oc-right {
  display: block;
}

.ex-card__body {
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.ex-card__title {
  margin: 0 0 24px 0;
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.24px;
}
.ex-card__title a {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.24px;
}
.ex-card__title a:hover {
  text-decoration: underline;
}

.ex-card__teaser {
  margin: 0 0 32px 0;
  color: #000;

  /* Body/P1 */
  font-family: Poppins;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 176.471% */
}

/* Topics chips (reuse your KR chip style if you like) */
.ex-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ex-card__topics .chip {
  border-radius: 1000px;
  border: 1px solid #d0d0d0;
  padding: 8px 12px;
  font: 500 12px/1 Poppins, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  color: #000;
  text-decoration: none;
}
.ex-card__topics .chip:hover {
  background: #fafafa;
}

/* CTA */
.ex-card__cta {
  margin-top: 0 !important;
  font-family: Poppins;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  letter-spacing: 0.16px;
  text-transform: uppercase;
}
.ex-card__cta:hover {
  text-decoration: underline;
}
.ex-card__cta-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 41px;
  background: #fa455c;
  align-items: center;
  justify-content: center;
}
.ex-card__cta-icon img {
  display: block;
  width: 24px;
  height: 24px;
}

/* Mobile */
@media (max-width: 980px) {
  .oc-card {
    display: flex;
    flex-direction: column;
  }
  .oc-card .oc-right {
    order: -1;
    height: 200px;
  }
  .oc-card .oc-left .ex-card__body {
    padding: 24px;
  }
  .ex-card__title {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 144.444% */
  }
  .ex-card__title a {
    color: #000;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px; /* 144.444% */
  }
  .ex-card__teaser {
    color: #000;

    /* Body/P3 */
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 173.333% */
  }
  .ex-card__body {
    gap: 40px;
  }
}
