.bingo-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.bingo-header {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.bingo-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 14px;
}

.bingo-header p {
  color: var(--muted);
  font-size: 1rem;
}

.bingo-header-img {
  border-radius: 20px;
  overflow: hidden;
}

.bingo-header-img img {
  max-width: 360px;
  max-height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.bingo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.bingo-card {
  padding: 24px;
  background: var(--wool-grey);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.45s ease;
}

.bingo-card:hover {
  transform: translateY(-4px);
}

.bingo-card h2 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.bingo-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.bingo-prose h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--text);
  margin: 32px 0 12px;
}

.bingo-prose p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.96rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .bingo-header {
    grid-template-columns: 1fr;
  }

  .bingo-header-img {
    max-width: 100%;
    overflow: hidden;
  }

  .bingo-header-img img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
  }

  .bingo-grid {
    grid-template-columns: 1fr;
  }
}
