/* ── CUSTOM BREADCRUMBS ── */
      .rs-breadcrumbs {
        position: relative;
        overflow: hidden;
      }

      .rs-breadcrumbs .breadcrumbs-img img {
        object-fit: cover;
        display: block;
        filter: brightness(0.3);
      }

      /* Overlay gradient di atas foto */
      .rs-breadcrumbs.breadcrumbs-overlay::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          120deg,
          rgba(26, 26, 46, 0.78) 0%,
          rgba(245, 165, 0, 0.18) 100%
        );
        z-index: 1;
      }

      .rs-breadcrumbs .breadcrumbs-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        text-align: left;
      }

      .rs-breadcrumbs .breadcrumbs-text .page-title {
        /* font-size: 48px;
        margin-bottom: 20px;
        color: #ff5421; */
        font-size: clamp(1.6rem, 4vw, 2.8rem);
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 12px;
      }

      p {
        margin: 0 0 26px;
        line-height: 1.8;
        font-size: clamp(13px, 1.8vw, 15px);
        line-height: 1.8;
        max-width: 620px;
      }

/* Wrap */
      .pgm-wrap {
        max-width: 860px;
        margin: 0 auto;
        padding: 64px 24px 80px;
      }

      /* Header */
      .pgm-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 32px;
        flex-wrap: wrap;
        gap: 12px;
      }
      .pgm-header-left .civitas-section-label { margin-bottom: 10px; }
      .pgm-header-left h2 {
        font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        font-weight: 800;
        color: #1a1a2e;
        margin: 0;
      }
      .pgm-header-left h2 span { color: #f5a500; }
      .pgm-count {
        font-size: 13px;
        color: #7a7a8a;
      }

      /* Search bar */
      .pgm-search {
        position: relative;
        margin-bottom: 28px;
      }
      .pgm-search i {
        position: absolute;
        left: 14px; top: 50%;
        transform: translateY(-50%);
        color: #bbb; font-size: 14px;
      }
      .pgm-search input {
        width: 100%;
        padding: 12px 16px 12px 42px;
        border: 1.5px solid #e8e8f0;
        border-radius: 10px;
        background: #fff;
        font-family: 'Plus Jakarta Sans', inherit;
        font-size: 14px;
        color: #2e2e3a;
        outline: none;
        transition: border-color .2s;
        box-shadow: 0 3px 14px rgba(26,26,46,.06);
      }
      .pgm-search input:focus { border-color: #f5a500; }
      .pgm-search input::placeholder { color: #bbb; }

      /* List */
      .pgm-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }

      /* Card pengumuman */
      .pgm-card {
        background: #fff;
        border: 1.5px solid #e8e8f0;
        border-radius: 14px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 4px 18px rgba(26,26,46,.06);
        transition: border-color .2s, transform .2s, box-shadow .2s;
        display: flex;
        text-decoration: none;
        color: inherit;
      }
      .pgm-card:hover {
        border-color: #f5a500;
        transform: translateY(-3px);
        box-shadow: 0 10px 32px rgba(245,165,0,.13);
        text-decoration: none;
        color: inherit;
      }

      /* Garis kiri + tanggal */
      .pgm-card-date {
        flex-shrink: 0;
        width: 72px;
        background: #1a1a2e;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px 10px;
        gap: 2px;
        transition: background .2s;
      }
      .pgm-card:hover .pgm-card-date { background: #f5a500; }
      .pgm-card-date .day {
        font-size: 1.7rem;
        font-weight: 800;
        color: #f5a500;
        line-height: 1;
        transition: color .2s;
      }
      .pgm-card:hover .pgm-card-date .day { color: #1a1a2e; }
      .pgm-card-date .month {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .8px;
        color: #7a8899;
        transition: color .2s;
      }
      .pgm-card:hover .pgm-card-date .month { color: #1a1a2e; }
      .pgm-card-date .year {
        font-size: 11px;
        font-weight: 600;
        color: #4a5568;
        transition: color .2s;
      }
      .pgm-card:hover .pgm-card-date .year { color: #1a1a2e; }

      /* Konten */
      .pgm-card-body {
        flex: 1;
        padding: 18px 22px;
        min-width: 0;
      }
      .pgm-card-title {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a2e;
        line-height: 1.4;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .pgm-card-excerpt {
        font-size: 13.5px;
        color: #7a7a8a;
        line-height: 1.7;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .pgm-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
      }
      .pgm-card-meta {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        color: #aaa;
      }
      .pgm-card-meta i { color: #f5a500; font-size: 11px; }
      .pgm-card-arrow {
        font-size: 12px;
        color: #ddd;
        transition: all .2s;
      }
      .pgm-card:hover .pgm-card-arrow { color: #f5a500; transform: translateX(4px); }

      /* Badge baru */
      .pgm-badge-new {
        display: inline-block;
        font-size: 10px;
        font-weight: 800;
        background: #fff8e6;
        color: #c98a00;
        border: 1px solid rgba(245,165,0,.25);
        padding: 2px 8px;
        border-radius: 20px;
        margin-left: 8px;
        vertical-align: middle;
        text-transform: uppercase;
        letter-spacing: .5px;
      }

      /* Empty state */
      .pgm-empty {
        text-align: center;
        padding: 4rem 1rem;
        color: #aaa;
      }
      .pgm-empty i {
        font-size: 40px;
        opacity: .25;
        display: block;
        margin-bottom: 14px;
      }
      .pgm-empty p { font-size: 15px; }

      /* Pagination */
      .pgm-pagination {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 36px;
        flex-wrap: wrap;
      }
      .pgm-pagination a,
      .pgm-pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 38px; height: 38px;
        border-radius: 9px;
        font-size: 13px;
        font-weight: 600;
        border: 1.5px solid #e8e8f0;
        background: #fff;
        color: #7a7a8a;
        text-decoration: none;
        transition: all .18s;
        padding: 0 10px;
      }
      .pgm-pagination a:hover { border-color: #f5a500; color: #c98a00; background: #fff8e6; }
      .pgm-pagination span.active {
        background: #f5a500; border-color: #f5a500;
        color: #1a1a2e; font-weight: 700;
      }
      .pgm-pagination span.disabled { opacity: .4; pointer-events: none; }

      @media (max-width: 560px) {
        .pgm-wrap { padding: 44px 16px 60px; }
        .pgm-card-title { white-space: normal; }
        .pgm-card-date { width: 60px; padding: 16px 8px; }
        .pgm-card-date .day { font-size: 1.4rem; }
      }