/* components/organisms/content-highlight/content-highlight.css */

.c-content-highlight {
  background-color: #f3f4f7;
  box-sizing: border-box;
  overflow: hidden;
  padding: 50px 0;
  position: relative;
  width: 100%;
}

/* Decorative blobs bottom-right — purple + blue circles */
.c-content-highlight::after {
  background: radial-gradient(circle at 70% 80%, rgba(130, 80, 200, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 90% 60%, rgba(100, 60, 180, 0.2) 0%, transparent 40%);
  border-radius: 50%;
  bottom: -40px;
  content: '';
  height: 280px;
  pointer-events: none;
  position: absolute;
  right: -60px;
  width: 280px;
}

.c-content-highlight__inner {
  align-items: center;
  box-sizing: border-box;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* ── LEFT ────────────────────────────────────────────────────── */
.c-content-highlight__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-content-highlight__title {
  color: #1a1a2e;
  font-family: var(--font-family-mmc-bold);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* Blue underline accent below title */
.c-content-highlight__divider {
  background-color: #003865;
  border: none;
  height: 3px;
  margin: 0;
  width: 40px;
}

.c-content-highlight__description {
  color: #555e6b;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Meta row: date | category | duration */
.c-content-highlight__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
}

.c-content-highlight__meta-item {
  align-items: center;
  color: #555e6b;
  display: flex;
  font-family: var(--font-family);
  font-size: 13px;
  gap: 7px;
}

.c-content-highlight__meta-icon {
  color: #009de0;
  display: flex;
  flex-shrink: 0;
}

.c-content-highlight__meta-icon svg {
  height: 16px;
  width: 16px;
}

/* ── RIGHT – Video Player ────────────────────────────────────── */
.c-content-highlight__right {
  position: relative;
}

.c-content-highlight__video-wrap {
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.c-content-highlight__video-wrap iframe,
.c-content-highlight__video-wrap video {
  border: none;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* 16:9 aspect ratio wrapper */
.c-content-highlight__video-ratio {
  aspect-ratio: 16 / 9;
  display: block;
  position: relative;
  width: 100%;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .c-content-highlight__inner {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .c-content-highlight__title {
    font-size: 26px;
  }

  .c-content-highlight::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .c-content-highlight {
    padding: 40px 0;
  }

  .c-content-highlight__title {
    font-size: 22px;
  }

  .c-content-highlight__meta {
    gap: 16px;
  }
}
