/* PROMOTIONAL BANNER STYLES */
.promo-banner {
  background: var(--color-bg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;

.promo-banner__inner {
  position: relative;
  z-index: 1;
}

.promo-banner__content {
  text-align: center;
  margin: 0 auto;
}

/* Content Card */
.promo-content-card {
  background: var(--color-dark-card-bg);
  border: 2px solid var(--color-emerald-green);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  border-radius: 8px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.promo-content-card:hover {
  border-color: var(--color-emerald-green-hover);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
}

/* Main Title */
.promo-banner__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
  text-shadow: none;
}

/* Update Date */
.promo-banner__update-date {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--color-emerald-green);
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(46, 204, 113, 0.3);
}

/* Description */
.promo-banner__description {
  font-family: var(--font-base);
  font-size: var(--fs-lg);
  color: #eee;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 900px;
  font-weight: 400;
  margin: 0 auto;
}

/* Features Section */
.promo-banner__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-dark-card-bg);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 2px solid var(--color-emerald-green);
  box-shadow: 0 4px 20px rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: var(--color-emerald-green-hover);
  box-shadow: 0 6px 25px rgba(46, 204, 113, 0.4);
  transform: translateY(-2px);
}

/* UK Flag Image */
.uk-flag-img {
  width: 32px;
  height: 24px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-emerald-green);
}

.feature-icon--star {
  color: var(--color-gold) !important;
}

.feature-text {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .promo-banner {
    padding: 3rem 0;
  }
  
  .promo-banner__title,
  .promo-banner__subtitle {
    font-size: 3rem;
  }
  
  .promo-banner__features {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .promo-banner {
    padding: 2.5rem 0;
  }
  
  .promo-content-card {
    margin-bottom: 2rem;
  }
  
  .promo-banner__content {
    text-align: center;
  }
  
  .promo-banner__title,
  .promo-banner__subtitle {
    font-size: 2.5rem;
  }
  
  .promo-banner__update-date {
    font-size: var(--fs-base);
    margin-bottom: 1.5rem;
  }
  
  .promo-banner__description {
    font-size: var(--fs-base);
    margin-bottom: 2rem;
  }
  
  .promo-banner__features {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .feature-item {
    padding: 0.75rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .promo-banner__title,
  .promo-banner__subtitle {
    font-size: 2rem;
  }
  
  .promo-banner__features {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .promo-banner {
    padding: 2rem 0;
  }
  
  .promo-banner__title,
  .promo-banner__subtitle {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .promo-banner__description {
    font-size: var(--fs-sm);
  }
  
  .feature-item {
    padding: 0.625rem 1rem;
  }
  
  .feature-text {
    font-size: var(--fs-sm);
  }
  
  .feature-icon {
    font-size: 1.25rem;
    width: 28px;
    height: 28px;
  }
}