.mascot-promo {
  display: grid;
  grid-template-columns: minmax(260px, 460px) 1fr;
  gap: 22px;
  align-items: stretch;
}

.mascot-promo a {
  width: 100%;
  margin-left: 0;
}

.mascot-story {
  padding: 20px 24px;
  background: #edf5ed;
  border: 1px solid #cfe0d1;
  border-radius: 18px;
}

.mascot-story h2 {
  margin: 0 0 8px;
  font-size: 21px;
  color: var(--green);
}

.mascot-story p {
  margin: 4px 0;
}

.mascot-story p strong {
  font-size: 18px;
  color: var(--green);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 14px 0 8px;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.last-updated {
  margin: 6px 0;
  color: #f0f6f1;
  font-size: 14px;
}

.footer-qr {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-qr img {
  display: block;
  width: 159px;
  height: 159px;
  background: white;
  border: 8px solid white;
}

.footer-qr span {
  font-size: 13px;
  color: #d7e3da;
}

@media (max-width: 800px) {
  .mascot-promo {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-qr {
    align-items: flex-start;
  }
}
