/*//style untuk jurnal pendidikan*/
a{
    color: #0A464E;
}
.pkp_block .title{
    color: #000;
}
.issn{
    padding-left: 20px;
    color: #fff;
    /* Bisa tambah style lain sesuai kebutuhan */
}

/*css atur warna body*/
.pkp_structure_main{
    background-color: #fff;
    padding:20px;
    border-radius: 10px;
    margin-bottom: 30px;
}
.pkp_structure_sidebar{
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
}
.pkp_structure_page{
    background-color: #f2f2f2;
}
@media (min-width: 992px){
    .pkp_structure_sidebar{
        width: 270px;
    }
}
/*css atur warna body*/

/*css footer custom*/
.pkp_structure_footer_wrapper{
    background: #ebebeb;
    padding-bottom:30px;
}
.pkp_structure_footer{
    background-color: #ebebeb;
}
    .footer-container {
    display: flex;
    flex-wrap: wrap; /* Agar bisa responsive */
    gap: 20px; /* Jarak antar kolom */
/*    padding: 40px 20px;*/
}

.column-footer {
    flex: 1 1 calc(25% - 20px); /* 4 kolom per baris */
    min-width: 250px; /* Minimal lebar kolom */
    box-sizing: border-box;
}
.column-footer .about{
    max-width: 100px;
}

.column-footer h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.column-footer p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.column-footer ul {
    list-style: none;
    padding-left: 0;
}

.column-footer ul li {
    margin-bottom: 8px;
}

.column-footer ul li a {
    text-decoration: none;
    color: #555;
}

/* Responsive: 2 kolom untuk layar kecil */
@media (max-width: 768px) {
    .column-footer {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Responsive: 1 kolom untuk mobile */
@media (max-width: 480px) {
    .column-footer {
        flex: 1 1 100%;
    }
}
/*css footer custom*/
.pkp_brand_footer{
    display:none;
}
/* Dua Kolom Tampilan Home */
.page_index_journal {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  column-gap: 20px;
}
@media (max-width: 760px) {
  .page_index_journal {
    flex-direction: column;
  }
}
.additional_content,
.current_issue,
.pkp_page_index .homepage_about,
.pkp_page_index .homepage_image {
  width: 100%;
}

.pkp_page_index .homepage_image img {
  width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  object-fit: cover;
}
.pkp_page_index .homepage_image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}

@media (min-width: 992px) {
  .pkp_page_index .homepage_about {
    width: 65%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .pkp_page_index .homepage_image {
    width: 30%;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .pkp_page_index .additional_content {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 480px) {
  .pkp_page_index .homepage_image,
  .pkp_page_index .additional_content {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.pkp_page_index .homepage_image,
.pkp_page_index .additional_content {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Additional Content */
.current_issue {
  width: 100%;
  margin-top: 20px;
}
.current_issue h2 {
  font-size: 30px;
  margin: 0;
}
.obj_issue_toc .sections:not(:first-child) {
  margin: 0;
}
@media (min-width: 768px) {
  .pkp_page_index .current_issue .section:last-child {
    margin: 0;
  }
  .obj_issue_toc .galleys,
  .obj_issue_toc .section {
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .obj_issue_toc .galleys,
  .obj_issue_toc .section {
    margin: 0;
  }
}

/*addtional content css */

.publikasi-section {
/*  background: #f5f5f5;
  padding: 60px 20px;*/
  text-align: center;
}
.index-section{
    text-align: left;
}

.judul-section {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}

.publikasi-steps {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin: auto;
}

.step {
  background: white;
  border-radius: 12px;
  padding: 20px 20px;
  width: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step .icon {
  background: #FEBD1C;
  border-radius: 50%;
  padding: 20px;
  display: inline-block;
  /*margin-bottom: 20px;*/

}

.step .icon img {
  width: 40px;
  height: 40px;
}

.step h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  line-height: 1.5;
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .publikasi-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }

  .step {
    width: 90%;
    max-width: 400px;
  }
}

@media screen and (max-width: 480px) {
  .judul-section {
    font-size: 22px;
  }

  .step h3 {
    font-size: 16px;
  }

  .step p {
    font-size: 13px;
  }
}

/*addtional content css */
/*css halaman editor*/
 
.editor-container{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.editor-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.2s ease-in-out;
}

.editor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-color: #361C67;
}

.editor-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.editor-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #361C67;
  letter-spacing: 0.5px;
}

.editor-campus strong {
  font-size: 1rem;
  font-weight: 700;
}

.editor-campus {
  color: #374151;
  font-size: 0.95rem;
}

.editor-ids {
  font-size: 0.85rem;
  color: #6b7280;
}

.editor-ids a {
  color: #0ea5e9;
  text-decoration: none;
}

.editor-ids a:hover {
  text-decoration: underline;
}
/*css halaman editor*/