.story-item {
    display: none;
}

.elementor-editor-active .story-item,
.elementor-editor-preview .story-item,
.story-item.active {
    display: flex;
}

.btn-key-feature>.e-con-full.e-flex {
    cursor: pointer;
}

.btn-key-feature .e-con-full.e-flex.e-con.e-child.active {
    background: #0085FF;
    border-color: #0085FF !important;
}


/* FADE ANIMATION FOR SECTIONS */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESET เล็กน้อย */
.blog-hero,
.blog-section,
.blog-card,
.blog-header,
.blog-list {
    box-sizing: border-box;
}

.blog-hero *,
.blog-section * {
    box-sizing: inherit;
}



a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* HERO SECTION */
.blog-hero {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.blog-hero__image {
    height: 100%;
}

@media (min-width: 1200px) {
    .blog-hero {
        height: 480px;
    }
}

.blog-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.35) 35%,
            rgba(0, 0, 0, 0.05) 70%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
}

.blog-hero__content {
    max-width: 1080px;
    margin: 0 auto 72px auto;
    padding: 0 24px;
    color: #fff;
}

.blog-hero__title {
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 12px 0;
    font-size: 34px;
    color: #FFF;
}


.blog-hero__title a {
    font-size: 38px;
    color: #FFF;
    line-height: 40px;
    font-weight: 500;
}

.blog-hero__title a:hover {
    opacity: .85;
    color: #FFF !important;
}

.blog-hero__excerpt {
    max-width: 95%;
    font-size: 18px;
    line-height: 1.7;
    color: #f1f1f1;
}

/* MAIN BLOG WRAPPER */
.blog-section {
    padding: 64px 0 80px 0;
    background-color: #fff;
}

.blog-section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BLOG HEADER */
.blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.blog-header__title {
    font-size: 52px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    margin: 0;
    padding: 0;
}

.blog-header__search {
    width: 260px;
    max-width: 100%;
}

.blog-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.blog-search-form__field {
    height: 40px;
    border-radius: 20px !important;
    border: 0 !important;
    padding: 0 40px 0 18px !important;
    font-size: 14px;
    outline: none;
    background-color: #f3f3f3 !important;
    transition: all 0.3s ease;
}

.blog-search-form__field:focus {
    /* background-color: #fff; */
    border-color: #1b3bf1 !important;
    /* box-shadow: 0 2px 8px rgba(27, 59, 241, 0.1); */
}

.blog-search-form__field::placeholder {
    color: #bbb;
    font-weight: 400;
}

.blog-search-form__button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: none;
    background: transparent !important;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: -2px;
    margin-right: 2px;
}

.blog-search-form__button:hover {
    opacity: 0.7;
}

.blog-search-form__icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #999;
    display: block;
    position: relative;
    transition: all 0.2s ease;
}

.blog-search-form__button:hover .blog-search-form__icon {
    border-color: #1b3bf1;
}

.blog-search-form__icon::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: #999;
    border-radius: 2px;
    right: -5px;
    bottom: -2px;
    transform: rotate(45deg);
    transition: all 0.2s ease;
}

.blog-search-form__button:hover .blog-search-form__icon::after {
    background: #1b3bf1;
}

/* CATEGORY TABS */
.blog-tabs {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.blog-tabs__list {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-size: 14px;
}

.blog-tabs__item a {
    position: relative;
    padding-bottom: 10px;
    color: #444;
}

.blog-tabs__item a:hover {
    color: #000;
}

.blog-tabs__item--active a {
    font-weight: 600;
}

.blog-tabs__item--active a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: #1b3bf1;
}

/* BLOG LIST */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-card {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .blog-card {
        gap: 10px;
        grid-template-columns: 1fr;
    }
}

.blog-card__thumb a {
    display: block;
    border-radius: 4px;
    padding-bottom: calc(0.55 * 100%);
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    overflow: hidden;
}

