/* LTSM Editorial Team — modern, compact, and responsive */
.ltsm-editorial-page {
  --ltsm-primary: #183b4a;
  --ltsm-primary-2: #315f73;
  --ltsm-accent: #4b7d92;
  --ltsm-soft: #f3f8fa;
  --ltsm-border: #dbe6ea;
  --ltsm-text: #263238;
  --ltsm-muted: #63767e;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--ltsm-text);
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.ltsm-editorial-page *,
.ltsm-editorial-page *::before,
.ltsm-editorial-page *::after {
  box-sizing: border-box;
}

.ltsm-editorial-intro {
  margin: 0 0 26px;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--ltsm-primary), var(--ltsm-primary-2));
  border-radius: 14px;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(24, 59, 74, 0.14);
}

.ltsm-editorial-intro p {
  margin: 0;
  max-width: 900px;
  color: #eef7fa;
  font-size: 14px;
  line-height: 1.7;
}

.ltsm-team-section {
  margin: 0 0 30px;
}

.ltsm-team-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 15px;
}

.ltsm-team-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: var(--ltsm-primary);
  font-size: 21px;
  font-weight: 750;
  line-height: 1.3;
}

.ltsm-team-heading::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, var(--ltsm-accent), transparent);
}

.ltsm-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.ltsm-team-card {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 15px;
  min-width: 0;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--ltsm-border);
  border-radius: 14px;
  box-shadow: 0 5px 16px rgba(24, 59, 74, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ltsm-team-card:hover {
  transform: translateY(-2px);
  border-color: #b9d0d9;
  box-shadow: 0 9px 22px rgba(24, 59, 74, 0.12);
}

.ltsm-team-photo {
  width: 102px;
  height: 124px;
  overflow: hidden;
  background: linear-gradient(145deg, #e9f2f5, #dce9ee);
  border: 1px solid #d4e2e7;
  border-radius: 11px;
}

.ltsm-team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ltsm-team-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--ltsm-primary-2);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ltsm-team-body {
  min-width: 0;
}

.ltsm-team-name {
  margin: 0 0 8px;
  color: #173f50;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.ltsm-team-meta {
  margin: 0;
}

.ltsm-team-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px;
  margin: 0 0 7px;
  font-size: 12.5px;
  line-height: 1.55;
}

.ltsm-team-label {
  color: #365f6f;
  font-weight: 700;
}

.ltsm-team-value {
  min-width: 0;
  color: #4d626a;
  overflow-wrap: anywhere;
}

.ltsm-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.ltsm-profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  color: #24566a !important;
  background: var(--ltsm-soft);
  border: 1px solid #cfe0e6;
  border-radius: 7px;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.ltsm-profile-link:hover,
.ltsm-profile-link:focus {
  color: #ffffff !important;
  background: var(--ltsm-primary-2);
  border-color: var(--ltsm-primary-2);
  text-decoration: none !important;
}

.ltsm-team-section--leadership .ltsm-team-card {
  border-top: 3px solid var(--ltsm-accent);
}

@media (max-width: 920px) {
  .ltsm-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .ltsm-editorial-intro {
    padding: 15px 16px;
    border-radius: 11px;
  }

  .ltsm-team-heading h2 {
    font-size: 19px;
  }

  .ltsm-team-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
    border-radius: 11px;
  }

  .ltsm-team-photo {
    width: 82px;
    height: 102px;
  }

  .ltsm-team-name {
    font-size: 15.5px;
  }

  .ltsm-team-row {
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 8px;
  }
}

