.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 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  padding: 24px;
  margin: 0;
  list-style: none;
}

.issues_archive li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  width: 220px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.obj_issue_summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover img {
  width: 75%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
  margin-bottom: 12px;
  display: block;
}

.issue-info {
  text-align: center;
}

.issue-info .title {
  color: #2360a4;
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 3px;
  display: block;
  text-decoration: none;
}

.issue-info .series {
  color: #444;
  font-size: 1em;
  margin-bottom: 8px;
}

.description {
  color: #515151;
  font-size: 0.98em;
  margin-top: 5px;
  text-align: center;
}

@media (max-width: 700px) {
  .issues_archive {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }

  .issues_archive li {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .cover img {
    width: 90%;
    max-width: 150px;
  }
}

    .page_issue_archive .issues_archive {
        margin-left: 0;
        margin-right: 0;
	margin-top:15px;
    }
}
