#beers { background: linear-gradient(to bottom, transparent, rgba(20,10,5,.75), transparent); }
.beers-intro { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
.beers-intro p { font-family: 'Playfair Display', serif; font-style: italic; color: rgba(232,213,176,.72); line-height: 1.85; }
.beer-showcase { height: 320px; margin-bottom: 4rem; }
.beer-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.beer-cat {
  border: 1px solid rgba(200,144,42,.18); padding: 2rem 1.5rem; text-align: center;
  transition: all .35s; cursor: default; background: rgba(200,144,42,.02);
}
.beer-cat:hover { border-color: var(--gold); background: rgba(200,144,42,.06); transform: translateY(-4px); }
.beer-cat-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.beer-cat-name { font-family: 'Rye', serif; font-size: 1rem; color: var(--parchment); margin-bottom: .5rem; }
.beer-cat-desc { letter-spacing: 2px; font-size: .68rem; color: rgba(200,144,42,.65); font-weight: 300; }

@media (max-width: 900px) {
  .beer-cats { grid-template-columns: repeat(2, 1fr); }
}