.blog-card__thumb img {
    margin-bottom: 0;
    display: block;
    -o-transition: all .6s;
    -webkit-transition: all .6s;
    transition: all .6s;
    height: 100%;
    max-height: 100% !important;
    width: 100%;
    position: absolute;
    top: calc(50%);
    left: calc(50%);
    -webkit-transform: scale(1) translate(-50%, -50%);
    -ms-transform: scale(1) translate(-50%, -50%);
    transform: scale(1) translate(-50%, -50%);
    object-fit: cover;
}

.blog-card__thumb:hover img {
    width: 110%;
    height: 110%;
    max-height: 110% !important;
}


.blog-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card__title {
    line-height: 20px !important;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 5px;
}

.blog-card__title a {
    font-size: 24px !important;
    line-height: 1.1 !important;
    font-weight: 600 !important;
    margin: 0 0 10px 0;
    color: #000 !important;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.blog-card__title a:hover {
    color: #1b3bf1 !important;
}

.blog-card__excerpt {
    font-size: 16px;
    line-height: 25px;
    color: #2f2f2f;
    max-width: 100%;
    margin-bottom: 12px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    margin: 8px 0 14px 0;
}

.blog-card__tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.blog-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 4px;
    background: #000;
    color: #fff !important;
    font-size: 11px !important;
    text-transform: capitalize !important;
    -o-transition: all .2s;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.blog-card__tag:hover {
    background: #333;
}

.blog-card__date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #999;
}

.blog-card__date-iconx {
    position: relative;
    width: 12px;
    height: 21px;
}

.blog-card__date-iconx svg {
    width: 12px;
    height: 12px;
    stroke: #999;
}


.blog-card__date-text {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-card__readmore {
    margin-bottom: 0;
    font-size: 12px;
    text-align: right;
}

.blog-card__readmore-link {
    font-weight: 600 !important;
    color: #EE3238 !important;
    font-size: 14px !important;
}

.blog-card__readmore-link:hover {
    text-decoration: underline;
}

.blog-card__divider {
    width: 100%;
    height: 1px;
    background: #000000;
    margin-top: 4px;
}

/* PAGINATION */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
    display: flex;
    font-size: 14px;
    justify-content: center;
    align-items: center;
}

.blog-pagination .page-numbers {
    margin: 0 4px;
    padding: 6px 10px;
    border-radius: 50%;
    border: 1px solid transparent;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination .page-numbers.current {
    background: #000;
    color: #fff;
    border-color: #000;
}

.blog-pagination .page-numbers:hover {
    border-color: #ccc;
}

.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
    padding: 7px;
}

.blog-empty {
    text-align: center;
    color: #777;
    font-size: 14px;
}



/* WPT Sub Navigation */
.wpt-sub-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 400;
}

.wpt-sub-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-style: italic;
    padding: 2px 0;
    border-radius: 30px;
    display: inline-block;
}

.wpt-sub-nav a:hover {
    opacity: 0.8;
    color: #ffffff;
}

.wpt-sub-nav .separator {
    color: #ffffff;
    font-style: italic;
    opacity: 0.6;
}

.wpt-sub-nav .current {
    background-color: #00B6E5;
    /* สีฟ้า Cyan ตามรูป */
    color: #FFFFFF !important;
    font-weight: 500;
    padding: 2px 15px;
}


.leadership-header {
    background-color: #021E4B;
    margin-bottom: 0;
    padding: 8px 0;
}

/* .leadership-header .wpt-sub-nav {
    justify-content: end;
} */
.leadership-header .e-con>.e-con-inner {
    display: flex;
    justify-content: end;
}

/*for Mobile*/
@media (max-width: 767px) {
    .story-item .elementor-swiper-button {
        display: none !important;
    }

    .blog-header__title {
        font-size: 42px !important;
    }

    .blog-header {
        flex-direction: column;
        align-items: start;
        gap: 11px;
    }

    .blog-hero__title a,
    .blog-hero__excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        position: relative;
        overflow: hidden;
    }

    .blog-hero__title a {
        font-size: 24px;
        line-height: 34px;
    }

    .blog-hero__content {
        padding-top: 119px !important;
    }

}

/* end for Mobile */

