.adbas-wrap {
  --adbas-navy-1: #1c2158;
  --adbas-navy-2: #38408a;
  --adbas-red: #c31432;
  --adbas-heading: #131a3b;
  --adbas-body-text: #6b7280;
  --adbas-eyebrow-text: #6b7280;
  --adbas-bullet-text: #1f2437;
  --adbas-bullet-circle-bg: #1c2158;
  --adbas-button-bg: #1c2158;
  --adbas-button-bg-hover: #131a3b;
  --adbas-button-text: #ffffff;
  --adbas-badge-bg: #c31432;
  --adbas-badge-text: #ffffff;
  --adbas-image-width: 100%;
  --adbas-image-height: 460px;
  --adbas-image-radius: 20px;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.adbas-grid {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.adbas-grid.adbas-image-right {
  flex-direction: row-reverse;
}

.adbas-image-col {
  position: relative;
  flex: 1 1 380px;
  max-width: var(--adbas-image-width);
}

.adbas-image-panel {
  position: relative;
  width: var(--adbas-image-width);
  height: var(--adbas-image-height);
  border-radius: var(--adbas-image-radius);
  background: linear-gradient(135deg, var(--adbas-navy-1) 0%, var(--adbas-navy-2) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(28, 33, 88, 0.18);
}

.adbas-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: var(--adbas-image-object-fit, cover);
  display: block;
}

.adbas-image-placeholder {
  width: 96px;
  height: 96px;
  color: rgba(255, 255, 255, 0.9);
}

.adbas-image-placeholder svg {
  width: 100%;
  height: 100%;
}

.adbas-badge {
  position: absolute;
  left: 40px;
  bottom: -30px;
  background: var(--adbas-badge-bg);
  color: var(--adbas-badge-text);
  border-radius: 12px;
  padding: 18px 26px;
  box-shadow: 0 18px 30px rgba(195, 20, 50, 0.28);
  min-width: 220px;
}

.adbas-badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.9;
}

.adbas-badge-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  color: inherit;
  letter-spacing: -0.01em;
}

.adbas-content-col {
  flex: 1 1 420px;
}

.adbas-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.adbas-eyebrow-dash {
  width: 28px;
  height: 3px;
  background: var(--adbas-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.adbas-eyebrow-text {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--adbas-eyebrow-text);
}

.adbas-heading {
  margin: 0 0 20px;
  color: var(--adbas-heading);
  font-size: 2.2rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.adbas-description {
  margin: 0 0 28px;
  color: var(--adbas-body-text);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
}

.adbas-bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.adbas-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
}

.adbas-bullet-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--adbas-bullet-circle-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.75rem;
}

.adbas-bullet-text {
  color: var(--adbas-bullet-text);
  font-size: 1rem;
  font-weight: 600;
}

.adbas-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--adbas-button-bg);
  color: var(--adbas-button-text);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.adbas-button:hover {
  background: var(--adbas-button-bg-hover);
  color: var(--adbas-button-text);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .adbas-grid,
  .adbas-grid.adbas-image-right {
    flex-direction: column;
  }

  .adbas-image-col {
    max-width: 100%;
    width: 100%;
  }

  .adbas-badge {
    left: 24px;
  }

  .adbas-heading {
    font-size: 1.7rem;
  }
}
