/* ── Highlights Callout Box ── */
.highlights-box {
  background: var(--color-accent-blue-light);
  border-right: 4px solid var(--color-accent-blue);
  border-left: none;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  padding: var(--space-7) var(--space-8);
  margin-bottom: var(--space-8);
  position: relative;
  overflow: hidden;
}

/* Subtle watermark icon */
.highlights-box::before {
  content: '★';
  position: absolute;
  bottom: -10px;
  left: var(--space-4);
  font-size: 6rem;
  color: var(--color-accent-blue);
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
}

/* ── Box Header ── */
.highlights-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.highlights-icon-badge {
  width: 38px;
  height: 38px;
  background: var(--color-accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.35);
}

.highlights-icon-badge svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.highlights-heading {
  font-size: var(--font-size-lg);
  font-weight: 800;
  color: var(--color-accent-blue-dark);
}

/* ── Objective Section ── */
.objective-section {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(13, 110, 253, 0.15);
}

.objective-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-2);
}

.objective-label::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--color-accent-blue);
  border-radius: 1px;
  display: inline-block;
}

.objective-text {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1.7;
}

/* ── Key Highlights List ── */
.highlights-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: var(--space-4);
}

.highlights-label::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--color-accent-blue);
  border-radius: 1px;
  display: inline-block;
}

.highlights-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  line-height: 1.65;
}

.highlights-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--color-accent-blue);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .highlights-box {
    padding: var(--space-5) var(--space-5);
  }
}
