.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*/

