.site-footer {
  margin-top: 48px;
  padding: 40px 20px 28px;
  background: var(--screen-bg);
  border-top: 1px solid var(--cell-brd);
  color: var(--page-text);
  font-family: var(--font-body);
}

.site-footer-main {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: space-between;
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 200px;
}

.site-footer-logo {
  text-decoration: none;
}

/* Logo + "Play Today's Daily" sit in their own row at the foot of the footer,
   just above the social/legal strip. Keeping them out of the top block avoids
   a second Wordtrak logo right under the homepage hero's logo. */
.site-footer-cta-row {
  max-width: 980px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.site-footer-badges {
  display: flex;
  gap: 8px;
}

.site-footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
}

.site-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}

.site-footer-heading {
  margin: 0 0 2px;
  font-family: var(--font-flap);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
}

.site-footer-link {
  color: var(--page-text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
}

.site-footer-link:hover {
  color: var(--orange);
}

.site-footer-bottom {
  max-width: 980px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--cell-brd);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.site-footer-socials {
  display: flex;
  gap: 14px;
}

.site-footer-social {
  display: inline-flex;
  color: var(--page-sub);
}

.site-footer-social:hover {
  color: var(--orange);
}

.site-footer-social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer-legal {
  display: flex;
  gap: 16px;
}

.site-footer-legal-link {
  color: var(--page-sub);
  text-decoration: none;
  font-size: 14px;
}

.site-footer-legal-link:hover {
  color: var(--orange);
}

.site-footer-tag {
  margin: 0 0 0 auto;
  color: var(--page-sub);
  font-size: 13px;
}

@media (max-width: 640px) {
  .site-footer-main {
    gap: 28px;
  }

  .site-footer-tag {
    margin-left: 0;
    flex-basis: 100%;
  }
}
