.promotions-page {
  text-align: center;
  padding-top: 2rem;
}

.promotions-page h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.promotions-page .intro {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 auto 2rem;
  text-align: center;
  max-width: 680px;
  line-height: 1.6;  
}
.promotions-page .intro::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--primary);
  margin: 1rem auto 0;
  border-radius: 1px;
}


.promo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff8f2;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-main);
}

.promo-placeholder img {
  max-width: 100%;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.92;
   transition: transform 0.3s ease;
}


.promo-placeholder .notice {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}


.promo-placeholder img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