/*for tabletV*/
@media (min-width: 768px) and (max-width: 991px) {
    .blog-card {
        grid-template-columns: 350px 1fr;
    }

    .blog-card__title a {
        font-size: 20px !important;
    }

    .blog-hero__title a,
    .blog-hero__excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        position: relative;
        overflow: hidden;
    }
}

/* end for tabletV */

/*for tabletH*/
@media (min-width: 992px) and (max-width: 1199px) {}

/*for tabletH*/
@media (min-width: 992px) and (max-width: 1199px) {}

/* end for tabletH */

/* LEADERSHIP STYLES */
.leadership-container {
    background: #fff;
    padding-bottom: 80px;
}

.leadership-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    padding: 60px 20px;
}

.leadership-sidebar {
    width: 320px;
    flex-shrink: 0;
    background-color: #F3F3F3;
    border-radius: 8px;
    padding: 20px;
}



.leadership-sidebar__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 5px;
    color: #333;
}

.leadership-sidebar__desc {
    font-size: 14px !important;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 15px;
}

.leadership-menu__link {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px !important;
    font-weight: 600;
}

.leader-card__prefix {
    font-size: 14px !important;
    color: #00B6E5;
    font-weight: 700;
    margin-bottom: 4px;
}



.leader-card__roles {
    font-size: 13px !important;
    color: #444;
    line-height: 1.6;
}

.single-leader-name {
    font-size: 32px !important;
    font-weight: 800;
    color: #0b1f44;
    text-transform: uppercase;
    margin: 5px 0 15px 0;
}

.single-leader-position {
    font-size: 18px !important;
    font-weight: 600;
    color: #0b1f44;
    line-height: 1.4;
}

.single-leader-bio-content {
    font-size: 15px !important;
    line-height: 1.8;
    color: #333;
}

.leadership-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}




/* Tab Visibility */
.leadership-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.leadership-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        /* transform: translateY(5px); */
    }

    to {
        opacity: 1;
        /* transform: translateY(0); */
    }
}


.news-nav__link,
.leadership-menu__item {
    border-bottom: 1px solid #e5e5e5;
}

.news-nav__link:last-child,
.leadership-menu__item:last-child {
    border-bottom: none;
}

.leadership-menu__link {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 10px;
}

/* Active State - Matches Uploaded Image: Dark Blue Background, White Text */
.leadership-menu__item.active {
    background-color: #0b1f44;
    /* Dark Navy Blue */
    border-color: #0b1f44;
    border-radius: 4px;
}

.leadership-menu__item.active .leadership-menu__link {
    color: #fff;
}

/* Arrow Icon */
.leadership-menu__arrow {
    color: #00B6E5;
    max-height: 20px;
}

.leadership-menu__item .leadership-menu__arrow svg {
    transition: all 0.2s;
    margin-left: -20px;
    opacity: 0;
}

.leadership-menu__item:hover .leadership-menu__arrow svg {
    margin-left: 0;
    opacity: 1;
}

.leadership-menu__item.active .leadership-menu__arrow svg {
    margin-left: 0;
    opacity: 1;
}


.news-nav__link svg {
    width: 20px;
    height: 20px;
}

.news-nav__link path,
.news-nav__link svg,
.leadership-menu__item .leadership-menu__arrow svg {
    stroke: #00B6E5;
}



.leadership-content {
    flex-grow: 1;
}

.leadership-content__title {
    font-size: 22px;
    font-weight: 600;
    color: #0b1f44;
    margin-bottom: 2px;
}

.leadership-content__desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

/* GRID */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
    margin-top: 40px;
}

.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.link-all {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.leader-card__image-wrap {
    position: relative;
    width: 150px;
    /* Adjust based on Image 0 size relative to text */
    height: auto;
    flex-shrink: 0;
    z-index: 1;
}

.leader-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Or cutout mask */
    position: relative;
    z-index: 2;
    /* Creating the cutout look via mask or png is tricky without transparency. 
       Usually it's a transparent PNG. Assuming user uploads transparent PNGs 
       or we just frame it.
       If simple jpg, we just border-radius.
    */
    /* Image 0 shows people cropped. Let's assume standard square or portrait img */
}



