.sunday-footer {
  background: var(--ss-yellow);
  color: var(--ss-red);
  padding-block: var(--ss-space-8);
  font-family: var(--ss-font-body);
}
.sunday-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--ss-space-7);
  align-items: start;
}
.sunday-footer__tagline {
  margin: 0;
  color: var(--ss-red);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 0.95;
  max-width: 12ch;
  text-align: left;
}
.sunday-footer__newsletter-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: clamp(28px, 3vw, 40px);
  height: clamp(28px, 3vw, 40px);
  margin-inline-start: 0.4em;
  padding: 0;
  color: var(--ss-white);
  background: var(--ss-red);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition:
    filter 0.15s ease,
    transform 0.15s ease;
}
.sunday-footer__newsletter-jump:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.sunday-footer__newsletter-jump:focus-visible {
  outline: 3px solid var(--ss-red);
  outline-offset: 3px;
}
.sunday-footer__newsletter-jump .ss-arrow {
  display: block;
  width: 50%;
  height: auto;
  fill: currentColor;
}
.sunday-footer__logo-mark {
  display: inline-flex;
  align-items: flex-end;
  margin: 0 0 var(--ss-space-5);
  color: var(--ss-red);
}
.sunday-footer__logo-mark .sunday-footer__logo-svg {
  display: block;
  width: auto;
  height: clamp(100px, 12vw, 134px);
}
.sunday-footer__logo-image {
  width: auto;
  height: clamp(82px, 10vw, 112px);
  object-fit: contain;
}
.sunday-footer__social {
  margin-block-start: var(--ss-space-5);
}
.sunday-footer__social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ss-space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.sunday-footer__social-list a,
.sunday-footer__social-list a:hover,
.sunday-footer__social-list a:focus,
.sunday-footer__social-list a:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--ss-yellow);
  background: var(--ss-red);
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.sunday-footer__social-list a:hover {
  transform: translateY(-2px);
}
.sunday-footer__social-list a:focus-visible {
  outline: 3px solid var(--ss-red);
  outline-offset: 3px;
}
.sunday-footer__social-list svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: var(--ss-yellow);
  color: var(--ss-yellow);
}
.sunday-footer__social-list a:hover svg,
.sunday-footer__social-list a:focus svg,
.sunday-footer__social-list a:active svg {
  fill: var(--ss-yellow);
  color: var(--ss-yellow);
}
.sunday-footer__social-list img {
  display: block;
  width: 22px;
  height: 22px;
}

.sunday-footer__col-heading {
  margin: 0 0 var(--ss-space-4);
  font-weight: inherit;
  font-size: var(--ss-font-size-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}
.sunday-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: var(--ss-space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.sunday-footer__col-list a {
  font-weight: var(--ss-font-weight-bold);
  font-size: var(--ss-font-size-base);
}
.sunday-footer__col-list a:hover {
  text-decoration: underline;
}

.sunday-footer__powered-by {
  margin-block-start: auto;
  padding-block-start: var(--ss-space-5);
  color: var(--ss-red);
  opacity: 0.7;
  font-size: var(--ss-font-size-sm);
  line-height: 1.4;
}
.sunday-footer__powered-by a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sunday-footer__powered-by a:hover {
  opacity: 1;
}

.sunday-footer__col {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 820px) {
  .sunday-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .sunday-footer__brand {
    grid-column: 1 / -1;
    display: grid;
    justify-items: start;
  }
}
