/**
 * Atelier — Cookie consent banner (C16, GDPR). Fixed bottom bar, dismissed
 * on Accept/Reject and not shown again (localStorage flag set by the
 * companion inline script in the layout template).
 */
.atl-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--atl-surface);
  border-top: 1px solid var(--atl-border-strong);
  padding: 18px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.atl-cookie-banner-text { flex: 1; font-size: 13.5px; color: var(--atl-text-muted); }
.atl-cookie-banner-text a { color: var(--atl-accent); text-decoration: none; }
.atl-cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.atl-cookie-banner-actions .atl-btn { padding: 11px 22px; font-size: 12.5px; }

@media (max-width: 767px) {
  .atl-cookie-banner { flex-direction: column; align-items: stretch; padding: 16px 20px; gap: 14px; }
  .atl-cookie-banner-actions { flex-direction: column; }
  .atl-cookie-banner-actions .atl-btn { width: 100%; box-sizing: border-box; }
}