.leader-card__info {
    flex-grow: 1;
    padding-top: 10px;
}

.leader-card__prefix {
    font-size: 14px;
    color: #00B6E5;
    font-weight: 700;
    margin-bottom: 4px;
}

.leader-card__name {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0b1f44;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.2;
    max-width: 90%;
}

.leader-card__name a {
    color: #000F27;
    text-decoration: none;
    font-weight: 800;
    font-size: 21px;
}

.leader-card__roles {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}

.leader-card__roles ul {
    list-style: disc;
    /* Or bullets */
    padding-left: 20px;
    margin: 0;
}

.leader-card__roles li {
    margin-bottom: 1px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    font-family: 'Poppins', 'Ibm Plex Sans Thai', sans-serif;
}

.leader-card__roles li::marker {
    color: #373737;
}


/* SINGLE VIEW */
.single-view {
    /* Different structure */
}

.single-leader-card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.single-leader-card__image-col {
    width: 40%;
}

.single-leader-card__info-col {
    width: 60%;
}

.single-leader-image-wrap {
    position: relative;
    z-index: 1;
}

.single-leader-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}



.single-leader-meta {
    margin-bottom: 30px;
}

.single-leader-name {
    font-size: 32px;
    font-weight: 800;
    color: #0b1f44;
    /* Dark Navy */
    text-transform: uppercase;
    margin: 5px 0 15px 0;
}

.single-leader-position {
    font-size: 18px;
    font-weight: 600;
    color: #0b1f44;
    line-height: 1.4;
}

.single-leader-bio-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.single-leader-bio-content p {
    margin-bottom: 20px;
}


/* Default Desktop Toggle Hidden */
.wpt-sub-nav-toggle {
    display: none;
}

.wpt-sub-nav-toggle:hover,
.wpt-sub-nav-toggle:focus {
    background-color: #021E4B;
}

/* Responsive */
@media (max-width: 991px) {
    .leadership-layout {
        flex-direction: column;
        gap: 0;
    }

    .leadership-sidebar {
        width: 100%;
        margin-bottom: 40px;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile/tablet portrait */
    }
}

@media (max-width: 768px) {
    .single-leader-card {
        flex-direction: column;
    }

    .single-leader-card__image-col,
    .single-leader-card__info-col {
        width: 100%;
    }

    /* Mobile Sub Nav Toggle */
    .leadership-header .e-con>.e-con-inner {
        display: block;
    }

    .wpt-sub-nav-wrapper {
        position: relative;
        padding: 0 11px;
    }

    .wpt-sub-nav-toggle {
        display: none;
        /* Hide toggle as requested */
    }

    /* Scrollable Horizontal Nav */
    .wpt-sub-nav {
        display: flex;
        flex-direction: row;
        /* Horizontal */
        flex-wrap: nowrap;
        /* No wrapping */
        overflow-x: auto;
        /* Scrollable */
        -webkit-overflow-scrolling: touch;
        background-color: transparent;
        padding: 5px 0;
        /* Reduced padding */
        width: 100%;
        margin-top: 0;
        gap: 15px;
        font-size: 14px;
        /* Match desktop */

        /* Attempt to align right */
        justify-content: flex-start;

        /* Hide scrollbar for cleaner look */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
    }

    /* FAQ Specific: Align Sub Nav to End on Mobile */
    .page-template-page-faq .wpt-sub-nav > :first-child,
    .single-wpt_faq .wpt-sub-nav > :first-child,
    .tax-faq_category .wpt-sub-nav > :first-child {
        margin-left: auto;
    }

    .wpt-sub-nav::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .wpt-sub-nav a {
        display: inline-block;
        width: auto;
        /* Reduced padding (Desktop is 2px 15px) */
        border-bottom: none;
        text-align: center;
        white-space: nowrap;
        background-color: transparent;
        font-size: 14px;
    }

    .wpt-sub-nav .separator {
        display: inline-block;
        /* Show separators again */
        color: rgba(255, 255, 255, 0.6);
        font-style: italic;
    }
}

