/* ── 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;
      }

      /* ── TOOLBAR ── */
      .civitas-toolbar {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 36px;
        padding: 20px 24px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
      }
      .civitas-search {
        position: relative;
        flex: 1;
        min-width: 200px;
        max-width: 320px;
      }
      .civitas-search i {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
        font-size: 13px;
      }
      .civitas-search input {
        width: 100%;
        padding: 10px 14px 10px 36px;
        border: 1.5px solid #e0e0ec;
        border-radius: 8px;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s;
        color: #2e2e3a;
      }
      .civitas-search input:focus {
        border-color: #f5a500;
      }
      .civitas-search input::placeholder {
        color: #bbb;
      }
      .civitas-filters {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
      }
      .civitas-fbtn {
        padding: 8px 18px;
        font-size: 13px;
        font-weight: 600;
        font-family: inherit;
        border-radius: 20px;
        border: 1.5px solid #e0e0ec;
        background: #f8f8fc;
        color: #888;
        cursor: pointer;
        transition: all 0.2s;
      }
      .civitas-fbtn:hover {
        border-color: #f5a500;
        color: #c98a00;
      }
      .civitas-fbtn.active {
        background: #f5a500;
        border-color: #f5a500;
        color: #1a1a1a;
        box-shadow: 0 3px 10px rgba(245, 165, 0, 0.35);
      }
      .civitas-count {
        margin-left: auto;
        font-size: 13px;
        color: #999;
        white-space: nowrap;
      }

      /* ── SECTION LABEL ── */
      .civitas-section-label {
        display: inline-block;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #c98a00;
        background: #fff8e6;
        border-left: 3px solid #f5a500;
        padding: 5px 14px;
        border-radius: 0 8px 8px 0;
        margin-bottom: 20px;
      }

      /* ── CARD GRID ── */
      .civitas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
      }

      /* ── CARD ── */
      .civitas-card {
        background: #fff;
        border-radius: 14px;
        border: 1.5px solid #e8e8f0;
        overflow: hidden;
        transition:
          transform 0.22s,
          border-color 0.22s,
          box-shadow 0.22s;
      }
      .civitas-card:hover {
        transform: translateY(-5px);
        border-color: #f5a500;
        box-shadow: 0 12px 36px rgba(245, 165, 0, 0.14);
      }
      .civitas-card-photo {
        position: relative;
        background: #e8eaf0;
        overflow: hidden;
      }
      .civitas-card-photo img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: top;
        display: block;
        transition: transform 0.4s;
      }
      .civitas-card:hover .civitas-card-photo img {
        transform: scale(1.04);
      }
      .civitas-jabatan-tag {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: #f5a500;
        color: #1a1a1a;
        font-size: 11px;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 20px;
        white-space: nowrap;
        box-shadow: 0 2px 10px rgba(245, 165, 0, 0.45);
      }
      .civitas-avatar {
        width: 100%;
        height: 220px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(145deg, #1a1a2e, #243060);
      }
      .civitas-initials {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(245, 165, 0, 0.18);
        border: 2px solid rgba(245, 165, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        color: #f5a500;
      }
      .civitas-card-body {
        padding: 16px 16px 14px;
      }
      .civitas-card-name {
        font-size: 14px;
        font-weight: 700;
        color: #2e2e3a;
        line-height: 1.4;
        margin-bottom: 5px;
      }
      .civitas-card-nidn {
        font-size: 12px;
        color: #888;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 12px;
      }
      .civitas-card-nidn i {
        color: #f5a500;
        font-size: 11px;
      }
      .civitas-card-foot {
        border-top: 1.5px solid #f0f0f8;
        padding-top: 11px;
        display: flex;
        gap: 7px;
        align-items: center;
      }
      .civitas-btn-detail {
        flex: 1;
        padding: 7px 0;
        text-align: center;
        font-size: 12.5px;
        font-weight: 600;
        border-radius: 8px;
        border: 1.5px solid #f5a500;
        background: transparent;
        color: #c98a00;
        text-decoration: none;
        display: block;
        transition: all 0.18s;
      }
      .civitas-btn-detail:hover {
        background: #f5a500;
        color: #1a1a1a;
        text-decoration: none;
      }
      .civitas-btn-icon {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        border: 1.5px solid #e8e8f0;
        background: transparent;
        color: #aaa;
        text-decoration: none;
        font-size: 13px;
        transition: all 0.18s;
      }
      .civitas-btn-icon:hover {
        background: #fff8e6;
        border-color: #f5a500;
        color: #c98a00;
        text-decoration: none;
      }

      /* ── EMPTY STATE ── */
      .civitas-empty {
        grid-column: 1/-1;
        text-align: center;
        padding: 4rem 1rem;
        color: #aaa;
      }
      .civitas-empty i {
        font-size: 40px;
        margin-bottom: 14px;
        opacity: 0.3;
        display: block;
      }
      .civitas-empty p {
        font-size: 15px;
      }

      /* ── SKELETON ── */
      .civitas-skeleton {
        border-radius: 14px;
        overflow: hidden;
        background: #fff;
        border: 1.5px solid #eee;
      }
      .civitas-sk-photo {
        height: 220px;
        background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
        background-size: 200% 100%;
        animation: civitas-shimmer 1.3s infinite;
      }
      .civitas-sk-body {
        padding: 16px;
      }
      .civitas-sk-line {
        height: 12px;
        border-radius: 6px;
        background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
        background-size: 200% 100%;
        animation: civitas-shimmer 1.3s infinite;
        margin-bottom: 10px;
      }
      .civitas-sk-line.short {
        width: 55%;
      }
      @keyframes civitas-shimmer {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
      }

      /* ═══════════════════════════════════════
         AKREDITASI — Custom Styles
      ═══════════════════════════════════════ */

      .ak-wrap {
        max-width: 1080px;
        margin: 0 auto;
        padding: 70px 24px 80px;
      }

      /* ── Divider heading ── */
      .ak-divider {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 36px;
      }
      .ak-divider .line {
        flex: 1; height: 2px;
        background: linear-gradient(to right, #f5a500, transparent);
      }
      .ak-divider .line.right {
        background: linear-gradient(to left, #f5a500, transparent);
      }
      .ak-divider h3 {
        font-size: clamp(1.1rem, 2.5vw, 1.4rem);
        font-weight: 800;
        color: #1a1a2e;
        white-space: nowrap;
      }

      /* ── Hero akreditasi card ── */
      .ak-hero {
        background: linear-gradient(120deg, #1a1a2e 0%, #243060 100%);
        border-radius: 20px;
        padding: 44px 52px;
        margin-bottom: 48px;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 40px;
        align-items: center;
        position: relative;
        overflow: hidden;
      }
      .ak-hero::before {
        content: '';
        position: absolute;
        right: -60px; top: -60px;
        width: 220px; height: 220px;
        border-radius: 50%;
        background: rgba(245,165,0,.07);
      }
      .ak-hero::after {
        content: '';
        position: absolute;
        left: -40px; bottom: -40px;
        width: 160px; height: 160px;
        border-radius: 50%;
        background: rgba(245,165,0,.05);
      }
      .ak-hero-left { position: relative; z-index: 1; }
      .ak-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(245,165,0,.15);
        border: 1px solid rgba(245,165,0,.3);
        color: #f5a500;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 5px 14px;
        border-radius: 20px;
        margin-bottom: 18px;
      }
      .ak-hero h2 {
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 6px;
      }
      .ak-hero h2 span { color: #f5a500; }
      .ak-hero-lembaga {
        font-size: 14px;
        color: #aaa;
        margin-bottom: 24px;
      }
      .ak-hero-lembaga strong { color: #ddd; }
      .ak-hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }
      .ak-hero-meta-item {
        display: flex;
        flex-direction: column;
        gap: 3px;
      }
      .ak-hero-meta-item .lbl {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #777;
      }
      .ak-hero-meta-item .val {
        font-size: 13px;
        font-weight: 600;
        color: #ddd;
      }

      /* Grade circle */
      .ak-grade {
        position: relative; z-index: 1;
        width: 140px; height: 140px;
        border-radius: 50%;
        background: rgba(245,165,0,.12);
        border: 3px solid rgba(245,165,0,.35);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 0 0 8px rgba(245,165,0,.06);
      }
      .ak-grade .grade-letter {
        font-size: 3.5rem;
        font-weight: 800;
        color: #f5a500;
        line-height: 1;
      }
      .ak-grade .grade-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #f5a500;
        opacity: .75;
        margin-top: 4px;
      }

      /* ── Status bar ── */
      .ak-status-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        margin-bottom: 48px;
      }
      .ak-stat {
        background: #fff;
        border: 1.5px solid #e8e8f0;
        border-radius: 14px;
        padding: 22px 18px;
        text-align: center;
        box-shadow: 0 4px 16px rgba(26,26,46,.06);
        transition: border-color .2s, transform .2s;
        border-top: 4px solid #f5a500;
      }
      .ak-stat:hover { border-color: #f5a500; transform: translateY(-3px); }
      .ak-stat-icon {
        font-size: 22px;
        color: #f5a500;
        margin-bottom: 10px;
      }
      .ak-stat-val {
        font-size: 1.3rem;
        font-weight: 800;
        color: #1a1a2e;
        line-height: 1;
        margin-bottom: 5px;
      }
      .ak-stat-lbl {
        font-size: 11px;
        font-weight: 600;
        color: #7a7a8a;
        text-transform: uppercase;
        letter-spacing: .7px;
      }

      /* ── SK & Dokumen cards ── */
      .ak-doc-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-bottom: 48px;
      }
      .ak-doc-card {
        background: #fff;
        border: 1.5px solid #e8e8f0;
        border-radius: 14px;
        padding: 26px 24px;
        box-shadow: 0 4px 16px rgba(26,26,46,.06);
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: border-color .2s, transform .2s;
      }
      .ak-doc-card:hover { border-color: #f5a500; transform: translateY(-3px); }
      .ak-doc-card-head {
        display: flex;
        align-items: flex-start;
        gap: 14px;
      }
      .ak-doc-icon {
        width: 46px; height: 46px;
        border-radius: 12px;
        background: #fff8e6;
        display: flex; align-items: center; justify-content: center;
        color: #c98a00; font-size: 19px; flex-shrink: 0;
      }
      .ak-doc-title {
        font-size: 14.5px;
        font-weight: 700;
        color: #1a1a2e;
        line-height: 1.4;
        margin-bottom: 3px;
      }
      .ak-doc-sub {
        font-size: 12.5px;
        color: #7a7a8a;
        line-height: 1.6;
      }
      .ak-doc-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 12px 14px;
        background: #f7f8fc;
        border-radius: 10px;
        font-size: 12.5px;
      }
      .ak-doc-meta-row {
        display: flex;
        gap: 8px;
      }
      .ak-doc-meta-row .key {
        color: #7a7a8a;
        min-width: 110px;
        flex-shrink: 0;
        font-weight: 600;
      }
      .ak-doc-meta-row .val { color: #1a1a2e; font-weight: 600; }
      .ak-doc-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f5a500;
        color: #1a1a2e;
        font-size: 13px;
        font-weight: 700;
        padding: 9px 18px;
        border-radius: 9px;
        text-decoration: none;
        transition: opacity .2s;
        align-self: flex-start;
        border: none;
        cursor: pointer;
      }
      .ak-doc-btn:hover { opacity: .85; text-decoration: none; color: #1a1a2e; }
      .ak-doc-btn.outline {
        background: transparent;
        border: 1.5px solid #f5a500;
        color: #c98a00;
      }
      .ak-doc-btn.outline:hover { background: #fff8e6; }

      /* ── Riwayat akreditasi ── */
      .ak-history {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 48px;
      }
      .ak-history-item {
        display: flex;
        align-items: center;
        gap: 20px;
        background: #fff;
        border: 1.5px solid #e8e8f0;
        border-radius: 14px;
        padding: 20px 24px;
        box-shadow: 0 4px 16px rgba(26,26,46,.06);
        transition: border-color .2s;
      }
      .ak-history-item:hover { border-color: #f5a500; }
      .ak-history-item.active { border-color: #f5a500; background: #fffcf5; }
      .ak-history-grade {
        width: 56px; height: 56px;
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.6rem; font-weight: 800;
        flex-shrink: 0;
      }
      .ak-history-grade.grade-b { background: #fff8e6; color: #c98a00; }
      .ak-history-grade.grade-c { background: #f3f4f6; color: #6b7280; }
      .ak-history-info { flex: 1; }
      .ak-history-info h4 {
        font-size: 14.5px; font-weight: 700;
        color: #1a1a2e; margin-bottom: 4px;
      }
      .ak-history-info p {
        font-size: 13px; color: #7a7a8a;
        margin: 0; max-width: 100%; line-height: 1.6;
      }
      .ak-history-period {
        text-align: right;
        flex-shrink: 0;
      }
      .ak-history-period .period {
        font-size: 13px; font-weight: 700; color: #1a1a2e;
      }
      .ak-history-period .status {
        display: inline-block;
        font-size: 11px; font-weight: 700;
        padding: 3px 10px; border-radius: 20px;
        margin-top: 5px;
      }
      .status-aktif { background: #e8f5e9; color: #2e7d32; }
      .status-berakhir { background: #f3f4f6; color: #6b7280; }

      /* Responsive */
      @media (max-width: 900px) {
        .ak-hero { grid-template-columns: 1fr; text-align: left; }
        .ak-grade { display: none; }
        .ak-status-bar { grid-template-columns: repeat(2, 1fr); }
        .ak-doc-grid { grid-template-columns: 1fr; }
      }
      @media (max-width: 560px) {
        .ak-wrap { padding: 48px 16px 60px; }
        .ak-status-bar { grid-template-columns: repeat(2, 1fr); }
        .ak-history-item { flex-wrap: wrap; gap: 12px; }
        .ak-history-period { text-align: left; }
        .ak-hero { padding: 28px 24px; }
      }