 :root {
      --primary: #1E88E5;
      --primary-dark: #1565C0;
      --accent: #2E7D32;
      --danger: #D32F2F;
      --warning: #F9A825;
      --bg: #f6f9fc;
      --card: #ffffff;
      --text: #1f2937;
      --muted: #64748b;
      --border: #e5e7eb;
      --shadow: 0 10px 30px rgba(0,0,0,0.06);
      --radius: 20px;
      --radius-sm: 14px;
      --transition: all 0.25s ease;
      --max-width: 1280px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    button, input {
      font: inherit;
    }

    .news-container {
      width: min(92%, var(--max-width));
      margin: auto;
    }

    /* =========================
       HERO
    ========================= */
    .hero {
      background: linear-gradient(135deg, #0f4c81, #1E88E5);
      color: white;
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      z-index: 0;
    }

    .hero::before {
      width: 260px;
      height: 260px;
      top: -60px;
      right: -50px;
    }

    .hero::after {
      width: 180px;
      height: 180px;
      bottom: -50px;
      left: -40px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .hero-text h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .hero-text p {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.92);
      max-width: 650px;
      margin-bottom: 24px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-badge {
      background: rgba(255,255,255,0.14);
      border: 1px solid rgba(255,255,255,0.18);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 0.92rem;
      backdrop-filter: blur(8px);
    }

    .hero-card {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      padding: 24px;
      backdrop-filter: blur(10px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    }

    .hero-card h3 {
      font-size: 1.15rem;
      margin-bottom: 10px;
    }

    .hero-card p {
      color: rgba(255,255,255,0.9);
      margin-bottom: 16px;
      font-size: 0.98rem;
    }

    .hero-stat-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .hero-stat {
      background: rgba(255,255,255,0.12);
      padding: 16px;
      border-radius: 18px;
    }

    .hero-stat strong {
      display: block;
      font-size: 1.5rem;
      margin-bottom: 4px;
    }

    .hero-stat span {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.85);
    }

    /* =========================
       TOOLBAR
    ========================= */
    .toolbar {
      margin-top: -28px;
      position: relative;
      z-index: 3;
    }

    .toolbar-box {
      background: var(--card);
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 18px;
    }

    .search-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
    }

    .search-input-wrap {
      position: relative;
    }

    .search-input {
      width: 100%;
      padding: 15px 18px 15px 48px;
      border-radius: 16px;
      border: 1px solid var(--border);
      outline: none;
      background: #fbfdff;
      transition: var(--transition);
      font-size: 1rem;
    }

    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(30,136,229,0.12);
    }

    .search-icon {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 1rem;
    }

    .result-count {
      color: var(--muted);
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .filters {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .filter-btn {
      border: none;
      background: #eef5fb;
      color: #35506b;
      padding: 11px 16px;
      border-radius: 999px;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 600;
      font-size: 0.92rem;
    }

    .filter-btn:hover {
      background: #dceeff;
    }

    .filter-btn.active {
      background: var(--primary);
      color: white;
      box-shadow: 0 8px 18px rgba(30,136,229,0.24);
    }

    /* =========================
       NEWS SECTION
    ========================= */
    .section {
      padding: 50px 0 80px;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 20px;
      margin-bottom: 26px;
    }

    .section-header h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 6px;
    }

    .section-header p {
      color: var(--muted);
      max-width: 700px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .news-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
      border: 1px solid rgba(0,0,0,0.03);
    }

    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.09);
    }

    .news-card-top {
      padding: 22px 22px 16px;
      background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
      border-bottom: 1px solid #f0f4f8;
    }

    .news-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 16px;
      align-items: center;
    }

    .news-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #e9f4ff;
      color: var(--primary-dark);
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
    }

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

    .news-icon-wrap {
      width: 82px;
      height: 82px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      box-shadow: 0 10px 24px rgba(0,0,0,0.05);
      margin-bottom: 16px;
    }

    .news-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      line-height: 1.35;
    }

    .news-card-body {
      padding: 20px 22px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .news-summary {
      color: var(--muted);
      margin-bottom: 18px;
      font-size: 0.98rem;
    }

    .news-summary.expanded {
      color: #465569;
    }

    .news-footer {
      margin-top: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      align-items: center;
      padding-top: 8px;
    }

    .btn {
      border: none;
      cursor: pointer;
      transition: var(--transition);
      border-radius: 14px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-primary {
      background: var(--primary);
      color: white;
      padding: 12px 16px;
    }

    .btn-primary:hover {
      background: var(--primary-dark);
    }

    .btn-secondary {
      background: #eef5fb;
      color: #35506b;
      padding: 12px 16px;
    }

    .btn-secondary:hover {
      background: #dceeff;
    }

    .load-more-wrap {
      text-align: center;
      margin-top: 36px;
    }

    .load-more-btn {
      padding: 14px 24px;
      font-size: 1rem;
      background: #00ad3a;
      color: white;
      border: none;
      border-radius: 16px;
      cursor: pointer;
      box-shadow: 0 12px 24px rgba(15,76,129,0.18);
      transition: var(--transition);
    }

    .load-more-btn:hover {
      transform: translateY(-2px);
      background: #005c29;
    }

    .empty-state {
      display: none;
      text-align: center;
      padding: 50px 20px;
      background: white;
      border-radius: 24px;
      box-shadow: var(--shadow);
      margin-top: 24px;
    }

    .empty-state h3 {
      margin-bottom: 10px;
      font-size: 1.4rem;
    }

    .empty-state p {
      color: var(--muted);
    }

    /* =========================
       RESPONSIVE
    ========================= */
    @media (max-width: 1100px) {
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-content {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .search-row {
        grid-template-columns: 1fr;
      }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .news-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 64px 0 54px;
      }

      .toolbar-box {
        padding: 18px;
      }

      .hero-stat-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero-badges,
      .filters {
        gap: 10px;
      }

      .filter-btn,
      .hero-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
      }

      .hero-stat-grid {
        grid-template-columns: 1fr;
      }

      .news-card-top,
      .news-card-body {
        padding-left: 18px;
        padding-right: 18px;
      }
    }