/* =============================================================================
   CTA Bullets — [cta_bullets] shortcode
   ============================================================================= */

.cbullets {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(116, 140, 164, 0.3);
}

.cbullets-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(116, 140, 164, 0.3);
  opacity: 0;
  transform: translateX(-8px);
}

.cbullets.is-visible .cbullets-item {
  animation: cbullets-fade-in 0.7s ease forwards;
}

@keyframes cbullets-fade-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cbullets-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #4a7fa5;
  flex-shrink: 0;
  margin-top: 0.55em;
}

.cbullets-text {
  font-size: 1.1rem;
  color: #0C244A;
  line-height: 1.55;
  margin: 0;
}

/* ---- White text variant — location pages + pages 250348, 250350 ---- */

body.single-location .cbullets,
body.page-id-250348 .cbullets,
body.page-id-250350 .cbullets {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

body.single-location .cbullets-item,
body.page-id-250348 .cbullets-item,
body.page-id-250350 .cbullets-item {
  border-top-color: rgba(255, 255, 255, 0.2);
}

body.single-location .cbullets-dot,
body.page-id-250348 .cbullets-dot,
body.page-id-250350 .cbullets-dot {
  background-color: rgba(255, 255, 255, 0.6);
}

body.single-location .cbullets-text,
body.page-id-250348 .cbullets-text,
body.page-id-250350 .cbullets-text {
  color: #fff !important;
}

/* ---- Responsive ---- */

@media (max-width: 767px) {
  .cbullets-text {
    font-size: 1rem;
  }

  .cbullets-item {
    padding: 20px 0;
  }
}
