
<style>
/* ==========================================================
   FOUNDER + NEWS EVENTS MAIN SECTION
   ========================================================== */

.vss-founder-news-section {
    position: relative;
    padding: 75px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.vss-founder-news-section:before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(11,71,117,0.06);
    left: -150px;
    top: 50px;
}

.vss-founder-news-section:after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(245,130,24,0.08);
    right: -120px;
    bottom: 40px;
}

.vss-founder-news-section .container {
    position: relative;
    z-index: 2;
}


/* ==========================================================
   COMMON HEADING
   ========================================================== */

.vss-fn-label {
    display: block;
    margin-bottom: 7px;
    color: #f58218;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vss-fn-heading {
    margin: 0 0 10px;
    color: #0b4775;
    font-size: 27px;
    font-weight: 800;
}

.vss-fn-heading-line {
    width: 58px;
    height: 4px;
    margin-bottom: 25px;
    background: #f58218;
    border-radius: 10px;
}


/* ==========================================================
   FOUNDER CARD
   ========================================================== */

.vss-founder-card {
    position: relative;
    height: 100%;
    padding: 35px 25px 30px;
    background: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7,31,53,0.08);
    overflow: hidden;
    transition: all .3s ease;
}

.vss-founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(7,31,53,0.13);
}


/* Orange top border */

.vss-founder-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #f58218;
}


/* Founder image */

.vss-founder-image {
    width: 155px;
    height: 155px;
    margin: 5px auto 20px;
    padding: 6px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #f58218;
    box-shadow: 0 8px 25px rgba(7,31,53,0.13);
}

.vss-founder-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
}


/* Founder label */

.vss-founder-card .vss-founder-label {
    display: block;
    margin-bottom: 7px;
    color: #f58218;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


/* Founder name */

.vss-founder-card h3 {
    margin: 0 0 12px;
    color: #0b4775;
    font-size: 20px;
    font-weight: 800;
}


/* Founder description */

.vss-founder-card p {
    margin: 0 auto 22px;
    max-width: 330px;
    color: #718296;
    font-size: 13px;
    line-height: 1.65;
}


/* Founder button */

.vss-founder-button {
    display: inline-block;
    padding: 10px 23px;
    border: 1px solid #0b4775;
    border-radius: 30px;
    background: #0b4775;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none !important;
    transition: all .3s ease;
}

.vss-founder-button:hover,
.vss-founder-button:focus {
    background: #f58218;
    border-color: #f58218;
    color: #ffffff !important;
    text-decoration: none;
}

.vss-founder-button i {
    margin-left: 6px;
}


/* ==========================================================
   NEWS & EVENTS CARD
   ========================================================== */

.vss-news-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e1e8ef;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(7,31,53,0.08);
    overflow: hidden;
}


/* Header */

.vss-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 25px;
    background: linear-gradient(135deg, #071f35, #0b4775);
}

.vss-news-header-left {
    display: flex;
    align-items: center;
}

.vss-news-header-icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-right: 13px;
    border-radius: 50%;
    background: #f58218;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
}

.vss-news-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.vss-news-header p {
    margin: 3px 0 0;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
}


/* ==========================================================
   NEWS SCROLL AREA
   ========================================================== */

.vss-news-scroll-wrapper {
    position: relative;
    padding: 18px 20px 15px;
}


/*
   Fixed height makes the news/events area scrollable.
   Change 360px if you want the box taller/shorter.
*/

.vss-news-scroll {
    height: 360px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px 12px 5px 5px;
    scroll-behavior: smooth;

    /*
       Firefox scrollbar
    */
    scrollbar-width: thin;
    scrollbar-color: #f58218 #edf2f6;
}


/* Chrome / Edge / Safari scrollbar */

.vss-news-scroll::-webkit-scrollbar {
    width: 7px;
}

.vss-news-scroll::-webkit-scrollbar-track {
    background: #edf2f6;
    border-radius: 10px;
}

.vss-news-scroll::-webkit-scrollbar-thumb {
    background: #f58218;
    border-radius: 10px;
}

.vss-news-scroll::-webkit-scrollbar-thumb:hover {
    background: #0b4775;
}


/* ==========================================================
   STYLE EXISTING NEWS/EVENT CONTENT
   ========================================================== */

/*
   These rules style common elements generated by
   top-newsevents.php without changing that PHP file.
*/

