/* ==========================================================
   ac-insights.css — v2.0.0
   Insights page styles
   ========================================================== */

/* ── Hero heading keyword highlight (gradient fill) ── */
.ac-insights-hero__title .ac-text-highlight {
  display: inline;
  white-space: nowrap;
  background: linear-gradient(135deg, #07A9D1, #06CFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Gradient text accent ── */
.ac-insights-page .ac-gradient-text,
.ac-gradient-text {
  background: linear-gradient(135deg, #07A9D1, #06CFC3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animation base ── */
.ac-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ac-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────────────────── */
.ac-insights-page,
.ac-insights-page * {
  box-sizing: border-box;
}
.ac-insights-page {
  font-size: 16px !important;
}

.ac-insights-hero {
  position: relative !important;
  min-height: 90vh !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  background: #010D12 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.admin-bar .ac-insights-hero {
  min-height: calc(90vh - 32px) !important;
}
.ac-insights-hero__center {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
  gap: 0;
}
.ac-insights-hero__center > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.ac-insights-hero .ac-insights-hero__badge-wrap {
  margin-bottom: 24px !important;
  justify-content: center !important;
}
.ac-insights-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 24px !important;
}
.ac-insights-hero__body {
  color: #C8C8C8;
  font-size: 18px;
  line-height: 1.65;
  text-align: center;
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 40px !important;
}
.ac-insights-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px !important;
}
.ac-insights-hero__social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0 !important;
}
.ac-insights-hero__stars {
  display: flex;
  gap: 3px;
  color: #FFB800;
  font-size: 16px;
  line-height: 1;
}
.ac-insights-hero__proof-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
}
.ac-insights-hero__bg-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(7,169,209,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 30% 60%, rgba(6,207,195,0.04) 0%, transparent 60%);
}
.ac-insights-hero .ac-hero-scroll-indicator {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
}

/* ──────────────────────────────────────────────────────────
   SECTION SHARED HEADINGS
   ────────────────────────────────────────────────────────── */
.ac-insights-page h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.ac-insights-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ac-insights-page .ac-badge,
.ac-insights-page .ac-section-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 8px 20px !important;
  border-radius: 100px !important;
  line-height: 1 !important;
  display: inline-block !important;
  font-family: 'Inter', sans-serif !important;
}
.ac-insights-page [class*="__body"],
.ac-insights-page [class*="__subtext"],
.ac-insights-page [class*="__desc"] {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

/* ──────────────────────────────────────────────────────────
   WHAT WE SHARE (expect)
   ────────────────────────────────────────────────────────── */
.ac-insights-expect {
  background: #010D12;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ac-insights-expect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,169,209,0.15), transparent);
}
.ac-insights-expect__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ac-insights-expect__header {
  text-align: center;
  margin-bottom: 80px;
}
.ac-insights-expect__title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 24px 0 24px;
}
.ac-insights-expect__body {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 680px;
  margin: 0 auto;
}
.ac-insights-expect__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}
.ac-insights-expect__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
}
.ac-insights-expect__col-title--do {
  color: #06CFC3;
  border-color: rgba(6,207,195,0.3);
}
.ac-insights-expect__col-title--dont {
  color: rgba(255,255,255,0.5);
  border-color: rgba(255,255,255,0.1);
}
.ac-insights-expect__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ac-insights-expect__list li {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 32px;
  position: relative;
}
.ac-insights-expect__list--do li {
  color: rgba(255,255,255,0.85);
}
.ac-insights-expect__list--do li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(6,207,195,0.12);
  border: 1.5px solid #06CFC3;
}
.ac-insights-expect__list--do li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 4px;
  border-left: 1.5px solid #06CFC3;
  border-bottom: 1.5px solid #06CFC3;
  transform: rotate(-45deg);
}
.ac-insights-expect__list--dont li {
  color: rgba(255,255,255,0.45);
}
.ac-insights-expect__list--dont li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.ac-insights-expect__list--dont li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 6px;
  height: 1.5px;
  background: rgba(255,255,255,0.25);
}

/* ──────────────────────────────────────────────────────────
   TOOLS & CALCULATORS
   ────────────────────────────────────────────────────────── */
