<style>
/* ── Intelligence Brief Callout ── */
.brief-callout {
  background: #1219A3;
  padding: 5rem 3rem;
  width: 100%;
  box-sizing: border-box;
}

.brief-callout-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Left column — label, title, body, CTA */
.brief-callout-left {
  flex: 1.6;
}

.brief-callout-label {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #00AEE6;
  margin-bottom: 1.25rem;
}

.brief-callout-title {
  font-family: Montserrat, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.brief-callout-desc {
  font-family: Montserrat, sans-serif;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, .75);
  margin: 0 0 2rem;
}

.brief-callout-cta {
  display: inline-block;
  font-family: Montserrat, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #21242C;
  background: #00AEE6;
  padding: .85rem 2rem;
  text-decoration: none;
  border-radius: 0;
  transition: background .25s, color .25s;
}

.brief-callout-cta:hover {
  background: #ffffff;
  color: #1219A3;
}

/* Divider */
.brief-callout-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* Right column — stats */
.brief-callout-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.brief-stat {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.brief-stat-num {
  font-family: Montserrat, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #00AEE6;
  line-height: 1;
}

.brief-stat-label {
  font-family: Montserrat, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, .6);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .brief-callout { padding: 3rem 1.5rem }
  .brief-callout-inner { flex-direction: column; gap: 2.5rem }
  .brief-callout-divider { width: 100%; height: 1px; align-self: auto }
  .brief-callout-right { flex-direction: row; gap: 2rem }
  .brief-callout-title { font-size: 1.75rem }
  .brief-stat-num { font-size: 2.5rem }
}
.brief-callout {
  background: #1219A3 !important;
  padding: 5rem 3rem;
  width: 100%;
  box-sizing: border-box;
}
</style>