.action {
  display: flex;
  align-items: stretch;
  min-height: 420px;
  background-color: var(--color-dark-blue);
  overflow: hidden;
}

/* Left: image */
.action__image {
  flex: 0 0 50%;
  width: 50%;
  overflow: hidden;
}

.action__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Right: content */
.action__content {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 4rem;
}

/* Subtitle — BetterDay font */
.action__subtitle {
  font-family: var(--font-subtitle);
  font-weight: 400;
  font-size: clamp(2.8rem, 4vw, 3.2rem);
  color: #ffffff;
  line-height: 1.1;
}

/* Title — CircularStd */
.action__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #ffffff;
  line-height: 1.2;
  margin-top: -0.5rem;
}

/* Description — DM Sans */
.action__desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 480px;
}

/* CTA row */
.action__cta-row {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

/* Static badge */
.action__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.1rem;
  height: 40px;
  background-color: #010066;
  border-radius: 999px;
}

.action__badge-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
  stroke-width: 2;
  flex-shrink: 0;
}

.action__badge-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #ffffff;
  white-space: nowrap;
}

/* CTA buttons */
.action__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark-blue);
  background-color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.action__cta-btn:hover {
  opacity: 0.85;
}

.action__cta-btn--text {
  padding: 0 1.25rem;
}

.action__cta-btn--icon {
  width: 50px;
}

.action__cta-btn--icon i {
  width: 18px;
  height: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .action {
    flex-direction: column;
    min-height: unset;
  }

  .action__image {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .action__content {
    flex: none;
    width: 100%;
    padding: 3rem 2rem;
  }

  .action__desc {
    max-width: 100%;
  }
}

@media (max-width: 540px) {
  .action__cta-row {
    flex-wrap: wrap;
  }

  .action__badge {
    order: -1;
    width: 100%;
    justify-content: center;
  }
}