/* Seventh Seal — utvidet footer (felles) */
.ss-footer {
  overflow-x: clip;
}

.ss-footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding-top: clamp(2.5rem, 5vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3rem);
  border-bottom: 1px solid #0a0a0a;
}

.ss-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-width: 28rem;
}

.ss-footer__logo {
  display: inline-block;
  width: fit-content;
}

.ss-footer__logo-img {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.ss-footer__blurb {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.ss-footer__meta {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
}

.ss-footer__meta + .ss-footer__meta {
  margin-top: 0.125rem;
}

.ss-footer__heading {
  margin: 0 0 0.875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.4;
}

.ss-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ss-footer__link {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.88);
  transition: color 0.15s ease;
}

.ss-footer__link:hover {
  color: #ff1e3c;
}

.ss-footer__link:focus-visible {
  outline: 2px solid #ff1e3c;
  outline-offset: 2px;
}

.ss-footer__link--current {
  color: #ff1e3c;
}

.ss-footer__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.88);
}

.ss-footer__cta {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

.ss-footer__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid #0a0a0a;
  background: #0a0a0a;
  color: #fff;
}

.ss-footer__cta-title {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: #ff1e3c;
}

.ss-footer__cta-body {
  margin: 0.375rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32ch;
}

.ss-footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1.25rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.ss-footer__cta-btn:hover {
  background: #ff1e3c;
  border-color: #ff1e3c;
  color: #fff;
}

.ss-footer__cta-btn:focus-visible {
  outline: 2px solid #ff1e3c;
  outline-offset: 2px;
}

@media (min-width: 640px) {
  .ss-footer__main {
    grid-template-columns: 1fr 1fr;
  }

  .ss-footer__brand {
    grid-column: 1 / -1;
  }

  .ss-footer__cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ss-footer__main {
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 2.5vw, 2.5rem);
  }

  .ss-footer__brand {
    grid-column: auto;
    padding-right: clamp(0.5rem, 2vw, 1.5rem);
    border-right: 1px solid rgba(10, 10, 10, 0.12);
  }
}