/* LEADERSHIP PAGE TITLE SECTION */
.leadership-page-title {
    text-align: center;
    padding: 15px;
    /* background: linear-gradient(to bottom, #f0f0f0 0%, #ffffff 100%); */
    /* Subtle gradient */
}

.leadership-page-title__label {
    text-transform: uppercase;
    color: #000;
    margin: 0;
    letter-spacing: 0.05em;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.leadership-page-title__label::after {
    content: "";
    display: block;
    width: 5%;
    height: 1px;
    background-color: #00B6E5;
    /* Cyan Blue */
    margin-top: 5px;
}

.leadership-page-title__main {
    font-size: 33px;
    font-weight: 800;
    color: #272727;
    margin: 10px 0;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.leadership-page-title__sub {
    color: #272727;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .leadership-page-title {
        padding: 40px 20px 0;
    }

    .leadership-page-title__main {
        font-size: 32px;
    }

    .leadership-page-title__sub {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* POST CARD COMPONENT */
.post-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.post-card__header {
    position: relative;
    padding-top: 60%;
    /* Aspect Ratio 5:3 approx */
    overflow: hidden;
}

.post-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.post-card__date {
    position: absolute;
    top: 11px;
    right: 11px;
    background: #021E4B;
    color: #fff;
    padding: 4px 9px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 500;
    z-index: 2;
}

.post-card__body {
    padding: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-card__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 7px;
}

.post-card__tag {
    font-size: 8px;
    padding: 3px 6px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #021E4B;
    font-weight: 600;
}

.post-card__title {
    font-size: 14px;
    font-weight: 700;
    color: #021E4B !important;
    line-height: 1.2;
    margin: 0 0 3px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
}

.post-card__title a {
    color: inherit;
    text-decoration: none;
}

.post-card__excerpt {
    font-size: 12px;
    color: #333;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* POST CARD LIST COMPONENT */
.post-card-list {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    /* Subtle divider */
    margin-bottom: 4px;
}

.post-card-list:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.post-card-list__image {
    display: block;
    width: 80px;
    /* Fixed width as per design visual */
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #eee;
}

.post-card-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card-list:hover .post-card-list__image img {
    transform: scale(1.05);
    /* Micro interaction */
}

.post-card-list__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4px;
}

.post-card-list__title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #021E4B !important;
    /* Theme Navy Blue */
    margin: 0 0 2px 0;
    line-height: 1.3 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    position: relative;
    overflow: hidden;
}

.post-card-list__title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.post-card-list__title a:hover {
    color: #00B6E5;
    /* Theme Cyan Accent */
}

.post-card-list__excerpt {
    font-size: 12px !important;
    color: #444;
    /* Dark gray for text */
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 576px) {
    .post-card-list {
        flex-direction: column;
        gap: 16px;
    }

    .post-card-list__image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

/* SINGLE PAGE TEMPLATE */
.single-mod-section {
    padding: 40px 0 80px;
    background-color: #f9f9f9;
}

.single-mod-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.single-mod-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
}

/* Single Main Content */
.single-mod-main {
    min-width: 0;
    /* Prevent grid blowout */
}

/* Header Meta */
.single-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 12px;
    margin-bottom: 20px;
    font-size: 14px !important;
    font-weight: 700;
    color: #021E4B;
    text-transform: uppercase;
}

.single-meta-cats a {
    color: #021E4B;
    text-decoration: underline;
    margin-left: 8px;
}

.single-meta-cats a:hover {
    color: #00B6E5;
}

/* Titles */
.single-post-title {
    font-size: 36px !important;
    line-height: 1.2 !important;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.single-post-subtitle {
    font-size: 18px !important;
    line-height: 1.5;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Featured Image */
.single-feat-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-feat-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* Content Typography */
.single-content {
    font-size: 16px !important;
    line-height: 1.8;
    color: #333;
    margin-bottom: 35px;
}

.single-content h2 {
    font-size: 24px !important;
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.single-content p {
    margin-bottom: 24px;
}

/* Recent Posts Section (Bottom of Main) */
.single-recent-section {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

.section-heading-sm {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #021E4B;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.single-recent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Sidebar Columns */
.single-sidebar-section {
    margin-bottom: 50px;
}

.sidebar-heading {
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #021E4B !important;
    margin-bottom: 24px;
}

.sidebar-list-gap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .single-mod-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-recent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .single-post-title {
        font-size: 28px;
    }

    .single-recent-grid {
        grid-template-columns: 1fr;
    }

    .single-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* NEWS & EVENTS PAGE STYLES */
.news-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-header__label {
    font-size: 16px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.news-header__title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
}

.news-header__sub {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.news-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 20px;
    align-items: start;
}

/* Sidebar */
.news-sidebar {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
}

.news-sidebar__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.news-sidebar__desc {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 30px;
}

.news-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-nav__link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    background-color: transparent;
}

.news-nav__link svg {
    transition: all 0.2s;
    opacity: 0;
    margin-left: -20px;
}



.news-nav__link:hover svg {
    opacity: 1;
    margin-left: 15px;
}

.news-nav__link.active svg {
    margin: 0;
    opacity: 1;
    margin-left: 15px;
}

.news-nav__link.active {
    background-color: #021E4B;
    color: #fff !important;
}

.news-nav__icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}



.news-nav__link:hover .news-nav__icon {
    display: flex;
}

/* Main Content */
.news-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: #F3F3F3;
    border-radius: 5px;
    padding: 7px;
}

.news-tab {
    padding: 8px 22px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 4px;
    /* Slightly rounded rect */
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.news-tab:focus,
.news-tab:hover {
    border-color: #aaa;
    background: #002048;
    color: #fff !important;
}

.news-tab.active {
    background-color: #0085FF;
    /* Bright Blue */
    color: #fff;
    border-color: #0085FF;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.news-load-more {
    display: flex;
    justify-content: center;
}

.btn-load-more {
    background-color: #021E4B;
    color: #fff;
    padding: 12px 23px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-load-more:hover,
.btn-load-more:focus {
    background-color: #032b6b !important;
}

/* Skeleton Loading Animation */
.skeleton-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    padding-top: 60%;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.skeleton-body {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skeleton-text {
    height: 14px;
    background: #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.skeleton-text.title {
    height: 22px;
    width: 85%;
}

.skeleton-text.date {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

/* Shimmer Animation */
.skeleton-image::after,
.skeleton-text::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}


/* Responsive */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 40px;
    }

    .news-sidebar {
        max-width: 100%;
        margin-top: 20px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    main.news-content {
    width: 100%;
            overflow: hidden;
}
    .news-header__title {
        font-size: 28px;
    }
.news-tab {
    padding: 8px 18px;
}
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-tabs {
            justify-content: flex-start;
       flex-wrap: nowrap !important;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
                padding: 7px 10px;
    }
}

/* Recent Posts Shortcode Grid */
.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Desktop: 5 columns */
    gap: 20px;
    margin-bottom: 0;
}

.recent-posts-grid .post-card {
    border: 0;
}

@media (max-width: 1024px) {
    .recent-posts-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 columns */
    }
}

@media (max-width: 600px) {
    .recent-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Mobile: 2 columns */
    }
}

/* Leadership Card Button */
.leader-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    /* Adjust size as needed */
    height: 35px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #ccc;
    color: #333;
    transition: all 0.3s ease;
    margin-top: auto;
    /* Push to bottom if flex column */
    margin-left: auto;
    /* Align right */
}

.leader-card__btn-wrap {
    margin-top: 3px;
    align-items: center;
    display: flex;
    justify-content: right;
}

.leader-card:hover .leader-card__btn,
.leader-card__btn:hover {
    background-color: #021E4B;
    border-color: #021E4B;
    color: #fff !important;
}

.leader-card__btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Leadership Back Button */
.leadership-back-btn-wrapper {
    margin-bottom: 20px;
}

.btn-back-leadership {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.btn-back-leadership:hover {
    color: #00B6E5;
}

.btn-back-leadership svg {
    width: 20px;
    height: 20px;
}

/* Lenis Smooth Scroll Recommended CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Sticky Header Animation */


.elementor-location-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
        /* -o-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; */
    /* animation: fadeIn 0.4s ease; */
}
.admin-bar .elementor-location-header{
    top: 32px;
}

/* .elementor-location-header.is-sticky {
    top: 0;
} */
/* .admin-bar .elementor-location-header.is-sticky{
    top: 32px;
} */

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.jet-mega-menu-item {
    border-bottom: solid 2px #0000;
    padding: 3px;
    padding-top: 1px;
}

.jet-mega-current-menu-item,
.jet-mega-menu-item:hover {
    border-bottom: solid 2px #006FD6;
}

.grid-solution-home {
    align-items: flex-start !important;
}

.grid-solution-home>.elementor-element {
    transition: all 0.3s ease;
    min-height: 200px;
}

.grid-solution-home .elementor-image-box-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.3s ease, margin 0.3s ease;
}