.ac-insights-tools {
  background: #FFFFFF;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ac-insights-tools::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,169,209,0.15), transparent);
}
.ac-insights-tools__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ac-insights-tools__header {
  text-align: center;
  margin-bottom: 60px;
}
.ac-insights-tools__title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 24px 0 0;
}
.ac-insights-tools__featured {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(7,169,209,0.04);
  border: 1.5px solid rgba(7,169,209,0.18);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.ac-insights-tools__featured:hover {
  border-color: rgba(7,169,209,0.32);
  box-shadow: 0 12px 48px rgba(7,169,209,0.1);
}
.ac-insights-tools__featured-img {
  position: relative;
  background: linear-gradient(135deg, rgba(7,169,209,0.12) 0%, rgba(6,207,195,0.06) 100%);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ac-insights-tools__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}
.ac-insights-tools__featured-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}
.ac-insights-tools__featured-img-icon {
  width: 64px;
  height: 64px;
  background: rgba(7,169,209,0.12);
  border: 1.5px solid rgba(7,169,209,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07A9D1;
}
.ac-insights-tools__featured-img-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7,169,209,0.6);
}
.ac-insights-tools__featured-body {
  padding: 48px 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.ac-insights-tool-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.ac-insights-tool-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  line-height: 1;
  border: 1px solid rgba(7,169,209,0.3);
  color: #07A9D1;
  background: rgba(7,169,209,0.08);
}
.ac-insights-tool-status {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  line-height: 1;
  border: 1px solid rgba(6,207,195,0.4);
  color: #06CFC3;
  background: rgba(6,207,195,0.08);
}
.ac-insights-tool-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #111111;
  margin: 0 0 16px;
}
.ac-insights-tool-desc {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(17,17,17,0.6);
  margin: 0 0 32px;
}
.ac-insights-tool-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #07A9D1;
  text-decoration: none !important;
  transition: gap 0.25s ease, color 0.25s ease;
  width: fit-content;
}
.ac-insights-tool-cta:hover {
  color: #06CFC3;
  gap: 12px;
}
.ac-insights-tool-cta__arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}
.ac-insights-tool-cta:hover .ac-insights-tool-cta__arrow {
  transform: translateX(3px);
}

/* ──────────────────────────────────────────────────────────
   TOOLS GRID (two cards side by side)
   ────────────────────────────────────────────────────────── */
.ac-insights-tools__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.ac-insights-tools__grid .ac-insights-tools__featured {
  max-width: 100%;
  margin: 0;
  grid-template-columns: 1fr;
}
.ac-insights-tools__grid .ac-insights-tools__featured-img {
  aspect-ratio: 16 / 9;
}
.ac-insights-tools__grid .ac-insights-tools__featured-body {
  padding: 36px 36px 36px 32px;
}
@media (max-width: 900px) {
  .ac-insights-tools__grid {
    grid-template-columns: 1fr;
  }
}

/* AI READINESS QUIZ — styles moved inline to pattern file */
/* ──────────────────────────────────────────────────────────
   PLACEHOLDER — removed
   ────────────────────────────────────────────────────────── */
.ac-readiness-quiz-placeholder {
  display: none;
}

/* ──────────────────────────────────────────────────────────
   TOPICS (Five Areas)
   ────────────────────────────────────────────────────────── */
