.footer__cookie-reset {
  display: inline;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  padding: max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-right, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  transform: translateY(110%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 1.15rem 1.35rem;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  font-family: system-ui, sans-serif;
}

.cookie-banner__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner__text { flex: 1 1 16rem; padding-right: 1.5rem; }

.cookie-banner__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.cookie-banner__desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-banner__desc a { color: #c41e3a; text-decoration: underline; }

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-btn {
  min-height: 44px;
  padding: 0.6rem 1.15rem;
  border-radius: 2px;
  font: 600 0.78rem/1 system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-btn--primary {
  border: none;
  background: #c41e3a;
  color: #fff;
}

.cookie-btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.embed-placeholder {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.embed-placeholder__inner {
  text-align: center;
  padding: 1.5rem;
  max-width: 22rem;
}

.embed-placeholder__title { margin: 0 0 0.5rem; font-weight: 600; }

.embed-placeholder__text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #555;
}

.embed-placeholder__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #c41e3a;
}