:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-2: #eef2ff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --primary: #1e3a8a;
  --primary-2: #1d4ed8;
  --accent: #f97316;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

.display-font {
  font-family: "Playfair Display", serif;
}

.navbar {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid var(--border);
}

.navbar-brand img {
  height: 54px;
}

.btn-primary {
  background: var(--primary-2);
  border-color: var(--primary-2);
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(29, 78, 216, 0.25);
}

.btn-outline-primary {
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: radial-gradient(circle at top left, #dbeafe 0%, #ffffff 45%, #f5f7fb 100%);
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.badge-soft {
  background: var(--surface-2);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.news-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card .card-body {
  padding: 1.4rem;
}

.news-card h5 {
  font-weight: 700;
}

.meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.sidebar-card h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.list-featured li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.list-featured img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--primary);
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 3rem 0 1.5rem;
}

.footer a {
  color: #e2e8f0;
}

.footer .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 8px;
}

.page-hero {
  background: linear-gradient(135deg, #e0ecff, #f5f7fb);
  padding: 3.5rem 0;
}

.article-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-content {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--primary);
}

.pagination .page-link {
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text);
}

.pagination .active .page-link {
  background: var(--primary-2);
  border-color: var(--primary-2);
}

@media (max-width: 992px) {
  .hero {
    padding: 4rem 0;
  }
  .hero-card img {
    height: 260px;
  }
  .article-hero img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 3rem 0;
  }
  .news-card img {
    height: 180px;
  }
}