/* Membuat semua paragraf dan konten artikel menjadi justified */
.pkp_structure_main p,
.pkp_structure_main span,
.pkp_structure_main li,
.pkp_structure_main td,
.pkp_structure_main th {
    text-align: justify !important;
}
.pkp_page_index .homepage_image img {
    display: block;
    width: 100%;
    height: auto;
    background-image: url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEghD4u1QCf7e0J8xheq4jutZ-Voi0kIS_v4gg-cSw-3XbelRurNQcyI8y_xFy9xWm5xBg-kqCirEory7Pdp_qLHnZq39jjizXVOh0iWxxx2I8KnYWxCw3eON4ZJkRlPvJEYdbaNg2XsDhzkVtDA2_Ge7Q4wOrVP6pFNtgYbxI2Ki9v4c5xkEeNRUkOCM8d_/s16000/ltsm%20hmpge.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* Khusus untuk isi artikel full text */
.obj_article_details .main_entry,
.page_article .article_details,
.page_issue .issue_description {
    text-align: justify !important;
}
.pkp_brand_footer {
    display: none;
}
a[rel="license"] {
    text-align: left;
    display: block;
}
.obj_article_summary {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin: 1px 0; /* <== Rapat atas & bawah */
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.obj_article_summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
  background: linear-gradient(to right, #f0f8ff, #ffffff);
}

.obj_article_summary .title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.obj_article_summary .meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.obj_article_summary .summary {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}
.cmp_article_list.articles {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.ojs-sidebar-modern {
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.ojs-sidebar-modern .menu-title {
  font-weight: bold;
  color: #4b7d92;
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
}

.center-text {
  text-align: center;
}

.menu-item {
  display: block;
  padding: 10px 15px;
  margin: 6px 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  background-color: #4b7d92;
}

.menu-item.gradient-gold {
  background: linear-gradient(90deg, #4b7d92 0%, #81a4b8 40%, #b3cedc 100%);
  color: #fff;
}

.menu-item i {
  margin-right: 8px;
}

.menu-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.logo-main {
  display: block;
  margin: 10px auto;
  max-width: 180px;
  height: auto;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.logo-small {
  height: 75px;
}

.logo-tool {
  display: block;
  max-width: 140px;
  margin: 10px auto;
}
.ojs-sidebar-authors {
  margin-top: 25px;
  background-color: #f7f9fa;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}
.authors-header {
  background-color: #4b7d92;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  border-radius: 8px 8px 0 0;
}
.authors-subheader {
  text-align: center;
  background-color: #81a4b8;
  color: #fff;
  font-weight: bold;
  padding: 8px;
  border-radius: 0 0 8px 8px;
  margin-bottom: 10px;
}
.authors-table table {
  width: 100%;
  border-collapse: collapse;
}
.authors-table td {
  padding: 6px;
  font-size: 13px;
  vertical-align: middle;
}
.authors-table tr:nth-child(even) {
  background-color: #eef4f7;
}
.authors-table tr:nth-child(odd) {
  background-color: #ffffff;
}
.authors-table td:nth-child(1) {
  width: 10%;
  text-align: center;
}
.authors-table td:nth-child(3) {
  width: 12%;
  text-align: center;
}
.center-submit {
  text-align: center;
}

.menu-item.red-gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #db5454 0%, #a72020 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
  width: fit-content;
}

.menu-item.red-gradient:hover {
  background: #a72020;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
  .map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Rasio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }

  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  @media (min-width: 992px) {
    .map-container {
      max-width: 820px;
      height: auto;
      margin-left: auto;
      margin-right: auto;
      padding-bottom: 0;
    }

    .map-container iframe {
      height: 480px;
    }
.authors-table img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.authors-table td:nth-child(1) {
  width: 40px;
  text-align: center;
  vertical-align: middle;
}
/* Pop-up container */
.popup-container {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 2px solid #2FA4DE;
    border-radius: 10px;
    width: 60%;
    max-width: 520px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 20px;
    text-align: center;
}

/* Close button style */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Pop-up image */
.popup-container img {
    width: 80%;
    height: auto;
    border-radius: 8px;
}

/* Dark overlay background */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
    .popup-container {
        width: 80%; /* Make the pop-up wider on smaller screens */
        max-width: 90%; /* Allow more flexibility on mobile screens */
        padding: 15px; /* Reduce padding for mobile view */
    }

    .close-btn {
        font-size: 16px; /* Slightly smaller close button on mobile */
        padding: 4px;
    }


/* ==== TEST (aktifkan sementara untuk cek CSS termuat) ==== */
/* .ltsm-about { outline: 3px solid red !important; } */

/* ====== LTSM Card Styles – kuat melawan CSS OJS ====== */
.ltsm-about {
  --bg:#ffffff; --text:#232b2b; --muted:#5f6c7b;
  --accent:#0ea5e9; --accent-2:#0369a1; --border:#e6e9ef;
  --chip:#f1f5f9; --radius:16px; --shadow:0 6px 24px rgba(16,24,40,.06), 0 2px 6px rgba(16,24,40,.04);
  background:var(--bg);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:clamp(16px,2.5vw,28px);
  box-shadow:var(--shadow);
  margin: 12px 0 !important;
}

/* Header */
.ltsm-about .ltsm-header{display:flex;align-items:baseline;gap:12px;flex-wrap:wrap;margin:0 0 8px !important;}
.ltsm-about .ltsm-header h2{margin:0 !important;font-size:clamp(1.2rem,2.2vw,1.6rem);line-height:1.3;letter-spacing:.2px;}
.ltsm-about .ltsm-tagline{margin:0 !important;color:var(--muted);font-weight:600;font-size:.95rem}

/* Deskripsi & link */
.ltsm-about .ltsm-desc{margin:8px 0 16px !important;line-height:1.7}
.ltsm-about a{color:var(--accent);text-decoration:none;border-bottom:1px dotted var(--accent)}
.ltsm-about a:hover{color:#fff;background:var(--accent-2);border-bottom-color:var(--accent-2)}

/* Tombol */
.ltsm-about .ltsm-actions{margin:12px 0 18px !important}
.ltsm-about .ltsm-btn{
  display:inline-block;padding:10px 14px;border-radius:999px;border:1px solid var(--accent);
  background:var(--accent);color:#fff;font-weight:700;text-decoration:none;transition:all .2s ease;font-size:.95rem
}
.ltsm-about .ltsm-btn:hover{background:var(--accent-2);border-color:var(--accent-2)}

/* Grid kartu */
.ltsm-about .ltsm-cards{display:grid;gap:16px;grid-template-columns:1fr}
@media (min-width:460px){.ltsm-about .ltsm-cards{grid-template-columns:1fr 1fr 1fr}}

/* Kartu */
.ltsm-about .ltsm-card{
  border:1px solid var(--border);border-radius:14px;padding:16px;background:rgba(255,255,255,.65);backdrop-filter:blur(4px)
}
.ltsm-about .ltsm-card-title{margin:0 0 10px !important;font-size:1.05rem;font-weight:800}

/* “DL rows” Anda (dua kolom) */
.ltsm-about .ltsm-dl-row{
  display:grid;grid-template-columns:140px 1fr;gap:12px;padding:10px 0;border-bottom:1px dashed var(--border);
  align-items:center;font-size:.98rem
}
.ltsm-about .ltsm-dl-row:last-child{border-bottom:none}
.ltsm-about .ltsm-dl-row a{margin-left:8px}

/* Chip bidang */
.ltsm-about .ltsm-chip{
  display:inline-block;padding:6px 10px;margin:4px 6px 0 0;border-radius:999px;background:var(--chip);
  border:1px solid var(--border);font-size:.9rem
}

/* Grid metrik & KPI */
.ltsm-about .ltsm-grid{display:grid;gap:12px}
.ltsm-about .ltsm-grid-3{grid-template-columns:repeat(3,1fr)}
.ltsm-about .ltsm-grid-4{grid-template-columns:repeat(2,1fr)}
@media (min-width:840px){.ltsm-about .ltsm-grid-4{grid-template-columns:repeat(4,1fr)}}

.ltsm-about .ltsm-metric,.ltsm-about .ltsm-kpi{
  border:1px solid var(--border);border-radius:12px;padding:12px;text-align:center;background:#fff
}
.ltsm-about .ltsm-metric-label,.ltsm-about .ltsm-kpi-label{font-size:.85rem;color:var(--muted)}
.ltsm-about .ltsm-metric-value,.ltsm-about .ltsm-kpi-value{font-size:1.25rem;font-weight:800;line-height:1.2}

.ltsm-about .ltsm-note{margin:10px 0 0 !important;font-size:.92rem;color:var(--muted)}

/* Aksesibilitas fokus */
.ltsm-about a:focus-visible{outline:3px solid var(--accent);outline-offset:2px;border-radius:6px}

/* Dark mode sistem */
@media (prefers-color-scheme: dark){
  .ltsm-about{
    --bg:#0b1220; --text:#e6edf3; --muted:#98a2b3; --border:#1f2a37;
    --accent:#38bdf8; --accent-2:#0ea5e9; --chip:#111827; --shadow:0 8px 30px rgba(0,0,0,.35);
  }
  .ltsm-about .ltsm-card{background:rgba(15,23,42,.55)}
  .ltsm-about .ltsm-metric,.ltsm-about .ltsm-kpi{background:#0f172a;border-color:#1f2a37}
}
#clstr_globe{
  position:fixed; right:16px; bottom:16px;
  width:240px; height:240px; z-index:9999;
}
#clstr_globe > *{ width:100%!important; height:100%!important; display:block!important; }

/* Membuat iframe responsive */
iframe {
  width: 100%;
  height: 600px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
}

/* Mengatur konten halaman statis */
.page-content {
  padding: 20px;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsif untuk perangkat kecil */
@media (max-width: 768px) {
  iframe {
    height: 400px;  /* Menyesuaikan tinggi pada perangkat mobile */
  }
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
}

table thead {
    background-color: #4CAF50;
    color: white;
}

table th, table td {
    padding: 15px;
    text-align: left;
    vertical-align: top;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Icon Styles */
.icon {
    width: 50px;
    height: 50px;
    background-color: #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: white;
}

.timeline-text {
    display: flex;
    flex-direction: column;
}

.timeline-text strong {
    color: #333;
    font-size: 16px;
}

.timeline-text p {
    color: #777;
    font-size: 14px;
}

/* Date Styles */
.date {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    table {
        width: 100%;
    }
    .icon {
        font-size: 14px;
        width: 40px;
        height: 40px;
    }
}
