/* =====================================================
   INNER PAGES
===================================================== */
.page-header {
  background: #f5f7fb;
  padding: 32px 0 24px;
  border-bottom: 1px solid #e8ecf4;
}

.breadcrumbs {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.breadcrumbs a {
  color: #6b7280;
}

.breadcrumbs a:hover {
  color: #0a2a6b;
}

.breadcrumbs span.separator {
  margin: 0 6px;
  opacity: 0.5;
}

.page-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #1a1a2e;
}

.page-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 28px;
}

.page-tabs a,
.page-tabs button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: #f0f4ff;
  color: #3b4a6b;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-tabs a:hover,
.page-tabs button:hover {
  background: #e0e8ff;
}

.page-tabs a.active,
.page-tabs button.active {
  background: #1e5bb8;
  color: #ffffff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  border-color: #c5d4f0;
  box-shadow: 0 8px 24px rgba(10, 42, 107, 0.08);
}

.card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
  margin-bottom: 20px;
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.card-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

.card .btn {
  padding: 8px 18px;
  font-size: 14px;
}

.card .btn-primary {
  border-radius: 8px;
}

.site-content {
  padding: 40px 0 60px;
  min-height: 50vh;
}

.entry-content {
  max-width: 800px;
}

.entry-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
}

.entry-content p {
  margin-bottom: 16px;
}

.entry-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}