.slots-banner {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/images/decorative/decor_2.jpg');
  background-size: cover;
  background-position: center;
}

.slots-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 2, 8, 0.78);
}

.slots-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 24px;
}

.slots-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: var(--white);
}

.slots-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.slots-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.slots-content h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--secondary);
  margin: 40px 0 16px;
}

.slots-content h3 {
  font-size: 18px;
  color: var(--accent);
  margin: 28px 0 12px;
}

.slots-inline-img {
  float: right;
  max-width: 320px;
  max-height: 240px;
  object-fit: cover;
  margin: 0 0 24px 32px;
  border-radius: 4px;
}

.slots-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}

.slots-table th,
.slots-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.slots-table th {
  color: var(--secondary);
  font-weight: 400;
  font-family: var(--font-serif);
}

@media (max-width: 768px) {
  .slots-inline-img {
    float: none;
    max-width: 100%;
    width: 100%;
    margin: 0 0 24px;
    object-fit: contain;
  }
  .slots-banner {
    overflow: hidden;
  }
}