.ac-insights-topics {
  background: #010D12;
  padding: 120px 0;
  position: relative;
}
.ac-insights-topics__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ac-insights-topics__header-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
}
.ac-insights-topics__header-left {
  width: 100%;
  text-align: center;
}
.ac-insights-topics__header-right {
  width: 100%;
  max-width: 680px;
  text-align: left;
}
.ac-insights-topics__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  line-height: 1;
  border: 1px solid rgba(7,169,209,0.25);
  color: rgba(255,255,255,0.85);
  background: rgba(7,169,209,0.08);
  margin-bottom: 20px;
}
.ac-insights-topics__title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}
.ac-insights-topics__subtitle {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
  padding-top: 0;
  text-align: left;
}
.ac-insights-topics__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ac-insights-topic-card {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(7,169,209,0.18);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.ac-insights-topic-card:hover {
  border-color: rgba(7,169,209,0.4);
  box-shadow: 0 6px 28px rgba(7,169,209,0.15);
  transform: translateY(-3px);
}
.ac-insights-topic-card__num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(7,169,209,0.5);
  margin-bottom: 12px;
  display: block;
}
.ac-insights-topic-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #FFFFFF;
  margin: 0 0 10px;
}
.ac-insights-topic-card__desc {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.ac-insights-topic-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(7,169,209,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #07A9D1;
}

/* ──────────────────────────────────────────────────────────
   LATEST POSTS
   ────────────────────────────────────────────────────────── */
.ac-insights-posts {
  padding: 120px var(--wp--preset--spacing--50, 2rem);
  background: #010D12;
  position: relative;
}
.ac-insights-posts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,169,209,0.15), transparent);
}
.ac-insights-posts__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ac-insights-posts__header {
  margin-bottom: 48px;
}
.ac-insights-posts__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  line-height: 1;
  border: 1px solid rgba(7,169,209,0.25);
  background: rgba(7,169,209,0.08);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  color: #07A9D1;
}
.ac-insights-posts__title {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}
.ac-insights-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ac-post-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(7,169,209,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  text-decoration: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  color: inherit;
  overflow: hidden;
}
.ac-post-card:hover {
  border-color: rgba(7,169,209,0.45);
  box-shadow: 0 8px 32px rgba(7,169,209,0.15);
  transform: translateY(-3px);
  text-decoration: none !important;
}
.ac-post-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(7,169,209,0.12) 0%, rgba(6,207,195,0.06) 100%);
}
.ac-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.ac-post-card:hover .ac-post-card__thumb img {
  transform: scale(1.04);
}
.ac-post-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7,169,209,0.10) 0%, rgba(6,207,195,0.05) 100%);
}
.ac-post-card__thumb-icon {
  color: rgba(7,169,209,0.35);
}
.ac-post-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ac-post-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ac-post-card__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #07A9D1;
  background: transparent;
  border: 1px solid rgba(7,169,209,0.4);
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
}
.ac-post-card__date {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
}
.ac-post-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0 0 10px 0;
  font-family: 'Inter', sans-serif;
}
.ac-post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.ac-post-card__learn-more {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #07A9D1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.ac-post-card:hover .ac-post-card__learn-more {
  gap: 10px;
  color: #06CFC3;
}
.ac-post-card__read-time {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
}
.ac-insights-posts__empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

/* ──────────────────────────────────────────────────────────
   NEWSLETTER / SUBSCRIBE
   ────────────────────────────────────────────────────────── */
