.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-d23e7b3 *//* -- Kontainer Utama -- */
.accreditation-container {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  max-width: 1200px; /* Tambahan agar tidak terlalu lebar di layar besar */
  margin: 0 auto; /* Tambahan untuk menengahkan kontainer */
}

/* -- Judul Setiap Bagian -- */
.accreditation-section h2 {
  font-size: 1.8em;
  color: #2c3e50;
  margin-bottom: 20px;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
}

/* -- Tabel Akreditasi -- */
.accreditation-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

/* -- Header Tabel -- */
.accreditation-table thead {
  background-color: #f2f2f2;
  font-weight: 700;
  color: #555;
  font-size: 0.9em;
  text-transform: uppercase;
}

/* -- Pengaturan Kolom -- */
.accreditation-table .description-col { width: 50%; }
.accreditation-table .rank-col { width: 25%; }
.accreditation-table .cert-col { width: 25%; }

.accreditation-table th,
.accreditation-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

/* -- Atur teks di tengah untuk kolom peringkat dan sertifikat -- */
.accreditation-table .rank-col,
.accreditation-table .cert-col,
.accreditation-table td:nth-child(2),
.accreditation-table td:nth-child(3) {
  text-align: center;
}

/* -- Tombol Unduh -- */
.download-button {
  display: inline-block;
  padding: 8px 18px;
  background-color: #3498db;
  color: #fff !important; /* Penting agar menimpa style default link */
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  color: #fff !important;
}

/* -- Garis Pemisah Antar Bagian -- */
.section-separator {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 40px 0;
}

/* -- Tampilan Responsif untuk HP -- */
@media screen and (max-width: 768px) {
  .accreditation-container { padding: 15px; }
  
  .accreditation-section h2 { font-size: 1.5em; }

  /* Sembunyikan header tabel di mobile */
  .accreditation-table thead { display: none; }
  
  .accreditation-table,
  .accreditation-table tbody,
  .accreditation-table tr,
  .accreditation-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .accreditation-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
  }
  
  .accreditation-table td {
    text-align: right;
    position: relative;
    padding: 10px;
    padding-left: 50%;
    border-bottom: none;
  }
  
  /* Buat label dari atribut data-label */
  .accreditation-table td:before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: calc(50% - 20px);
    text-align: left;
    font-weight: bold;
    color: #34495e;
  }
  
  .accreditation-table td:nth-child(1),
  .accreditation-table td:nth-child(2),
  .accreditation-table td:nth-child(3) {
    text-align: right; 
  }
}/* End custom CSS */