.vss-news-scroll h1,
.vss-news-scroll h2,
.vss-news-scroll h3,
.vss-news-scroll h4,
.vss-news-scroll h5,
.vss-news-scroll h6 {
    color: #0b4775;
    font-weight: 800;
}

.vss-news-scroll a {
    color: #0b4775;
    font-weight: 600;
    transition: all .2s ease;
}

.vss-news-scroll a:hover {
    color: #f58218;
    text-decoration: none;
}

.vss-news-scroll p {
    color: #617386;
    line-height: 1.65;
}


/* ==========================================================
   NEWS CONTROL BUTTONS
   ========================================================== */

.vss-news-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px 15px 18px;
    border-top: 1px solid #edf1f5;
    background: #ffffff;
}

.vss-news-control-btn {
    min-width: 43px;
    height: 38px;
    padding: 0 13px;
    border: 1px solid #dce5ec;
    border-radius: 22px;
    background: #f7f9fc;
    color: #0b4775;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s ease;
}

.vss-news-control-btn:hover {
    background: #0b4775;
    border-color: #0b4775;
    color: #ffffff;
}

.vss-news-control-btn.active {
    background: #f58218;
    border-color: #f58218;
    color: #ffffff;
}


/* ==========================================================
   AUTO SCROLL STATUS
   ========================================================== */

.vss-news-status {
    margin-left: 5px;
    color: #718296;
    font-size: 11px;
}

.vss-news-status i {
    color: #f58218;
    margin-right: 4px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991px) {

    .vss-founder-news-section {
        padding: 60px 0;
    }

    .vss-founder-card {
        padding: 30px 20px;
    }

    .vss-news-scroll {
        height: 350px;
    }

    .vss-news-header h2 {
        font-size: 20px;
    }
}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

    .vss-founder-news-section {
        padding: 48px 0 55px;
    }

    .vss-founder-card {
        max-width: 420px;
        margin: 0 auto 30px;
    }

    .vss-news-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .vss-news-header {
        padding: 18px 20px;
    }

    .vss-news-header h2 {
        font-size: 19px;
    }

    .vss-news-scroll {
        height: 330px;
    }

    .vss-news-controls {
        flex-wrap: wrap;
    }
}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .vss-founder-news-section {
        padding: 42px 0 48px;
    }

    .vss-founder-image {
        width: 135px;
        height: 135px;
    }

    .vss-founder-card h3 {
        font-size: 18px;
    }

    .vss-news-header-icon {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 17px;
    }

    .vss-news-header h2 {
        font-size: 17px;
    }

    .vss-news-scroll {
        height: 300px;
    }

    .vss-news-control-btn {
        min-width: 38px;
        height: 36px;
        padding: 0 10px;
    }

    .vss-news-status {
        width: 100%;
        margin: 5px 0 0;
        text-align: center;
    }

}



/* ==========================================================
   THREE FEATURE CARDS
   ========================================================== */

.vss-info-card {
    min-height: 100%;
}


/* ==========================================================
   NEWS / ACHIEVEMENT ICON
   ========================================================== */

.vss-info-icon {
    width: 115px;
    height: 115px;
    line-height: 115px;
    margin: 25px auto 20px;

    border-radius: 50%;

    background: #eaf3f9;

    border: 4px solid #ffffff;

    color: #f58218;

    text-align: center;

    font-size: 46px;

    box-shadow:
        0 8px 25px rgba(7,31,53,0.12);

    transition: all .3s ease;
}


/* Hover */

.vss-info-card:hover .vss-info-icon {
    background: #f58218;
    color: #ffffff;
    transform: scale(1.07);
}


/* Achievement icon */

.vss-achievement-icon {
    background: #fff3e7;
}


/* ==========================================================
   INFO CARD DESCRIPTION
   ========================================================== */

.vss-info-card p {
    min-height: 65px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 991px) {

    .vss-info-card {
        margin-top: 20px;
    }

    .vss-info-icon {
        width: 100px;
        height: 100px;
        line-height: 100px;
        font-size: 40px;
    }

}


@media (max-width: 767px) {

    .vss-founder-card,
    .vss-info-card {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

}


@media (max-width: 480px) {

    .vss-info-icon {
        width: 90px;
        height: 90px;
        line-height: 90px;
        font-size: 35px;
    }

}


</style>