.ac-insights-subscribe {
  background: #FFFFFF;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0 !important;
  margin-block-end: 0 !important;
}
.ac-insights-subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7,169,209,0.15), transparent);
}
.ac-insights-subscribe__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.ac-insights-subscribe__left {
  /* left column: heading + subtitle */
}
.ac-insights-subscribe__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  line-height: 1;
  border: 1px solid rgba(7,169,209,0.3);
  color: #07A9D1;
  background: rgba(7,169,209,0.08);
  margin-bottom: 24px;
  display: block;
  width: fit-content;
}
.ac-insights-subscribe__title {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0 0 16px;
}
.ac-insights-subscribe__subtext {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(17,17,17,0.6);
  margin: 0;
  max-width: 400px;
}
.ac-insights-subscribe__right {
  /* right column: form */
}
.ac-insights-subscribe__form {
  margin: 0;
}
.ac-insights-subscribe__input-wrap {
  display: flex;
  gap: 0;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid rgba(7,169,209,0.3);
  background: rgba(7,169,209,0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 12px;
}
.ac-insights-subscribe__input-wrap:focus-within {
  border-color: rgba(7,169,209,0.6);
  box-shadow: 0 0 0 4px rgba(7,169,209,0.08);
}
.ac-insights-subscribe__input {
  flex: 1;
  min-width: 0;
  padding: 16px 24px;
  background: transparent;
  border: none;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  outline: none;
}
.ac-insights-subscribe__input::placeholder {
  color: rgba(17,17,17,0.4);
}
.ac-insights-subscribe__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background:
    radial-gradient(110.23% 82.81% at 50% 17.19%, rgba(255,255,255,0.098) 0%, rgba(255,255,255,0.038) 100%),
    radial-gradient(82.79% 104.69% at 20.17% -22.66%, #07AECF 0%, rgba(7,174,207,0.18) 100%),
    radial-gradient(58.24% 134.23% at 33.81% 109.38%, rgba(6,207,195,0.81) 0%, rgba(6,207,195,0) 95.37%),
    linear-gradient(135deg, #07AECF, #06CFC3);
  color: #FFFFFF;
  border: none;
  border-radius: 0 100px 100px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 24px rgba(7,174,207,0.25);
  text-decoration: none !important;
}
.ac-insights-subscribe__btn:hover {
  box-shadow: 0 8px 36px rgba(7,174,207,0.4);
  transform: translateX(2px);
}
.ac-insights-subscribe__btn-arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}
.ac-insights-subscribe__btn:hover .ac-insights-subscribe__btn-arrow {
  transform: translateX(3px);
}
.ac-insights-subscribe__fine-print {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255,255,255,0.35);
  margin: 0;
  padding-left: 24px;
}
.ac-insights-subscribe__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.ac-insights-subscribe__success p {
  font-family: 'Source Sans 3', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
   CTA WRAPPER
   ────────────────────────────────────────────────────────── */
.ac-cta-wrapper-bg {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}
.wp-block-html:has(.ac-insights-subscribe) {
  margin-bottom: 0 !important;
  margin-block-end: 0 !important;
}
.wp-block-html:has(.ac-cta-wrapper-bg) {
  margin-top: 0 !important;
  margin-block-start: 0 !important;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .ac-insights-topics__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .ac-insights-page h2,
  .ac-insights-expect__title,
  .ac-insights-tools__title,
  .ac-insights-topics__title,
  .ac-insights-subscribe__title {
    font-size: 36px;
  }
  .ac-insights-hero__title {
    font-size: 40px;
  }
  .ac-insights-topics__header-row {
    flex-direction: column;
    gap: 24px;
  }
  .ac-insights-topics__header-right {
    text-align: left;
    max-width: none;
  }
  .ac-insights-subscribe__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ac-insights-subscribe__subtext {
    max-width: none;
  }
  .ac-insights-tools__featured {
    grid-template-columns: 1fr;
  }
  .ac-insights-tools__featured-img {
    min-height: 200px;
  }
  .ac-insights-tools__featured-body {
    padding: 36px 36px;
  }
}

@media (max-width: 768px) {
  .ac-insights-hero {
    min-height: auto !important;
    padding-top: 5rem !important;
    padding-bottom: 3rem !important;
  }
  .ac-insights-hero__title {
    font-size: 30px;
  }
  .ac-insights-hero__body {
    font-size: 16px;
  }
  .ac-insights-hero__btns {
    flex-direction: column;
    align-items: center;
  }
  .ac-insights-hero .ac-hero-scroll-indicator {
    display: none;
  }
  .ac-insights-expect,
  .ac-insights-tools,
  .ac-insights-topics,
  .ac-insights-posts,
  .ac-insights-subscribe {
    padding: 80px 0;
  }
  .ac-insights-page h2,
  .ac-insights-expect__title,
  .ac-insights-tools__title,
  .ac-insights-topics__title {
    font-size: 28px;
  }
  .ac-insights-subscribe__title {
    font-size: 28px;
  }
  .ac-insights-expect__columns {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ac-insights-topics__cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ac-insights-posts__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ac-insights-posts__title {
    font-size: 28px;
  }
  .ac-insights-subscribe__input-wrap {
    flex-direction: column;
    border-radius: 16px;
  }
  .ac-insights-subscribe__input {
    border-radius: 16px 16px 0 0;
    text-align: center;
  }
  .ac-insights-subscribe__btn {
    border-radius: 0 0 16px 16px;
    justify-content: center;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .ac-insights-topics__cards {
    grid-template-columns: 1fr;
  }
}
