/* ===========================================================
   🎓 JURNAL RADISI — MODERN RESPONSIVE STYLE (FINAL VERSION)
   =========================================================== */

/* ----------------------------
   RESET DASAR & GLOBAL STYLE
-----------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: #f5f9fc;
  color: #333;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: #007fa3;
  transition: color 0.3s ease;
}

a:hover {
  color: #ff7a08;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   HEADER SECTION
   =========================================================== */
.pkp_structure_head {
  background: linear-gradient(90deg, #007fa3, #00aab2);
  color: #fff;
  padding: 12px 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Header container (judul + menu sejajar) */
.pkp_navigation_primary_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 5%;
  background: #007fa3;
}

/* Judul situs */
.pkp_site_name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Logo/judul img style */
.pkp_site_name img {
  height: 50px;
  width: auto;
  vertical-align: middle;
}

/* ===========================================================
   NAVIGATION MENU
   =========================================================== */
.pkp_navigation_primary_row {
  font-family: News Cycle,"Arial Narrow Bold",sans-serif;
  background: #0088a2;
  padding-left: 15px;
  padding-right: 40px !important;
  font-weight: 700;
  margin-bottom: 1px; 
  font-size: 20px;
}
.pkp_navigation_primary>li>a {
  color: #ffff;
}
.pkp_navigation_search_wrapper a {
  margin: 0.357rem .8em;
  background: #ffff;
  padding-top: 0.557rem;
  padding-right: 4.7rem;
  padding-left: 4.1rem;
  display: inline-block;
  padding-bottom: 0.557rem;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: #bbb;
  border-radius: 20px;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);
  font-size: 18px;
  font-weight: 790;
  color: #0088a2;
  text-align: center;
}

/* ===========================================================
   MAIN CONTENT AREA
   =========================================================== */
.pkp_structure_main {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 40px 25px;
  margin: 25px auto;
  max-width: 1200px;
}

/* Judul utama */
.journal-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #007fa3;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.divider {
  width: 80%;
  max-width: 600px;
  height: 3px;
  margin: 10px auto 30px;
  background: linear-gradient(90deg, #007fa3, #ff7a08);
  border-radius: 4px;
}

/* Layout Gambar dan Detail Jurnal */
.journal-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 25px;
}

.cover-figure {
  flex: 0 0 200px;
  text-align: center;
}