.grid-solution-home>.elementor-element:hover .elementor-image-box-description {
    max-height: 300px;
    opacity: 1;
}

/* CAREERS STYLES */
.careers-container {
    background: #fff;
    padding-bottom: 0;
}

.careers-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px 20px;
}

.careers-sidebar {
    width: 320px;
    flex-shrink: 0;
    background-color: #F3F3F3;
    border-radius: 8px;
    padding: 20px;
}

.careers-sidebar__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 5px;
    color: #333;
}

.careers-sidebar__desc {
    font-size: 14px !important;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 15px;
}

.careers-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.careers-menu__item {
    border-bottom: 1px solid #e5e5e5;
}

.careers-menu__item:last-child {
    border-bottom: none;
}

.careers-menu__link {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 10px;
    color: #333;
}

.careers-menu__item.active {
    background-color: #0b1f44;
    border-color: #0b1f44;
    border-radius: 4px;
}

.careers-menu__item.active .careers-menu__link {
    color: #fff;
}

.careers-menu__arrow {
    color: #00B6E5;
    max-height: 20px;
}

.careers-menu__item .careers-menu__arrow svg {
    transition: all 0.2s;
    margin-left: -20px;
    opacity: 0;
    stroke: #00B6E5;
}

.careers-menu__item:hover .careers-menu__arrow svg,
.careers-menu__item.active .careers-menu__arrow svg {
    margin-left: 0;
    opacity: 1;
}

