.premium-banner {
  padding: 50px 20px 0px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  font-family: Arial, sans-serif;
}


.premium-banner__container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 50px;
}


.premium-banner__media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.premium-banner__media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
}


.premium-banner__info {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}


.premium-banner__card {
  width: 100%;
  max-width: 420px;

  padding: 30px;
  background: #fff;
  border-radius: 14px;

  box-shadow: 0 18px 45px rgba(0,0,0,0.10);

  text-align: left;
}


.premium-banner__label {
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}

.premium-banner__heading {
  white-space: nowrap;
  font-size: clamp(22px, 1.8vw, 34px);
}

.premium-banner__desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.premium-banner__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.premium-banner__cta {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;

  background: #0083de;
  color: #fff;
  text-decoration: none;

  border-radius: 6px;
  font-weight: 600;

  text-align: center;
  line-height: 1.3;

  min-height: 44px;

  transition: all 0.25s ease;
}

.premium-banner__cta:hover {
  background: #006bb8;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.premium-banner__cta_2 {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;

  background: #ffc6eb;
  color: #001f3f;
  text-decoration: none;

  border-radius: 6px;
  font-weight: 600;

  text-align: center;
  line-height: 1.3;

  min-height: 44px;

  transition: all 0.25s ease;
}

.premium-banner__cta_2:hover {
  background: #ff72aa;
  color: #001f3f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.premium-banner__cta--secondary {
  background: transparent;
  color: #0083de;
  border: 2px solid #0083de;
}

.premium-banner__cta--secondary:hover {
  background: #0083de;
  color: #fff;
}

.premium-banner__card--love-bg {
  position: relative;
  overflow: hidden;
}

.premium-banner__card--love-bg::after {
  content: "";
  position: absolute;

  right: 10px;
  bottom: -35px;

  width: 180px;
  height: 180px;

  background-image: url("../images/banners/with-love.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  opacity: 0.6;
  pointer-events: none;

  z-index: 0;
}


.premium-banner__card--love-bg > * {
  position: relative;
  z-index: 1;
}
    
@media (max-width: 768px) {

  .premium-banner__container {
    display: block;
    text-align: center;
  }

  .premium-banner__media {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .premium-banner__media img {
    max-width: 260px;
    height: auto;
    margin: 0 auto;
  }

  .premium-banner__info {
    width: 100%;
    display: flex;
    justify-content: center;

    margin-top: -40px;
  }

  .premium-banner__card {
    width: 90%;
    max-width: 420px;

    margin: 0 auto !important;

    text-align: center;

    padding: 22px;
  }

  .premium-banner__buttons {
    grid-template-columns: 1fr 1fr;
  }

 

  .premium-banner__desc {
    font-size: 15px;
  }
    
  .premium-banner__card--love-bg::after {
    width: 120px;
    height: 120px;
    right: 10px;
    bottom: -20px;
    opacity: 0.6;
  }    
    
}
