.meta-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(100% - 48px, 1040px);
  margin-inline: auto;
  padding: 20px 22px;
  color: #f8f4ec;
  background: #17202b;
  border: 1px solid rgba(198, 167, 112, 0.5);
  box-shadow: 0 18px 55px rgba(8, 14, 21, 0.3);
}

.meta-consent__copy strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 19px;
}

.meta-consent__copy p {
  max-width: 720px;
  margin: 0;
  color: rgba(248, 244, 236, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.meta-consent__copy a {
  color: #e6c98f;
}

.meta-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.meta-consent__actions button,
.meta-consent-reset {
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid #c6a770;
  font: 700 12px/1 var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.meta-consent__deny,
.meta-consent-reset {
  color: #f8f4ec;
  background: transparent;
}

.meta-consent__accept {
  color: #17202b;
  background: #e6c98f;
}

.meta-consent-reset {
  margin-top: 12px;
  color: #17202b;
  background: #f8f4ec;
}

@media (max-width: 700px) {
  .meta-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    width: auto;
    padding: 18px;
  }

  .meta-consent__actions button {
    flex: 1;
  }
}
