/* anyabotanya category cards — isolated stylesheet (dev-middle-0-cards)
   Scope: .cards, .card, .card b, .card h3, .card p, .card .arrow only.
   No global selectors, no hero/header/footer overrides, no external refs. */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{min-height:205px;border-radius:18px;padding:27px;display:flex;flex-direction:column;justify-content:space-between;transition:transform .2s}
.card b{font-size:11px;letter-spacing:2px;color:var(--muted)}
.card h3{font:500 27px Georgia,serif;margin:16px 0 6px}
.card p{margin:0;color:var(--muted);font-size:14px}
.card .arrow{font-size:25px;align-self:flex-end}
@media(max-width:800px){.cards{grid-template-columns:1fr;gap:12px}.card{min-height:154px;padding:22px}}
