/* Card */
.ex-card {
  width: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  border-radius: 16px;
  border: 1px solid #e9e9e9;
  background: #f8f8f9;
}

/* Media */
.ex-card__media {
  position: relative;
  display: block;
  height: 360px;
  overflow: hidden;
}
.ex-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ex-card__fallback {
  background: #00807d; /* fallback color */
  width: 100%;
  height: 100%;
}

/* Date badge */
.ex-card__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding: 16px;
  gap: 16px;
  border-radius: 16px;
  background: #ffc845;
}
.ex-card__badge .d {
  font-family: Poppins;
  color: #000;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 4px;
  margin-top: 12px;
}
.ex-card__badge .m {
  font-family: Poppins;
  text-align: center;
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 4px;
}

/* Body */
.ex-card__body {
  padding: 44px;
  border-top: 1px solid #f1f1f1;
}
.ex-card__title {
  margin: 0 0 24px 0;
  font: 600 22px/1.4 Poppins, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
}
.ex-card__title a {
  color: #000;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px; /* 133.333% */
}
.ex-card__title a:hover {
  text-decoration: underline;
}

.ex-card__teaser {
  margin: 0 0 14px 0;
  color: #3b3b3b;
}

/* Topics chips (reuse your KR chip style if you like) */
.ex-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.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 {
  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;
}
