

/* ── PROFIL MAIN WRAP ─────────────────────────────────── */
.profil-main-wrap {
  background: #fff;
  padding-bottom: 0;
}

/* exact polri: .container.mb-5.bg-light */
.profil-container {
  background-color: #f7faff;   /* bg-light = #f7faff */
  padding-top: 2.5rem;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ── PAGE TITLE — exact polri: h1.px-5.pt-5.mx-lg-5 ──── */
.profil-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e2022;
  padding: 0 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* exact polri: <hr> between title and content */
.profil-title-hr {
  border: none;
  border-top: 1px solid #e7eaf3;
  margin: 0 0 2rem 0;
}

/* ── CONTENT — exact polri: .col-lg-8.border-left ─────── */
/* Full-width layout, no sidebar left */
.profil-content-full {
  padding: 0 2rem 2.5rem 2rem;
  border-left: none;
  min-height: 200px;
}

/* Content typography */
.profil-article {
  font-size: .9375rem;
  line-height: 1.85;
  color: #677788;
}
.profil-article p  { margin-bottom: 1rem; }
.profil-article h2 { font-size: 1.25rem; font-weight: 700; color: #1e2022; margin: 1.5rem 0 .75rem; padding-bottom: .5rem; border-bottom: 2px solid #c1801e; }
.profil-article h3 { font-size: 1.05rem; font-weight: 700; color: #1e2022; margin: 1.25rem 0 .5rem; }
.profil-article h4 { font-size: .9375rem; font-weight: 700; color: #1e2022; margin: 1rem 0 .4rem; }
.profil-article a  { color: #c1801e; text-decoration: underline; }
.profil-article a:hover { color: #0052ea; }
.profil-article img { max-width: 100%; border-radius: .3125rem; margin: .75rem 0; display: block; }
.profil-article ul,
.profil-article ol  { padding-left: 1.5rem; margin-bottom: 1rem; }
.profil-article li  { margin-bottom: .4rem; }
.profil-article blockquote {
  border-left: 4px solid #c1801e;
  padding: .75rem 1.25rem;
  background: #fdf8f0;
  margin: 1.25rem 0;
  font-style: italic;
  color: #677788;
}
.profil-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: .875rem;
}
.profil-article table th,
.profil-article table td {
  border: 1px solid #e7eaf3;
  padding: .5rem .75rem;
  text-align: left;
}
.profil-article table th {
  background: #1e2022;
  color: #fff;
  font-weight: 600;
}
.profil-article table tr:nth-child(even) td { background: #f7faff; }

.profil-share-bar {
  /* exact polri: .border-top.border-bottom → border atas+bawah */
  border-top: 1px solid #e7eaf3;
  border-bottom: 1px solid #e7eaf3;
  /* exact polri: .py-4 → padding:1.5rem 0 */
  padding: 1.5rem 2rem;
  background: #fff;
  margin-bottom: 0;
}

.profil-share-inner {
  /* rata KANAN — exact polri: justify-content-lg-end */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;   /* jarak antar icon lebih lebar */
  flex-wrap: wrap;
}

/* Label — exact polri: .small.font-weight-bold.text-cap
   MODIFIED: uppercase + bold sesuai permintaan */
.profil-share-label {
  font-size: .875rem;       /* .small = 80% of 1rem = 80% = ~.8rem; sedikit lebih besar */
  font-weight: 700;         /* BOLD */
  text-transform: uppercase;/* KAPITAL — .text-cap */
  letter-spacing: .03125rem;/* .text-cap letter-spacing */
  color: #1e2022;
  margin-right: 4px;
  white-space: nowrap;
  line-height: 1;
}

/* Share buttons — exact polri: btn btn-md btn-icon btn-ghost-secondary rounded-circle
   .btn-icon         { width:3.125rem; height:3.125rem }  (btn-md tidak ada di polri, pakai default)
   .btn-ghost-secondary { color:#71869d; background:transparent }
   .btn-ghost-secondary:hover { color:#c1801e }            ← warna kuning tema saat hover
   .rounded-circle   { border-radius:50% }
*/
.share-btn {
  /* btn-icon = 3.125rem × 3.125rem */
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 2.625rem;           /* sedikit lebih kecil agar proporsional */
  height: 2.625rem;
  padding: 0;
  font-size: 1rem;           /* ukuran icon FA */

  /* btn-ghost-secondary */
  color: #71869d;            /* exact: btn-ghost-secondary color */
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50%;        /* rounded-circle */
  cursor: pointer;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease;
  font-family: inherit;
  line-height: 1;
}

/* Hover — exact polri: btn-ghost-secondary:hover → color:#c1801e (kuning tema) */
.share-btn:hover,
.share-btn:focus {
  color: #c1801e !important; /* warna kuning tema saat diarahkan cursor */
  background-color: rgba(193,128,30, .08);
  border-color: rgba(193,128,30, .2);
  outline: none;
  text-decoration: none;
}

/* Copy-link (LK) copied state */
.share-btn.copied {
  color: #28a745 !important;
  background-color: rgba(40,167,69,.08);
}

/* Semua icon FA di dalam share-btn: ukuran sama */
.share-btn i {
  font-size: 1rem;     /* identik semua icon */
  line-height: 1;
  display: block;
}

/* Garis pemisah sebelum footer — jarak lebih lebar */
.profil-footer-hr {
  border: none;
  border-top: 1px solid #e7eaf3;
  margin: 2.5rem 0 0 0;    /* jarak ke footer lebih lebar */
}

.sidebar-banner-wrap {
  width: 100%;
  border-radius: .3125rem;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
  margin-bottom: 1.125rem;
}
.sidebar-banner-wrap a {
  display: block;
  line-height: 0;
}
.sidebar-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity .2s;
}
.sidebar-banner-wrap:hover img { opacity: .92; }

@media (max-width: 767px) {
  .profil-page-title { font-size: 1.25rem; padding: 0 1rem; }
  .profil-content-full { padding: 0 1rem 1.5rem; }
  .profil-share-bar { padding: 1rem; }
  .profil-share-inner { justify-content: flex-end; gap: 8px; }
  .share-btn { width: 2.25rem; height: 2.25rem; }
  .share-btn i { font-size: .875rem; }
  .profil-footer-hr { margin: 1.5rem 0 0; }
}