.cover-img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Tabel Detail */
.journal-details {
  width: 100%;
  border-collapse: collapse;
  background: #f8fbfc;
  border-radius: 8px;
  overflow: hidden;
  font-size: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.journal-details th {
  background: #007fa3;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.journal-details td {
  padding: 10px 15px;
  border-bottom: 1px solid #e0eef2;
}

.journal-details td:first-child {
  font-weight: 600;
  color: #007fa3;
  width: 35%;
  background: #f1f9fa;
}

.journal-details a {
  color: #007fa3;
  font-weight: 600;
}

/* Deskripsi */
.journal-description {
  font-size: 17px;
  text-align: justify;
  color: #444;
  background: #f9fcfd;
  border-left: 5px solid #007fa3;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

/* ===========================================================
   PARTNER SLIDER
   =========================================================== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  background: #f4f8fb;
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.05);
}

.slider {
  display: flex;
  align-items: center;
  gap: 25px;
  animation: slide 30s linear infinite;
}

.slide img {
  height: 48px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================================================
   FOOTER SECTION
   =========================================================== */
.site-footer {
  background: linear-gradient(180deg, #007fa3, #005e79);
  color: #fff;
  padding: 50px 20px 30px;
  margin-top: 50px;
  border-top: 6px solid #ff7a08;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-col {
  min-width: 220px;
}

.site-footer h6 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid #ff7a08;
  display: inline-block;
}

.site-footer p {
  font-size: 14px;
  color: #eaf4f7;
  line-height: 1.7;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #eaf4f7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcf73;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  gap: 10px;
}

.copyright-text {
  font-size: 13px;
  color: #d3ebf0;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  filter: brightness(115%);
}

/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */
@media (max-width: 992px) {
  .pkp_navigation_primary_wrapper {
    flex-direction: column;
    align-items: center;
  }

  .pkp_site_name {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .pkp_navigation_primary > li > a {
    font-size: 14px;
    padding: 5px 10px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h6 {
    font-size: 15px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .social-icons img {
    width: 22px;
    height: 22px;
  }
}
/* === SEMBUNYIKAN FOOTER BAWAAN OJS === */
.pkp_structure_footer_wrapper,
.pkp_brand_footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.mitra-container {
  background: #e6f4f5;
  padding: 40px 20px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}

.mitra-title {
  text-align: center;
  background-color: #0088a2;
  color: #fff;
  padding: 15px;
  font-size: 22px;
  border-radius: 8px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.mitra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.mitra-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mitra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.mitra-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #0088a2;
}

.mitra-card h3 {
  color: #0088a2;
  font-size: 18px;
  margin: 10px 0 5px;
}

.mitra-card .prodi {
  color: #ff6600;
  font-weight: 600;
  margin: 5px 0;
  font-size: 15px;
}

.mitra-card .institusi {
  color: #444;
  font-size: 15px;
  margin-bottom: 10px;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.icons img {
  width: 26px;
  height: 26px;
  transition: transform 0.2s ease;
}

.icons img:hover {
  transform: scale(1.1);
}

/* Responsif untuk HP */
@media (max-width: 600px) {
  .mitra-card {
    padding: 15px;
  }

  .mitra-title {
    font-size: 18px;
  }

  .mitra-card img {
    width: 90px;
    height: 90px;
  }

  .icons img {
    width: 22px;
    height: 22px;
  }
}

.editor-board {
  background: #e6f4f5;
  padding: 50px 25px;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
}

.editor-section-title {
  text-align: center;
  background: #0088a2;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  margin: 35px auto 25px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.editor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.editor-grid.single {
  grid-template-columns: 1fr;
  max-width: 400px;
  margin: 0 auto;
}

.editor-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.editor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.editor-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #0088a2;
  margin-bottom: 10px;
}

.editor-card h3 {
  color: #0088a2;
  font-size: 16px;
  margin-bottom: 5px;
}

.editor-card .faculty {
  color: #ff6600;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.editor-card .institution {
  color: #444;
  font-size: 14px;
  margin-bottom: 10px;
}

.editor-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.editor-icons img {
  width: 26px;
  height: 26px;
  transition: transform 0.2s ease;
}

.editor-icons img:hover {
  transform: scale(1.1);
}

/* Responsif */
@media (max-width: 600px) {
  .editor-card img {
    width: 90px;
    height: 90px;
  }
  .editor-card h3 {
    font-size: 15px;
  }
  .editor-section-title {
    font-size: 18px;
  }
}


 


















.pkp_structure_content { 
  padding-top: 0; !important;
  background: #ffff;
}
.pkp_structure_page {
  background: url(https://jurnal.radisi.or.id/public/site/images/chiefpkmradisi/rupap2te1.jpg);
  padding-bottom,: 10px !important;
  border-left: 16px solid #ffff;
  border-right: 16px solid #ffff;
  border-top: 16px solid #ffff;
  border-bottom: 16px solid #ffff;
  background-size: 15%;
}
.pkp_structure_head {
  background: url(https://jurnal.radisi.or.id/public/site/images/chiefpkmradisi/rupap2te1.jpg);
  background-size: 18%;
}
.pkp_navigation_primary_row {
  font-family: News Cycle,"Arial Narrow Bold",sans-serif;
  background: #0088a2;
  padding-left: 15px;
  padding-right: 40px !important;
  font-weight: 700;
  margin-bottom: 1px; 
  font-size: 20px;
}
.pkp_navigation_primary>li>a {
  color: #ffff;
}
.pkp_navigation_search_wrapper a {
  margin: 0.357rem .8em;
  background: #ffff;
  padding-top: 0.557rem;
  padding-right: 4.7rem;
  padding-left: 4.1rem;
  display: inline-block;
  padding-bottom: 0.557rem;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: #bbb;
  border-radius: 20px;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);
  font-size: 18px;
  font-weight: 790;
  color: #0088a2;
  text-align: center;
}
.pkp_page_index .additional_content img {
  width: auto; 
  height: auto;
}
.pkp_structure_main p {
  max-width: 100%;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  font-size: 18px;
  color: #0088a2;
  margin-Left: 10px;
  margin-right: 10px;
  margin: 4px;
}
.obj_announcement_summary h2 a, .obj_announcement_summary h3 a, .obj_announcement_summary h4 a {
  font-size: 25px;
  color: rgb(0 136 162);
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
}
.obj_announcement_full h1 {
  color: rgba(252,145,49,255);
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
}
.pkp_structure_main h2 {
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  color: rgb(0 136 162);
  font-size: 25px;
  text-transform: uppercase;
}
.pkp_page_index .current_issue .current_issue_title {
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: rgba(0,0,0,0.54);
}
.cmp_button_wire, .obj_galley_link {
  padding: 0 1em;
  background: rgba(255, 122, 8, 1);
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: calc(2.143rem - 2px);
  color: rgb(0 0 0 / 87%);
}
.obj_issue_toc .galleys>h2, .obj_issue_toc .section>h2, .obj_issue_toc .galleys>h3, .obj_issue_toc .section>h3 {
  display: inline-block;
  position: relative;
  left: -15px;
  margin-top: 0;
  padding: 0 1.0715rem;
  background: #fff;
  font-size: 21px;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  line-height: 2.143rem;
  color: rgba(0,0,0,0.54);
}
.obj_issue_toc .articles {
  margin-top: 0;
}
.obj_article_summary {
  border: 3px solid #0088a2 !important;
  border-radius: 20px !important;
  padding: 20px !important;
  border-bottom: 10px solid #0088a2 !important;
  background: #e6f4f5 !important;
}
.obj_article_summary>.title {
  position: relative;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  font-size: 18px;
  text-align: justify;
}
.obj_article_summary .authors {
    padding-right: 5em;
    font-size: 18px;
    font-weight: 600;
    border-bottom-style: double;
    border-bottom-color: #495057;
    color: rgb(0 0 0 / 54%);
}
.pkp_structure_main .page h1 {
  margin-top: 0;
  color: #0088a2;
  text-transform: uppercase;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
}
.obj_issue_summary .title {
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  text-decoration: none;
  margin-bottom: 20px;
  color: rgb(0 136 162);
}
.obj_issue_summary .series {
  margin-top: 0.357rem;
  color: #e15117;
}
.obj_article_details .authors .name {
  font-weight: bold;
  display: block;
  font-size: 18px;
  font-weight: 700;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  color: #ff7a08;
  text-transform : uppercase;
}
.obj_article_details .authors .affiliation {
  font-size: 14px;
  color: #0088a2;
  text-align: justify;
  font-weight: 700;
}
.obj_article_details .references {
  text-align: justify;
  letter-spacing: -1px;
}
.pkp_structure_sidebar .pkp_block .title {
  padding: 13px;
  background: #0088a2;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  font-size: 17px;
  font-weight: 780;
  Color: rgb(255 255 255);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.button, html [type="button"], [type="reset"], [type="submit"] {
  width: 190px;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  background: #ffff;
  padding-top: 0.557rem;
  padding-right: 1.7rem;
  padding-left: 1.7rem;
  display: inline-block;
  padding-bottom: 0.557rem;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: #bbb;
  border-radius: 15px;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);
  font-size: 15px;
  font-weight: 790;
  color: #0088a2;
}
.pkp_block .content p {
  padding: 10px;
  border-bottom: 2px solid #c0c4c7;
  background: #e6f4f5;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
  font-size: 15px;
  font-weight: 350;
  margin: 0px;
}
.pkp_block .content p img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.pkp_block .content p a img {
  width: 100%;
  height: auto;
}
.cmp_button, .cmp_form .buttons button, .page_lost_password .buttons button, .page_search .submit button, .block_make_submission a {
  display: inline-block;
  padding: 0 1em;
  background: #eee;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: #bbb;
  border-radius: 3px;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);   
  font-size: 20px;
  line-height: calc(2.143rem - 2px);
  font-weight: 700;
  color: #006798;
  text-decoration: none;
}
.pkp_structure_footer_wrapper {border-bottom: none !important;}
.pkp_block {padding:15px 10px;}
}
.pkp_site_name .is_img img {
  display: block;
  max-height: 1350px;
  max-width: 100%;
  width: auto;
  height: auto;
}
.pkp_brand_footer a {
  display: none;
}
.pkp_structure_footer_wrapper {
  background: url(https://jurnal.radisi.or.id/public/site/images/chiefpkmradisi/rupap2te1.jpg);
  background-size: 15%;
}
.pkp_brand_footer {
  padding: .043rem;
}
.pkp_structure_footer {
  background-color: #0088a2;
  margin-bottom: 30px;
}
.cmp_notification {
  display: block;
  width: 100%;
  padding: 1.43rem;
  margin-bottom: 2.857rem;
  background: #7BC6D3;
  font-size: 15px;
  line-height: 1.43rem;
  font-family: "News Cycle","Arial Narrow Bold",sans-serif;
}
.pkp_page_index .current_issue .read_more {
  padding-right: 3.143rem;
  padding-left: 1.143rem;
  font-size: 18px;
  color: #f9f4f1;
  box-shadow: 3px 3px 5px rgb(0 0 0 / 40%);
  background-color: #24a1b7;
}
.obj_issue_toc .galleys_links {
    margin-top: .714rem;
    font-family: "News Cycle","Arial Narrow Bold",sans-serif;
    font-size: 16px;
    display: flex;
    flex-wrap: nowrap;
    align-content: space-around;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}
.obj_issue_toc .sections:not(:first-child) {
  margin-top: .286rem;
}
dl, ol, {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 18px;
}
.obj_article_summary>.title a {
  color: #0088a2;
}
.obj_announcement_full .description {
    margin-top: 2.857rem;
    text-align: center;
}
.obj_article_details .item.doi, .obj_article_details .item.keywords {
    padding-top: inherit;
    color: #ff7a08;
    font-weight: 600;
}
.obj_article_details .item>*:last-child {
    margin-bottom: 0;
    color: #ff7a08;
}
.abstracviews {
    display: flex;
    align-content: flex-start;
    align-items: center;
    justify-content: flex-start;
.button, html [type="button"], [type="reset"], [type="submit"] {
  font-size: 20px;
  font-width: 300px;
  /* border: 2px solid #e74c3c; */
  /* border-radius: .8em; */
  /* color: #a2d0f1; */
  cursor: pointer;
  /* padding: 1.2em 2.8em; */
  /* text-decoration: auto; */
  /* text-align: -webkit-center; */
  /* text-transform: uppercase; */
  display: inline-block;
  font-weight: 750;
  background: #f1f6f8;
  color: rgb(10,68,142);
  width: 240px;
  height: 50px;
  border-radius: 10px;
  border: thine rgb(68,196,212);
  box-shadow: 7px 7px 1px rgb(0 0 0 / 60%);
  /* white-space: nowrap; */
  font border-block-end-style: blod;
  font-weight: 200px;
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  /* margin: 2rem 0; */
}
.cmp_button, .cmp_form .buttons button, .page_lost_password .buttons button, .page_search .submit button, .block_make_submission a {
  display: inline-block;
  padding: 0 1em;
  background: #eee;
  border: 1px solid rgba(0,0,0,0.4);
  border-top-color: #bbb;
  border-radius: 3px;
  box-shadow: inset 0 -1em 1em rgba(0,0,0,0.1);
  line-height: calc(2.143rem - 2px);
  font-weight: 700;
  color: #006798;
  text-decoration: none;
  font-size: large;
}
.obj_article_summary>.title {
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  font-size: 16px;
  /* line-height: 1.43rem; */
  font-weight: 700;
  border-bottom: none;
  margin: 0;
}
.obj_article_summary .meta {
  position: relative;
  padding-top: .357rem;
  font-size: 18px;
  /* line-height: 1.43rem; */
}
.obj_issue_toc .articles {
  margin-top: 0;
}
.obj_issue_toc .galleys>h2, .obj_issue_toc .section>h2, .obj_issue_toc .galleys>h3, .obj_issue_toc .section>h3 {
    display: inline-block;
    position: relative;
    left: -15px;
    margin-top: 0;
    padding: 0 1.0715rem;
    background: #fff;
    font-size: 1.143rem;
    font-weight: 400;
    line-height: 2.143rem;
    color: rgba(0,0,0,0.54);
}



