/* Base font families */
body {
  font-family: "Arvo", serif;
}
.font-gochi {
  font-family: "Gochi Hand", cursive;
}

/* News image oval mask */
.news-img-oval {
  aspect-ratio: 16/7;
  object-fit: cover;
  width: 100%;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 4px solid #fff;
  background: #fff;
}

/* Footer email input */
.footer-input {
  width: 100%;
  max-width: 320px;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  border: none;
  background: #e6f7fa;
  color: #4e87a0;
  font-size: 1rem;
  margin-bottom: 1rem;
  outline: none;
}
.footer-input::placeholder {
  color: #4e87a0;
  opacity: 1;
}