.promo-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border: 1px solid #d3d9e7;
  border-radius: 12px;
  max-width: 480px;
  width: 100%;
  min-height: auto;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding: 0;
  box-sizing: border-box;
}

.promo-banner__image-section {
  flex: 0 0 auto;
  width: 100%;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bp-primary-yellow500);
}

.promo-banner__image-section img {
  width: 100%;
  height: 148%;
  object-fit: contain;
  display: block;
}

.promo-banner__content {
  flex: 1;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  padding: 0 24px 24px;
}

.promo-banner__title {
  color: var(--bp-primary-blue500);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  font-family: prelo-semibold, Helvetica, Arial, Sans, Sans-serif;
  margin: 0;
}

.promo-banner__subtitle {
  color: var(--bp-grayScale500);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: prelo-book, Helvetica, Arial, Sans, Sans-serif;
  margin: 0;
}

.promo-banner__link {
  color: var(--bp-alert-information500);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: prelo-semibold, Helvetica, Arial, Sans, Sans-serif;
  text-decoration: none;
}

.promo-banner__disclaimer {
  color: var(--bp-grayScale500);
  font-size: 12px;
  line-height: 16px;
  font-family: prelo-book, Helvetica, Arial, Sans, Sans-serif;
  margin: 0;
}

@media (min-width: 768px) {
  .promo-banner {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    border-radius: 0.5rem;
    overflow: visible;
    background-color: #f4f6f9;
    padding: 16px;
  }

  .promo-banner__image-section {
    flex: 0 0 112px;
    width: 112px;
    min-height: 0;
    height: auto;
    background-color: transparent;
  }

  .promo-banner__image-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .promo-banner__content {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }

  .promo-banner__title {
    color: var(--bp-primary-blue500);
    font-size: 14px;
    line-height: 20px;
  }

  .promo-banner__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .promo-banner__link {
    color: var(--bp-alert-information500);
    font-size: 14px;
    line-height: 20px;
    font-family: prelo-semibold, Helvetica, Arial, Sans, Sans-serif;
  }

  .promo-banner__disclaimer {
    color: var(--bp-grayScale500);
    font-size: 12px;
    line-height: 16px;
  }
}
