/* ─── Content Image Split Widget ─── */

/* ── Two-column layout ── */
.ratified-cis {
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Image right */
.ratified-cis--img-right {
  flex-direction: row;
}

.ratified-cis--img-right .ratified-cis__image {
  order: 2;
}

.ratified-cis--img-right .ratified-cis__content {
  order: 1;
}

/* Image left */
.ratified-cis--img-left {
  flex-direction: row;
}

.ratified-cis--img-left .ratified-cis__image {
  order: 1;
}

.ratified-cis--img-left .ratified-cis__content {
  order: 2;
}

/* ── Columns ── */
.ratified-cis__image,
.ratified-cis__content {
  flex: 1 1 0;
  min-width: 0;
}

/* ── Image container (position context for divider) ── */
.ratified-cis__image {
  position: relative;
}

.ratified-cis__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ── Divider — absolutely positioned on the image edge ── */
.ratified-cis__divider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  border-radius: 9999px;
  background: linear-gradient(to bottom, #3F5AE7, #6B83FF, transparent);
  box-shadow: 0 0 8px rgba(63, 90, 231, 0.5), 0 0 16px rgba(63, 90, 231, 0.2);
}

/* Image left → divider on the right edge */
.ratified-cis--img-left .ratified-cis__divider {
  right: -1.25rem;
}

/* Image right → divider on the left edge */
.ratified-cis--img-right .ratified-cis__divider {
  left: -1.25rem;
}

/* ── Heading ── */
.ratified-cis__heading {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  padding: 0;
}

/* ── Description ── */
.ratified-cis__description {
  color: #7F8287;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.ratified-cis__description p {
  margin: 0 0 0.75rem 0;
}

.ratified-cis__description p:last-child {
  margin-bottom: 0;
}

/* ── Bullet list ── */
.ratified-cis__bullets {
  display: flex;
  flex-direction: column;
}

/* ── Single bullet ── */
.ratified-cis__bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ratified-cis__bullet + .ratified-cis__bullet {
  margin-top: 1rem;
}

/* Icon */
.ratified-cis__bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.15em;
}

.ratified-cis__bullet-icon i {
  font-size: 22px;
  color: #3F5AE7;
}

.ratified-cis__bullet-icon svg {
  width: 22px;
  height: 22px;
  fill: #3F5AE7;
}

/* Text */
.ratified-cis__bullet-text {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}

/* ── Responsive: stack on smaller screens ── */
@media (max-width: 767px) {
  .ratified-cis {
    flex-direction: column !important;
    gap: 2rem;
  }

  .ratified-cis__image,
  .ratified-cis__content {
    order: unset !important;
  }

  .ratified-cis__heading {
    font-size: 1.5rem;
  }

  /* Hide divider on mobile */
  .ratified-cis__divider {
    display: none;
  }
}
