    :root {
      --bg: #eef2f7;
      --surface: #ffffff;
      --ink: #0e2235;
      --body: #3a4a5c;
      --muted: #6c7d8e;
      --line: #e4eaf1;
      --primary: #11643f;
      --primary-700: #0c4b30;
      --primary-050: #e7f4ee;
      --accent: #16a06a;
      --accent-700: #0f7a50;
      --amber: #d98324;
      --r: 18px;
      --r-sm: 11px;
      --shadow-1: 0 1px 2px rgba(13, 41, 70, .05), 0 6px 18px rgba(13, 41, 70, .07);
      --shadow-2: 0 10px 34px rgba(13, 41, 70, .14);
      --font-display: "Sora", "Segoe UI", system-ui, sans-serif;
      --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
      --maxw: 1280px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: var(--font-body);
      color: var(--body);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.55;
    }

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

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

    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* ===== HEADER (sama dengan landing) ===== */
    .topbar-accent {
      height: 3px;
      background: linear-gradient(90deg, #6ee7a8 0%, var(--accent) 45%, var(--primary) 100%);
    }

    .brandbar {
      background: var(--surface);
      background-image: radial-gradient(120% 160% at 100% 0%, rgba(22, 160, 106, .07), transparent 58%);
      border-bottom: 1px solid var(--line);
    }

    .brandbar-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 14px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .brand-logo {
      width: 56px;
      height: 56px;
      object-fit: contain;
      flex: none;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.18;
      min-width: 0;
    }

    .brand-text strong {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 19px;
      color: var(--ink);
      letter-spacing: -.2px;
    }

    .brand-text small {
      font-size: 12.5px;
      color: var(--muted);
      letter-spacing: .3px;
      margin-top: 3px;
    }

    .brand-actions {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 18px;
      flex: none;
    }

    .brand-actions .bl {
      font-size: 13px;
      font-weight: 600;
      color: var(--body);
      white-space: nowrap;
    }

    .brand-actions .bl:hover {
      color: var(--accent);
    }

    .brand-actions .btn-login {
      background: var(--accent);
      color: #fff;
      padding: 9px 20px;
      border-radius: 9px;
      font-weight: 700;
      font-size: 13px;
      transition: background .2s, transform .15s;
    }

    .brand-actions .btn-login:hover {
      background: var(--accent-700);
      transform: translateY(-1px);
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: linear-gradient(180deg, var(--primary) 0%, var(--primary-700) 100%);
      box-shadow: 0 2px 14px rgba(10, 60, 44, .28);
    }

    .navbar-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 22px;
      display: flex;
      align-items: center;
      gap: 18px;
      min-height: 54px;
    }

    .menu-toggle {
      display: none;
      color: #fff;
      font-weight: 600;
      cursor: pointer;
      padding: 8px 10px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .dropdown {
      position: relative;
    }

    .dropdown>a {
      display: block;
      color: #dfeee7;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: .4px;
      padding: 17px 15px;
      transition: color .2s, background .2s;
    }

    .dropdown>a.active,
    .dropdown:hover>a {
      color: #fff;
      background: rgba(255, 255, 255, .1);
    }

    .dropdown-content {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 232px;
      background: #fff;
      border-radius: 12px;
      box-shadow: var(--shadow-2);
      padding: 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all .22s ease;
      border: 1px solid var(--line);
    }

    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-content a {
      display: block;
      color: var(--body);
      font-size: 13.5px;
      padding: 9px 12px;
      border-radius: 8px;
    }

    .dropdown-content a:hover {
      background: var(--primary-050);
      color: var(--primary);
    }

    /* ===== PAGE BODY ===== */
    main {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 0 22px 10px;
    }

    .disc-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin: 30px 0 18px;
    }

    .disc-head h1 {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(22px, 3vw, 30px);
      color: var(--ink);
      margin: 0;
      letter-spacing: -.3px;
    }

    .btn-adv {
      border: 1px solid var(--accent);
      color: var(--accent-700);
      background: #fff;
      padding: 9px 18px;
      border-radius: 9px;
      font-weight: 600;
      font-size: 13px;
      transition: background .2s, color .2s;
      white-space: nowrap;
    }

    .btn-adv:hover {
      background: var(--accent);
      color: #fff;
    }

    .search-bar {
      display: flex;
      gap: 10px;
      margin-bottom: 26px;
    }

    .search-bar input {
      flex: 1;
      padding: 14px 18px;
      border: 1px solid var(--line);
      border-radius: var(--r-sm);
      background: var(--surface);
      font-size: 14.5px;
      font-family: inherit;
      color: var(--ink);
      box-shadow: var(--shadow-1);
    }

    .search-bar input:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(17, 100, 63, .15);
    }

    .search-bar button {
      padding: 0 36px;
      border: none;
      border-radius: var(--r-sm);
      background: var(--primary);
      color: #fff;
      font-weight: 700;
      font-size: 14.5px;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }

    .search-bar button:hover {
      background: var(--primary-700);
      transform: translateY(-1px);
    }

    /* ===== LAYOUT: sidebar tapisan (kiri) + hasil (kanan) ===== */
    .disc-layout {
      display: grid;
      grid-template-columns: 264px 1fr;
      gap: 28px;
      align-items: start;
    }

    .filter-panel {
      position: sticky;
      top: 74px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r);
      box-shadow: var(--shadow-1);
      overflow: hidden;
    }

    .filter-head {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--line);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      color: var(--ink);
    }

    .filter-head svg {
      width: 17px;
      height: 17px;
      fill: var(--accent);
    }

    .filter-body {
      padding: 12px 12px 16px;
    }

    .filter-group-label {
      font-size: 11px;
      letter-spacing: 1.2px;
      font-weight: 700;
      color: var(--muted);
      text-transform: uppercase;
      padding: 8px 8px 6px;
    }

    .filter-opt {
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 9px 8px;
      border-radius: 9px;
      cursor: pointer;
      transition: background .15s;
    }

    .filter-opt:hover {
      background: var(--primary-050);
    }

    .filter-opt input {
      width: 17px;
      height: 17px;
      accent-color: var(--accent);
      cursor: pointer;
      flex: none;
    }

    .filter-dot {
      width: 9px;
      height: 9px;
      border-radius: 3px;
      flex: none;
    }

    .filter-opt .ftxt {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--body);
      flex: 1;
    }

    .filter-opt .fcount {
      font-size: 11.5px;
      font-weight: 600;
      color: var(--muted);
      background: var(--bg);
      border-radius: 20px;
      padding: 2px 9px;
    }

    .filter-actions {
      display: flex;
      gap: 8px;
      padding: 6px 8px 0;
    }

    .filter-actions button {
      flex: 1;
      font-size: 12px;
      font-weight: 600;
      padding: 9px;
      border-radius: 8px;
      cursor: pointer;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--body);
      transition: all .18s;
    }

    .filter-actions button:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    /* ===== RESULTS ===== */
    .results-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .results-count {
      font-size: 13.5px;
      color: var(--muted);
    }

    .results-count strong {
      color: var(--ink);
    }

    .sort-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .sort-wrap select {
      font-family: inherit;
      font-size: 13px;
      font-weight: 600;
      color: var(--ink);
      padding: 8px 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      cursor: pointer;
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 20px;
    }

    .result-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-1);
      display: flex;
      flex-direction: column;
      transition: transform .22s, box-shadow .22s;
    }

    .result-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-2);
    }

    .result-thumb {
      position: relative;
      aspect-ratio: 16 / 10;
      background: linear-gradient(135deg, var(--cat, var(--primary)), #0b2238);
      overflow: hidden;
    }

    .result-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .result-tag {
      position: absolute;
      top: 10px;
      left: 10px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3px;
      color: #fff;
      background: var(--cat, var(--primary));
      padding: 4px 10px;
      border-radius: 7px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    }

    .result-body {
      padding: 13px 15px 14px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .result-title {
      margin: 0 0 12px;
      font-size: 13.5px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--ink);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .result-title a:hover {
      color: var(--accent);
    }

    .result-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 11px;
      border-top: 1px solid var(--line);
      font-size: 12px;
      color: var(--muted);
    }

    .result-meta .r-date,
    .result-meta .r-views {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .result-meta svg {
      width: 13px;
      height: 13px;
      fill: var(--muted);
    }

    .result-meta .r-views {
      font-weight: 600;
      color: var(--accent-700);
    }

    .result-meta .r-views svg {
      fill: var(--accent);
    }

    .no-results {
      grid-column: 1 / -1;
      text-align: center;
      padding: 60px 20px;
      color: var(--muted);
      font-size: 14px;
    }

    /* ===== PAGINATION ===== */
    .pagination {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
      margin: 34px 0 10px;
    }

    .pagination a,
    .pagination span {
      min-width: 38px;
      height: 38px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--line);
      border-radius: 9px;
      background: #fff;
      color: var(--body);
      font-size: 13px;
      font-weight: 600;
      transition: all .18s;
    }

    .pagination a:hover {
      border-color: var(--accent);
      color: var(--accent);
    }

    .pagination .pg-active {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
    }

    .pagination .pg-gap {
      border: none;
      background: transparent;
    }

    /* ===== FOOTER (hijau, sama dengan landing) ===== */
    .site-footer {
      margin-top: 56px;
      background: linear-gradient(180deg, #11643f 0%, #0a3f29 100%);
      color: #cbe8d8;
      position: relative;
    }

    .site-footer::before {
      content: "";
      display: block;
      height: 4px;
      background: linear-gradient(90deg, #6ee7a8, var(--accent), #0f7a50);
    }

    .footer-main {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.05fr;
      gap: 40px;
      padding: 52px 22px 40px;
    }

    .f-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #7af0b8;
      margin: 0 0 22px;
      position: relative;
      padding-bottom: 12px;
    }

    .f-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 38px;
      height: 3px;
      border-radius: 2px;
      background: #6ee7a8;
    }

    .f-contact {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .f-contact li {
      display: flex;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 14px;
      line-height: 1.65;
      color: #cbe8d8;
    }

    .f-contact li svg {
      width: 17px;
      height: 17px;
      fill: #6ee7a8;
      flex: none;
      margin-top: 4px;
    }

    .f-contact a {
      color: #e6f7ee;
    }

    .f-contact a:hover {
      color: #fff;
    }

    .f-hours {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .f-hours li {
      margin-bottom: 16px;
    }

    .f-hours .day {
      display: block;
      font-weight: 600;
      color: #eafaf1;
      font-size: 14px;
      margin-bottom: 3px;
    }

    .f-hours .time {
      font-size: 13.5px;
      color: #9fc7b0;
      line-height: 1.55;
    }

    .f-hours .closed {
      color: #ffc09b;
      font-weight: 600;
    }

    .f-social-col {
      text-align: center;
    }

    .f-social-col .f-title::after {
      left: 50%;
      transform: translateX(-50%);
    }

    .f-social {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 26px;
    }

    .f-social a {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .16);
      display: grid;
      place-items: center;
      transition: transform .2s, background .2s;
    }

    .f-social a:hover {
      background: rgba(255, 255, 255, .24);
      transform: translateY(-3px);
    }

    .f-social svg {
      width: 18px;
      height: 18px;
      fill: #fff;
    }

    .f-visitor {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 10px 20px;
      border: 1px solid rgba(255, 255, 255, .25);
      border-radius: 10px;
      font-size: 13.5px;
      font-weight: 600;
      color: #d8f3e4;
      background: rgba(255, 255, 255, .05);
    }

    .f-visitor svg {
      width: 16px;
      height: 16px;
      fill: #6ee7a8;
    }

    .f-visitor strong {
      color: #fff;
      font-family: var(--font-display);
      letter-spacing: 1px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .footer-bottom-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px 22px;
      font-size: 12.5px;
      color: #93b7a3;
    }

    .f-bottom-links {
      display: flex;
      gap: 22px;
    }

    .f-bottom-links a:hover {
      color: #7af0b8;
    }

    /* ===== FILTER TOGGLE (mobile) ===== */
    .filter-toggle {
      display: none;
      width: 100%;
      margin-bottom: 16px;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--r-sm);
      background: #fff;
      font-weight: 600;
      font-size: 13.5px;
      color: var(--ink);
      cursor: pointer;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 980px) {
      .disc-layout {
        grid-template-columns: 1fr;
      }

      .filter-toggle {
        display: block;
      }

      .filter-panel {
        position: static;
        display: none;
        margin-bottom: 18px;
      }

      .filter-panel.open {
        display: block;
      }
    }

    @media (max-width: 820px) {
      .menu-toggle {
        display: block;
      }

      .nav-links {
        display: none;
        position: absolute;
        top: 54px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--primary-700);
        padding: 8px;
      }

      .nav-links.open {
        display: flex;
      }

      .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, .06);
        border: none;
        margin: 4px 0 6px;
      }

      .dropdown-content a {
        color: #dfeee7;
      }

      .navbar-inner {
        position: relative;
      }
    }

    @media (max-width: 640px) {
      .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 22px 32px;
      }

      .brand-actions .bl {
        display: none;
      }

      .brand-text strong {
        font-size: 16px;
      }

      .brand-logo {
        width: 46px;
        height: 46px;
      }
    }

    @media (max-width: 520px) {
      .search-bar {
        flex-direction: column;
      }

      .search-bar button {
        padding: 13px;
      }
    }
