.c-resource-overview {
  background: #f6f7f9;
  padding: 64px 0;
  width: 100%;
}

.c-resource-overview__inner {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 60px;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

/* ── Left column ─────────────────────────────────────────────────── */
.c-resource-overview__content {
  flex: 1 1 60%;
  min-width: 0;
}

.c-resource-overview__heading {
  color: #1a2533;
  font-family: var(--font-family-mmc-bold);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

.c-resource-overview__rule {
  background: #0077cc;
  border-radius: 2px;
  height: 3px;
  margin-bottom: 24px;
  width: 48px;
}

.c-resource-overview__subheading {
  color: #0077cc;
  font-family: var(--font-family-mmc-bold);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}

.c-resource-overview__body {
  color: #3d4a57;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.7;
}

.c-resource-overview__body p {
  margin: 0 0 16px;
}

.c-resource-overview__body p:last-child {
  margin-bottom: 0;
}

/* ── Right column ────────────────────────────────────────────────── */
.c-resource-overview__media {
  flex: 0 0 38%;
  max-width: 38%;
}

.c-resource-overview__image-wrap {
  border-radius: 4px;
  overflow: hidden;
}

.c-resource-overview__image-wrap .media,
.c-resource-overview__image-wrap .field,
.c-resource-overview__image-wrap .field__item {
  display: block;
}

.c-resource-overview__image-wrap img {
  display: block;
  height: auto;
  width: 100%;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .c-resource-overview__inner {
    flex-direction: column;
    gap: 32px;
  }
  .c-resource-overview__media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
