/* ==========================================================================
   DEFAULT PAGE & LEGAL DOCUMENTS STYLES (page-default.css)
   ========================================================================== */

/* Hero Banner */
.page-hero {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

/* Entry Content Card */
.page-entry-card {
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Typography & Headings inside content */
.entry-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.entry-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.entry-content p {
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
  color: #334155;
}

.entry-content ul, 
.entry-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: #334155;
}

.entry-content li {
  margin-bottom: 0.5rem;
  font-size: 0.975rem;
}

.entry-content a {
  color: #0d6efd;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: #0a58ca;
}

/* Tables inside legal content */
.entry-content table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: collapse;
}

.entry-content table th,
.entry-content table td {
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
}

.entry-content table th {
  background-color: #f8fafc;
  font-weight: 600;
  color: #0f172a;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  .page-entry-card {
    padding: 1.5rem !important;
  }

  .entry-content h2 {
    font-size: 1.25rem;
  }
}