.promo-page {
  min-height: calc(100vh - 137px);
  background: #080808;
}

.promo-section {
  padding: 22px 0 30px;
  background: linear-gradient(
    116deg,
    #181818 0%,
    #181818 29%,
    rgba(237, 212, 114, 0.16) 29%,
    rgba(237, 212, 114, 0.16) 31%,
    #111111 31%,
    #0B0B0B 100%
  );
}

.promo-heading {
  margin-bottom: 18px;
}

.promo-heading h1 {
  margin: 0;
  color: #f7f4e8;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
}

.promo-list {
  display: grid;
  gap: 18px;
}

.promo-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
}

.promo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 1;
  min-height: 170px;
  border: 1px solid rgba(237, 212, 114, .6);
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(135deg, rgba(237,212,114,.06) 25%, transparent 25%, transparent 50%, rgba(237,212,114,.06) 50%, rgba(237,212,114,.06) 75%, transparent 75%),
    #111111;
  background-size: 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  text-align: center;
  font-family: inherit;
}

.promo-image-btn {
  margin: 0;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.promo-image-btn:hover {
  filter: brightness(1.04);
}

.promo-image-btn img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.promo-placeholder span {
  color: #EDD472;
  font-size: 24px;
  font-weight: 800;
}

.promo-placeholder small {
  color: #c5b98f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.promo-info-btn {
  width: 42px;
  min-width: 42px;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 10px 0;
  border: 1px solid #D6B85C;
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(180deg, #F6E59A 0%, #EDD472 52%, #B89232 100%);
  color: #16130c;
  font-family: inherit;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .12em;
  writing-mode: sideways-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.promo-info-btn:hover {
  filter: brightness(1.08);
}

.promo-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .2s;
}

.promo-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .2s ease;
}

.promo-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 0;
  border: 1px solid #D6B85C;
  border-radius: 8px;
  background: #161616;
  box-shadow: 0 14px 40px rgba(0,0,0,.5);
}

.promo-modal-header {
  min-height: 46px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #665630 0%, #493d25 48%, #30291d 100%);
  border-bottom: 1px solid #D6B85C;
}

.promo-modal-header h2 {
  margin: 0;
  color: #FFE999;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .02em;
}

.promo-modal-body {
  padding: 20px 22px 22px;
  color: #d8d1bb;
  font-size: 13px;
  line-height: 1.7;
  background: linear-gradient(
    116deg,
    #181818 0%,
    #181818 29%,
    rgba(237, 212, 114, 0.16) 29%,
    rgba(237, 212, 114, 0.16) 31%,
    #111111 31%,
    #0B0B0B 100%
  );
}

.promo-modal-body p {
  margin: 0 0 12px;
}

.promo-modal-body p:last-child,
.promo-modal-body ul:last-child,
.promo-modal-body ol:last-child {
  margin-bottom: 0;
}

.promo-modal-body ul,
.promo-modal-body ol {
  margin: 0 0 12px 20px;
  padding: 0;
}

.promo-modal-body li + li {
  margin-top: 6px;
}

.promo-modal-body strong {
  color: #F4E7B1;
}

.promo-modal-close {
  position: static;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.promo-modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .promo-section { padding: 18px 0 24px; }
  .promo-heading h1 { font-size: 18px; }
  .promo-list { gap: 14px; }
  .promo-item { display: block; border-radius: 10px; }
  .promo-placeholder { min-height: 0; aspect-ratio: 4 / 1; border-radius: 10px; }
  .promo-placeholder span { font-size: 18px; }
  .promo-info-btn { display: none; }
  .promo-modal { padding: 12px; }
  .promo-modal-panel { max-height: calc(100dvh - 24px); padding: 0; }
  .promo-modal-header { min-height: 42px; padding: 0 10px 0 14px; }
  .promo-modal-header h2 { font-size: 16px; }
  .promo-modal-body { padding: 16px; font-size: 12px; }
}
