/* Footer and consent styles */
.site-footer {
  background-color: var(--color-pine-green);
  color: var(--color-white);
  padding-block: var(--space-2xl) var(--space-xl);
  margin-block-start: var(--space-3xl);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 400px;
}

.site-footer__brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-white);
}

.site-footer__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-footer__brand-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.site-footer__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  margin: 0;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.site-footer__nav-column {
  flex: 1 1 200px;
  min-width: 160px;
}

.site-footer__heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-block-end: var(--space-sm);
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-subtle);
}

.site-footer__list a:hover {
  color: var(--color-light-blue);
  text-decoration: underline;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  border-block-start: 1px solid rgba(255, 255, 255, 0.2);
  padding-block-start: var(--space-md);
}

.site-footer__copyright {
  margin: 0;
  font-size: var(--text-small-size);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__play-link {
  display: inline-block;
  background-color: var(--color-red-accent);
  color: var(--color-white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--text-small-size);
  transition: background-color var(--transition-subtle);
}

.site-footer__play-link:hover {
  background-color: #8f1b1b;
  color: var(--color-white);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-pine-green);
  color: var(--color-white);
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding-block: var(--space-md);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-consent__text {
  flex: 1 1 300px;
  margin: 0;
  font-size: var(--text-small-size);
  line-height: var(--text-small-line-height);
  color: rgba(255, 255, 255, 0.9);
}

.cookie-consent__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cookie-consent__button {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-small);
  font-weight: 600;
  font-size: var(--text-small-size);
  cursor: pointer;
  transition: background-color var(--transition-subtle), color var(--transition-subtle);
  border: 1px solid transparent;
}

.cookie-consent__button--accept {
  background-color: var(--color-red-accent);
  color: var(--color-white);
}

.cookie-consent__button--accept:hover {
  background-color: #8f1b1b;
}

.cookie-consent__button--reject {
  background-color: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent__button--reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-consent__button:focus-visible {
  outline: var(--focus-outline-width) solid var(--focus-outline-color);
  outline-offset: var(--focus-outline-offset);
}

@media (max-width: 768px) {
  .site-footer {
    padding-block: var(--space-xl) var(--space-lg);
  }

  .site-footer__nav {
    gap: var(--space-lg);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: flex-end;
  }
}
