.highlights {
    width: 100%;           /* Matches parent width */
    margin: 0;             /* No side margins */
    padding: 40px 0;
    box-sizing: border-box;
    background: rgba(230,240,238,0.95);
}


.highlights > .swiper {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.swiper-slide {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.swiper-slide-image {
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.swiper-slide-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px;
    text-align: justify;
}

@media (max-width: 900px) {
    .highlights > .swiper {
        flex-direction: column;
        max-width: 100%;
        padding: 0 4px;
    }
    .swiper-slide {
        flex-direction: column;
        align-items: stretch;
    }
    .swiper-slide-image,
    .swiper-slide-content {
        max-width: 100%;
        padding: 16px 8px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* Arrow color: black */
.highlights .swiper-button-next,
.highlights .swiper-button-prev {
    color: #222 !important;
    fill: #222 !important;
    opacity: 0.9;
}

.highlights .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    margin: 0 8px !important;
    background: #9ca3af;    /* Default dot color (gray) */
    opacity: 0.7;
}

.highlights .swiper-pagination-bullet-active {
    background: #fff;       /* Active dot color */
    opacity: 1;
    box-shadow: 0 0 4px #3332;
}

/* OPTIONAL: if you want green or black for the active dot */
.highlights .swiper-pagination-bullet-active {
    background: #16a34a;   /* green */
    /* or background: #222; for black */
    box-shadow: 0 0 4px #16a34a66;
}



.pkp_site_name a:focus,
.pkp_site_name a:active,
.pkp_site_name a:visited,
.pkp_site_name a:target {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Also for the image itself, in case the browser styles the image */
.pkp_site_name a img:focus,
.pkp_site_name a img:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}




/*this is for additional content image*/

.indexinglist {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    padding-left: 0;
    align-items: center;
    margin-bottom: 2em;
}

.indexinglist li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1 1 100%;
}

.indexinglist img {
    display: inline-block;
    max-height: 70px;
    max-width: 180px;
    height: auto;
    margin: 0 4px 4px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background: #fff;
}

@media (max-width: 600px) {
    .indexinglist {
        gap: 12px;
    }
    .indexinglist li {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .indexinglist img {
        max-width: 100%;
        max-height: 48px;
        margin-bottom: 8px;
    }
}


/*Archives*/

.issues_archive {
  list-style: none;
  margin: 0;
  padding: 0;
}

.obj_issue_summary {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  position: relative;
  padding: 24px 0;
}

.obj_issue_summary .cover img {
  width: 180px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border-radius: 4px;
}

.obj_issue_summary h2 {
  margin: 0;
  font-size: 1.5em;
  font-weight: normal;
}

.obj_issue_summary .title {
  color: #2360a4;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2em;
}

.obj_issue_summary .series {
  margin-top: 4px;
  color: #333;
  font-size: 1em;
}

.obj_issue_summary .description {
  margin-top: 12px;
  color: #515151;
  font-size: 0.98em;
}

.obj_issue_summary .arrow {
  position: absolute;
  left: 150px;
  top: 160px;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 700px) {
  .obj_issue_summary {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
  }

  .obj_issue_summary .cover img {
    width: 120px;
  }

  .obj_issue_summary h2 {
    font-size: 1.15em;
    text-align: center;
  }

  .obj_issue_summary .description {
    text-align: center;
    font-size: 0.97em;
  }

  .obj_issue_summary .arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .obj_issue_summary {
    padding: 10px 0;
    gap: 6px;
  }

  .obj_issue_summary .cover img {
    width: 85px;
  }

  .obj_issue_summary h2,
  .obj_issue_summary .title,
  .obj_issue_summary .series {
    font-size: 1em;
    text-align: center;
  }
}
