/* ==========================================================================
   Coral eSIM Banner
   Brand colours: Navy #1a2a5e | Orange #f7941d | Cyan #00d4e8
   ========================================================================== */

.cesim-banner {
  margin: 0 0 1.5em;
  border-radius: 12px;
  background: linear-gradient(135deg, #0fb8d0 0%, #00d4e8 100%);
  box-shadow: 0 2px 12px rgba(0, 212, 232, 0.25);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cesim-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  flex-wrap: wrap;          /* stacks gracefully on narrow screens */
}

/* ---- Logo text block ---- */
.cesim-banner__logo {
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.cesim-banner__coral {
  color: #1a2a5e;
}

.cesim-banner__esim {
  color: #f7941d;
}

/* ---- Body copy ---- */
.cesim-banner__body {
  flex: 1 1 180px;
  min-width: 0;
}

.cesim-banner__headline {
  margin: 0 0 2px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2a5e;
  line-height: 1.3;
}

.cesim-banner__headline strong {
  color: #1a2a5e;
}

.cesim-banner__sub {
  margin: 0;
  font-size: 0.8rem;
  color: #0d3a5e;
  line-height: 1.4;
  opacity: 0.85;
}

/* ---- CTA button ---- */
.cesim-banner__cta {
  display: inline-block;
  flex-shrink: 0;
  padding: 10px 20px;
  background: #f7941d;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.12s ease;
  box-shadow: 0 2px 6px rgba(247, 148, 29, 0.4);
}

.cesim-banner__cta:hover,
.cesim-banner__cta:focus {
  background: #e07f0a;
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* ---- Responsive: stack on very small screens ---- */
@media (max-width: 480px) {
  .cesim-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
  }

  .cesim-banner__cta {
    align-self: stretch;
    text-align: center;
  }
}