.careers-content {
    flex-grow: 1;
}

.careers-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.careers-tab-pane.active {
    display: block;
}

/* CAREER CARD */
.career-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
}

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #00B6E5;
}

.career-card__name {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0b1f44;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.career-card__name a {
    color: inherit;
    text-decoration: none;
}

.career-card__excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.career-card__btn-wrap {
    margin-top: auto;
}

.career-card__btn {
    font-size: 15px;
    font-weight: 700;
    color: #00B6E5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.career-card__btn:hover {
    color: #0b1f44;
}

.career-card__btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* CAREERS PAGE TITLE */
.careers-page-title {
    text-align: center;
    padding: 60px 20px 40px;
}

.careers-page-title__label {
    text-transform: uppercase;
    color: #000;
    margin: 0;
    letter-spacing: 0.1em;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.careers-page-title__label::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: #00B6E5;
    margin-top: 8px;
}

.careers-page-title__main {
    font-size: 42px;
    font-weight: 800;
    color: #0b1f44;
    margin: 15px 0 10px;
    text-transform: uppercase;
    line-height: 1.1;
}

.careers-page-title__sub {
    color: #666;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.05em;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .careers-layout {
        flex-direction: column;
        gap: 30px;
    }

    .careers-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .careers-page-title__main {
        font-size: 32px;
    }

    .career-card {
        padding: 20px;
    }
}

/* CUSTOM MODAL STYLES */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.custom-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    margin-top: 0;
    font-size: 24px;
    color: #0b1f44;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

/* Fluent Form Overrides inside Modal */
.custom-modal .fluentform {
    /* Add any specific form styling here if needed */
}



