/* Site: cookie banner, map card, footer utilities */
.site-cookie-banner {
  position: fixed;
  z-index: 10050;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.25rem;
  background: #1a1a1a;
  color: #f5f5f5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  line-height: 1.5;
}
.site-cookie-banner__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.site-cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
}
.site-cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}
.site-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.site-cookie-banner button {
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid transparent;
}
.site-cookie-btn--accept {
  background: #fffbe6;
  color: #1a1a1a;
  border-color: #3d3200;
}
.site-cookie-btn--reject {
  background: transparent;
  color: #f5f5f5;
  border-color: #666;
}
.site-cookie-btn--settings {
  background: transparent;
  color: #f5f5f5;
  border-color: #888;
}
.site-cookie-panel {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: #2a2a2a;
  border-radius: 6px;
  width: 100%;
  flex-basis: 100%;
}
.site-cookie-panel[hidden] {
  display: none !important;
}
.site-cookie-panel label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.site-cookie-panel input:disabled {
  opacity: 0.6;
}
.site-map-card {
  min-height: 280px;
  padding: 1.5rem;
  background: #f4f4f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.site-footer-links a {
  color: inherit;
  text-decoration: underline;
}
.site-footer-links a:hover {
  opacity: 0.85;
}
.site-social-note {
  padding: 1rem 0;
}
