/* Cookie consent banner */
.ttv-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #fff;
  border: 1.5px solid var(--green, #0a5858);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 18px 20px;
}
.ttv-consent.is-hidden {
  display: none;
}
.ttv-consent__inner {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ttv-consent__text {
  margin: 0;
  font-size: 14px;
  color: var(--text, #1f2a2a);
  line-height: 1.5;
}
.ttv-consent__text a {
  color: var(--green, #0a5858);
  text-decoration: underline;
}
.ttv-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--green, #0a5858);
  color: var(--green, #0a5858);
}
@media (max-width: 720px) {
  .ttv-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .ttv-consent__actions {
    justify-content: flex-end;
  }
}
