/* ===========================
   HOW WE CHOOSE TOP 5
   Page-specific styles only
   =========================== */

.page-content {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 8px;
  padding-top: 20px;
  box-sizing: border-box;
}

/* Page title */
.page-content h1 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--accent, #0f172a);
}

/* Section headings */
.page-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--accent, #0f172a);
}

/* Paragraphs */
.page-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 14px;
}

/* ===========================
   DIAMOND BULLET LISTS
   =========================== */

.page-content ul {
  list-style: none;          /* remove default bullets */
  margin: 14px 0 18px;
  padding: 0;
}

.page-content li {
  position: relative;
  padding-left: 24px;        /* space for diamond */
  margin-bottom: 14px;       /* spacing between items */
  line-height: 1.75;
  font-size: 15px;
  color: #334155;
}

/* Diamond bullet */
.page-content li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.3em;
  font-size: 12px;
  color: var(--brand, #4d6bff);
}

/* Emphasis inside lists */
.page-content li strong {
  color: #0f172a;
  font-weight: 700;
}
.blue-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.blue-link:hover {
  text-decoration: underline;
}
/* ===========================
   Tablet
   =========================== */
@media (max-width: 900px) {
  .page-content {
    padding: 0 12px;
  }

  .page-content h1 {
    font-size: 26px;
  }

  .page-content h2 {
    font-size: 18px;
  }
}

/* ===========================
   Mobile
   =========================== */
@media (max-width: 600px) {
  .page-content h1 {
    font-size: 22px;
  }

  .page-content h2 {
    font-size: 17px;
  }

  .page-content p,
  .page-content li {
    font-size: 14px;
  }
}
