/* ── 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;
      }


/* ── CSS Variables ── */
    :root {
      --yellow: #f5a500;
      --yellow-dark: #d48e00;
      --yellow-light: #fff8e6;
      --dark: #1a1a2e;
      --dark2: #16213e;
      --text: #3a3a4a;
      --text-muted: #7a7a8a;
      --bg: #f7f8fc;
      --white: #ffffff;
      --radius: 16px;
      --shadow: 0 8px 32px rgba(26,26,46,0.10);
    }

    /* ── Profile Section ── */
    .profile-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 24px 80px;
    }

    /* Stats grid */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 36px;
    }
    .stat-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 24px 20px;
      text-align: center;
      border-top: 4px solid var(--yellow);
      transition: transform 0.2s;
    }
    .stat-card:hover { transform: translateY(-4px); }
    .stat-card .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--yellow-dark);
    }
    .stat-card .lbl {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* Profile Top Card */
    .profile-top-card {
      background: var(--white);
      border-radius: 24px;
      box-shadow: var(--shadow);
      overflow: hidden;
      margin-bottom: 50px;
      display: grid;
      grid-template-columns: 300px 1fr;
    }
    .profile-photo-side {
      background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 100%);
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      position: relative;
      overflow: hidden;
    }
    .profile-photo-side::before {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(245,165,0,0.08);
    }
    .profile-photo-side::after {
      content: '';
      position: absolute;
      top: -40px; left: -40px;
      width: 150px; height: 150px;
      border-radius: 50%;
      background: rgba(245,165,0,0.05);
    }
    .photo-frame { position: relative; z-index: 1; }
    .photo-frame img {
      width: 180px; height: 210px;
      object-fit: cover; object-position: top;
      border-radius: 16px;
      border: 4px solid var(--yellow);
      display: block;
    }
    .photo-frame .jabatan-badge {
      position: absolute;
      bottom: -14px; left: 50%;
      transform: translateX(-50%);
      background: var(--yellow);
      color: var(--dark);
      font-size: 12px; font-weight: 700;
      padding: 6px 16px;
      border-radius: 20px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(245,165,0,0.4);
    }
    .profile-social {
      display: flex; gap: 10px;
      margin-top: 20px;
      position: relative; z-index: 1;
    }
    .profile-social a {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      color: #ccc; text-decoration: none;
      font-size: 15px; transition: all 0.2s;
    }
    .profile-social a:hover {
      background: var(--yellow);
      color: var(--dark);
      border-color: var(--yellow);
    }

    .profile-info-side { padding: 40px 44px; }
    .profile-name {
      font-family: 'Playfair Display', serif;
      font-size: 2rem; font-weight: 800;
      color: var(--dark);
      margin-bottom: 6px; line-height: 1.2;
    }
    .profile-prodi {
      color: var(--yellow-dark);
      font-size: 14px; font-weight: 600;
      letter-spacing: 0.5px; margin-bottom: 24px;
    }
    .info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px; margin-bottom: 30px;
    }
    .info-item { display: flex; flex-direction: column; gap: 3px; }
    .info-item .label {
      font-size: 11px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 1px;
      color: var(--text-muted);
    }
    .info-item .value { font-size: 14px; font-weight: 600; color: var(--dark); }
    .info-item .value a { color: var(--yellow-dark); text-decoration: none; }
    .info-item .value a:hover { text-decoration: underline; }
    .profile-tags { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      background: var(--yellow-light);
      color: var(--yellow-dark);
      font-size: 12px; font-weight: 600;
      padding: 5px 14px; border-radius: 20px;
      border: 1px solid rgba(245,165,0,0.2);
    }

    /* Tabs */
    .profile-tabs {
      display: flex;
      background: var(--white);
      border-radius: 14px;
      padding: 6px;
      box-shadow: var(--shadow);
      margin-bottom: 32px;
      overflow-x: auto;
      gap: 0;
    }
    .tab-btn {
      flex: 1; min-width: max-content;
      padding: 12px 20px;
      border: none; background: transparent;
      border-radius: 10px; cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px; font-weight: 600;
      color: var(--text-muted);
      transition: all 0.25s;
      display: flex; align-items: center; gap: 8px;
    }
    .tab-btn.active {
      background: var(--yellow); color: var(--dark);
      box-shadow: 0 4px 14px rgba(245,165,0,0.35);
    }
    .tab-btn:hover:not(.active) {
      background: var(--yellow-light); color: var(--yellow-dark);
    }

    /* Tab panels */
    .tab-panel { display: none; animation: fadeInUp 0.3s ease; }
    .tab-panel.active { display: block; }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Section card */
    .section-card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 32px 36px;
      margin-bottom: 24px;
    }
    .section-card h3 {
      font-size: 17px; font-weight: 700;
      color: var(--dark); margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-card h3 .icon-circle {
      width: 34px; height: 34px;
      background: var(--yellow-light);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--yellow-dark); font-size: 15px; flex-shrink: 0;
    }
    .about-text { font-size: 15px; line-height: 1.85; color: var(--text); }

    /* Timeline */
    .timeline { list-style: none; position: relative; padding-left: 28px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 8px; top: 4px; bottom: 4px;
      width: 2px;
      background: linear-gradient(to bottom, var(--yellow), transparent);
    }
    .timeline li { position: relative; padding-bottom: 24px; }
    .timeline li:last-child { padding-bottom: 0; }
    .timeline li::before {
      content: '';
      position: absolute;
      left: -24px; top: 5px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--yellow);
      border: 2px solid var(--white);
      box-shadow: 0 0 0 2px var(--yellow);
    }
    .timeline .year {
      font-size: 11px; font-weight: 700;
      color: var(--yellow-dark);
      text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
    }
    .timeline .title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
    .timeline .desc  { font-size: 13px; color: var(--text-muted); }

    /* Publikasi */
    .pub-list { display: flex; flex-direction: column; gap: 16px; }
    .pub-item {
      display: flex; gap: 16px;
      padding: 18px 20px;
      background: var(--bg);
      border-radius: 12px;
      border-left: 4px solid var(--yellow);
      transition: all 0.2s;
    }
    .pub-item:hover { background: var(--yellow-light); transform: translateX(4px); }
    .pub-num { font-size: 24px; font-weight: 800; color: rgba(245,165,0,0.25); min-width: 36px; line-height: 1; }
    .pub-content .pub-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .pub-content .pub-meta  { font-size: 12px; color: var(--text-muted); }
    .pub-content .pub-meta span { margin-right: 12px; }
    .pub-content .pub-meta i { margin-right: 4px; color: var(--yellow-dark); }

    /* MK Table */
    .mk-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .mk-table thead tr { background: var(--dark); color: var(--white); }
    .mk-table th { padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; }
    .mk-table tbody tr:nth-child(even) { background: var(--bg); }
    .mk-table tbody tr:hover { background: var(--yellow-light); }
    .mk-table td { padding: 12px 16px; border-bottom: 1px solid #eee; vertical-align: middle; }
    .sks-badge { background: var(--yellow); color: var(--dark); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
    .sem-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
    .sem-badge.ganjil { background: #e8f5e9; color: #2e7d32; }
    .sem-badge.genap  { background: #e3f2fd; color: #1565c0; }

    /* Responsive */
    @media (max-width: 900px) {
      .profile-top-card { grid-template-columns: 1fr; }
      .profile-photo-side { padding: 40px 24px 50px; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .info-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .section-card { padding: 22px 18px; }
      .profile-info-side { padding: 28px 22px; }
    }