/* Cookie banner: ширина и горизонтальные отступы совпадают с .container-1440 */
.cookie-banner-shell {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #1a1919;
  color: #ffffff;
  font-family: "Noto Sans", sans-serif;
}

.cookie-banner-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 20px;
  box-sizing: border-box;
}

.cookie-banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px 24px;
}

.cookie-banner-copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner-copy p + p {
  margin-top: 6px;
}

.cookie-banner-copy a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

#cookie-consent-accept {
  background-color: #00d866;
  color: #1e1e1e;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 640px) {
  .cookie-banner-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-banner-actions {
    justify-self: start;
  }
}
