.flyers-section { background: #f7f8f6; }
.flyers-intro { max-width: 570px; color: var(--muted); line-height: 1.65; margin: -4px 0 34px; }
.flyers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.flyer-card { display: block; overflow: hidden; background: var(--navy); box-shadow: 0 8px 20px rgba(13, 39, 51, .11); transition: transform .22s ease, box-shadow .22s ease; }
.flyer-card:hover { transform: translateY(-5px); box-shadow: 0 15px 27px rgba(13, 39, 51, .2); }
.flyer-card img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.flyer-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.flyers-notice { margin: 28px 0 0; font-size: 13px; color: #65777c; }
@media (max-width: 800px) { .flyers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .flyers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