.careers-back-btn-wrapper {
    margin-bottom: 30px;
}

.btn-back-careers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-back-careers:hover {
    color: #00B6E5;
}

.single-career-header {
    margin-bottom: 40px;
}

.single-career-name {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #0b1f44;
    text-transform: uppercase;
    margin: 10px 0;
}

.career-category-tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: #F3F3F3;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #0b1f44;
}

.single-career-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.single-career-image img {
    width: 100%;
    height: auto;
}

.single-career-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 60px;
}

.career-apply-section {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 12px;
    text-align: center;
}

.apply-title {
    font-size: 24px;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 10px;
}

.apply-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #0b1f44;
    color: #fff !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #00B6E5;
}


/* Additional Styles for the Detail View inside Archive */
.career-detail-pane {
    background: #fff;
    /* padding: 20px; */
    /* Padding is handled by careers-layout container essentially, but pane might not need extra */
}

.careers-content__title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f44;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.career-detail-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.career-detail-image img {
    border-radius: 8px;
    margin-bottom: 25px;
    width: 100%;
    height: auto;
}

.career-body-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.career-body-text h2 {
    font-size: 20px;
    color: #0b1f44;
    margin-top: 30px;
    margin-bottom: 15px;
}

.career-body-text ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.career-body-text li {
    margin-bottom: 8px;
}

.career-apply-btn {
    display: inline-block;
    background-color: #0b1f44;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.career-apply-btn:hover {
    background-color: #00B6E5;
    color: #fff;
}


@media (max-width: 768px) {
    .single-career-name {
        font-size: 32px !important;
    }
}

/* Pagination */
.news-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.news-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.news-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
    background-color: #021E4B;
    color: #fff;
    border-color: #021E4B;
}

.news-pagination .page-numbers.prev,
.news-pagination .page-numbers.next {
    width: auto;
    padding: 0 15px;
}

.news-pagination .page-numbers svg {
    width: 20px;
    height: 20px;
}

/* STICKY STYLES FOR TOP BAR SERVICE AND LEADERSHIP HEADER */
.top-bar-service,
.leadership-header {
    position: sticky;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease;
}

/* top values managed via Theme Options > Sticky Header (wp_head) */

.top-bar-service ul.elementor-icon-list-items li:after{
    opacity: 0.6;
    display: inline-block;
    color: #898989;
    font-style: italic;
    height: auto !important;
    content: '|' !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    border: 0 !important;
    background: #0000 !important;
    margin: 0 5px;
    margin-left: 0;
}
.top-bar-service ul.elementor-icon-list-items li:last-child:after{
display:none!important;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*for Mobile*/
@media (max-width: 767px) {
    .top-bar-service,
    .leadership-header {
        /* top managed via wp_head */
    }
}



/*for tabletV*/
@media (min-width: 768px) and (max-width: 991px) {
    .top-bar-service,
    .leadership-header {
        /* top managed via wp_head */
    }
}


/*for tabletH*/
@media (min-width: 992px) and (max-width: 1199px) {
    .top-bar-service, .leadership-header {
        /* top managed via wp_head */
    }
}
/* end for tabletH */

/* No Posts Found */
.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-posts-found p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* SOCIAL SHARE BUTTONS */
.single-social-share {
margin: 40px 0;
    padding: 0;
}

.share-label {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #021E4B;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.share-btn span {
    font-weight: 600;
}

/* Facebook */
.share-fb {
    background-color: #1877F2;
    color: #fff!important;
    border-color: #1877F2;
}

.share-fb:hover {
    background-color: #0c63d4;
    border-color: #0c63d4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* LinkedIn */
.share-linkedin {
    background-color: #0A66C2;
    color: #fff!important;
    border-color: #0A66C2;
}

.share-linkedin:hover {
    background-color: #004182;
    border-color: #004182;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

/* Line */
.share-line {
    background-color: #00B900;
    color: #fff!important;
    border-color: #00B900;
}

.share-line:hover {
    background-color: #009600;
    border-color: #009600;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 185, 0, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}
