/* =========================== */
/* Page Base */
body.other-page {
  background: #FFFFFF;
  color: #000000;
  font-family: 'Sora', sans-serif;
}

/* =========================== */
/* Page Header */
#other-content {
  max-width: 900px;
  margin: 8rem auto 3rem auto;
  padding: 2rem;
  text-align: center;
}

/* Large screens breathing room */
@media (min-width: 915px) {
  #other-content {
    max-width: 1100px;
    padding-left: clamp(2rem, 2vw, 4rem);
    padding-right: clamp(2rem, 2vw, 4rem);
  }
}

#other-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;         
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: #000;
}

#other-content p {
  font-size: 1.2rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.25rem;
  text-align: center;
}

/* =========================== */
/* Blog Entry Boxes */
.blog-entry {
  width: 90%;
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 1.75rem 2rem;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-left: 4px solid #000;   /* visual anchor */
  border-radius: 0;
  box-sizing: border-box;
}

.blog-entry h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #111;
}

.blog-entry p {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Links */
.other-link {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #CCC;
  word-break: break-all;
}

.other-link:hover {
  color: #4FC3F7;
  border-color: #4FC3F7;
}

/* =========================== */
/* Mobile Adjustments */
@media (max-width: 500px) {
  .blog-entry {
    width: 95%;
    padding: 1.25rem;
  }

  #other-content h1 {
    font-size: 2.4rem;
  }
}
