/* Нечётные блоки (1, 3, 5...) */
.promo-block:nth-child(odd) {
  background: #f9fafb; /* светло-серый */
}

/* Чётные блоки (2, 4, 6...) */
.promo-block:nth-child(even) {
  background: #ffffff; /* белый */
}

.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;     
  padding: 0 20px;    
}

.promo-block {
  margin: 20px 0;
  border-radius: 12px;     /* закругление углов */
  overflow: hidden;
}

.promo-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px;           /* ВОТ ДОБАВЛЕННЫЙ ОТСТУП */
}

.promo-block__left {
  position: relative; /* для позиционирования цены/лейбла */
}

.promo-block__cover {
  display: block;
  width: 100%;
  height: auto;
  max-width: 640px;
  aspect-ratio: 4/3;
  border-radius: 12px;
  object-fit: cover;
}

.promo-block__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #255ea9; /* красный фон */
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-block__price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}

.promo-block__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

.promo-block__annotation {
  margin: 0 0 16px;
  color: #374151;
  font-size: 16px;
  line-height: 1.5;
}

.promo-block__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.promo-block__gallery img {
  display: block;
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.promo-block__footer {
  display: flex;
  justify-content: flex-end; /* уводим вправо */
  margin-top: 16px;
}

.promo-block__btn {
  display: inline-block;
  background: #255ea9; /* синий фон */
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.promo-block__btn:hover {
  background: #a6303a; /* темнее при наведении */
}

@media (max-width: 768px) {
  .promo-block__inner {
    grid-template-columns: 1fr;
  }
  .promo-block__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}