/* Promobox voor actieve kortingscodes (_discount_banner.twig). Prefix: dt- */
.dt-discount-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4, 16px);
  padding: var(--space-4, 16px) var(--space-5, 20px);
  margin-bottom: var(--space-4, 16px);
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgb(212 175 55 / 35%);
  background: linear-gradient(135deg, rgb(212 175 55 / 14%), rgb(0 229 164 / 8%));
  box-shadow: 0 6px 18px -8px rgb(0 0 0 / 45%);
}

.dt-discount-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgb(212 175 55 / 18%);
  color: var(--gold);
  font-size: 1.25rem;
}

.dt-discount-banner__text {
  color: var(--text);
  font-size: var(--fs-sm, .875rem);
  line-height: 1.5;
}

@media (width <= 700px) {
  .dt-discount-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: var(--space-2, 8px);
  }

  .dt-discount-banner__icon {
    width: 36px;
    height: 36px;
    font-size: 1.05rem;
  }
}
