.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 Desktop Styles */
.issues_archive {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.obj_issue_summary {
  flex: 0 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.obj_issue_summary .cover {
  display: block;
  width: auto;
}

.obj_issue_summary .cover img {
  max-height: 250px;
  max-width: 100%;
}

.obj_issue_summary h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.43rem;
  font-weight: 400;
}

.obj_issue_summary .series {
  margin-bottom: .357rem;
  color: rgba(0, 0, 0, 0.54);
}

.obj_issue_summary .title {
  font-family: "Noto Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  font-weight: 700;
  text-decoration: none;
}

/* Mobile Responsive Styles */
@media (max-width: 700px) {
  .issues_archive {
    gap: 1rem;
  }
  .obj_issue_summary {
    flex: 1 1 98vw;
    max-width: 99vw;
    padding: 0.6rem 0.1rem;
    margin-bottom: 1rem;
  }
  .obj_issue_summary .cover img {
    max-width: 98vw;
    max-height: 180px;
    border-radius: 6px;
  }
  .obj_issue_summary h2 {
    font-size: 1.05rem;
    line-height: 1.5rem;
  }
}
