/* Parralax Banner */
.container-banner.parallax-bkg-header {height:35vh;}

/* Social Icons */
.social-container a {text-decoration:none;}   
.social-container .link-container {display:flex; flex-wrap:wrap; row-gap:20px; column-gap:20px; justify-content:center; flex:1 1 auto;}
img.social-icons {width: 50px; height: 51px; margin: 0 3px;}
.social-container a:hover img, .social-container a:focus img {border: 1px solid #4F2683;}
.social-container img { border-radius: 50%; border: 1px solid transparent;}


/* ======== CTA Button Group ========= */
              .cta-button-group {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    flex-wrap: wrap;
}
              
             /* =========================================
   Fact Slider
   ========================================= */

/* Outer slider container */
.fact-slider {
    display: flex;
    flex-direction: column;
}

/* Wrapper that hides overflow */
.fact-slider-track-wrapper {
    overflow: hidden;
    width: 100%;
}

/* Flex track that moves left/right */
.fact-slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

/* Each slide */
.fact-slide {
    flex: 0 0 33.3333%;       /* 3 per view on desktop (>= 992px) */
    box-sizing: border-box;
    padding: 1.5%;            /* your breathing room */
    display: flex;
    flex-direction: column;
    justify-content: center;  /* vertical centering */
    align-items: center;      /* horizontal centering */
    text-align: center;
    position: relative;       /* required for divider positioning */
    max-width: 33.3333%;
}

/* Optional: spacing between elements inside slide */
.fact-slide > * {
    margin-bottom: 0.25rem;
}
.fact-slide > *:last-child {
    margin-bottom: 0;
}

/* Tablet: 2 visible (576px–991.98px) */
@media (max-width: 991.98px) and (min-width: 576px) {
    .fact-slide {
        flex: 0 0 50%;
        max-width:50%;
    }
}

/* Mobile: 1 visible (<576px) */
@media (max-width: 575.98px) {
    .fact-slide {
        flex: 0 0 100%;
        max-width:100%;
    }
}

/* =========================================
   Controls row: chevrons + dots (inline)
   ========================================= */

.fact-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1.25rem;          /* space between arrows and dots row */
    margin-top: 1.5rem;

    /* hidden by default – JS will add --visible if needed */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* Show + fade in when JS decides they’re needed */
.fact-slider-controls.fact-slider-controls--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Arrow buttons: no circle, just chevrons */
.fact-slider-btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
        width: 20px;
    height: 20px;
}

.fact-slider-btn svg {
    width: 20px;
    height: 20px;
    fill: #4f2683;         /* Western purple chevrons */
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.fact-slider-btn:hover svg,
.fact-slider-btn:focus-visible svg {
    transform: translateY(-1px);
    opacity: 0.8;
}

.fact-slider-btn[disabled] svg {
    opacity: 0.3;
}

/* =========================================
   Pagination dots (centered between arrows)
   ========================================= */

.fact-slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.fact-slider-dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: none;
    background-color: #c7c7c7;   /* inactive grey */
    padding: 0;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.fact-slider-dot.is-active {
    background-color: #000000;   /* active black */
    transform: scale(1.05);
}

.fact-slider-dot:focus-visible {
    outline: 2px solid #3b1d63;
    outline-offset: 2px;
}

/* =========================================
   Vertical dividers (Tablet + Desktop only)
   ========================================= */

/* Only apply dividers when viewport is >= 576px (tablet + desktop) */
@media (min-width: 576px) {
    .fact-slide::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background-color: #e0e0e0;
    }

    /* Hide divider on last visible slide (JS adds .last-visible dynamically) */
    .fact-slide.last-visible::after {
        display: none !important;
    }
}

/* No dividers on small mobile (<576px) */
@media (max-width: 575.98px) {
    .fact-slide::after {
        display: none !important;
    }
}



/* Feature Story */
.bg-co.bg-co-deep-focus.img-choice-right {
    align-items: flex-end;
}
.bg-co {
    padding: 50px 20px;
}
@media (min-width: 992px) {
    .bg-co {
        display: flex;
        padding: 50px 64px;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }
}
.info {
    display: flex;
    max-width: 100%;
    /*padding: 10px; */
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
}
@media (min-width: 992px) {
    .info {
        display: flex;
        max-width: 558px;
        /* padding: 10px;*/
        flex-direction: column;
        align-items: flex-start;
        gap: 36px;
    }
}
.advanced-call-out {
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}
@media (max-width: 767.98px) {
    .feature-story .bg-image {
        min-height: 500px !important;
    }
}
.feature-story .bg-image {
    min-height: 700px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.feature-story .btn-container {
    display: flex;
    align-items: stretch;
    gap: 0.9375rem;
    align-self: stretch !important;
    padding-top: 20px;
}

/* Featured Cards */
.academics-col {
    display: flex;
    align-items: stretch;
    flex-direction: column;
}
.card.western-card {
    border-radius: 0;
    border-bottom: 1px solid #8F55E0;
    text-align: center;
    border-top: none;
    border-left: none;
    border-right: none;
    gap: 1.875rem;
    margin-bottom: 12px;
    filter: drop-shadow(-5px 4px 18px rgba(0, 0, 0, 0.15));
    height: 100%;
}
.western-card .card-header:first-child {
    border-radius: 0;
}
.western-card-bg {
    background-position: center top !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 426px;
}
.western-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1.25rem;
}
.western-card .card-footer:last-child {
    border-radius: 0;
}
.western-card .card-footer {
    margin-bottom: 1.875rem;
    margin-top: 0;
    padding: 0 1.25rem;
    background-color: white;
    border: none;
}

/* Factoids */

.factoids-container {
    gap: 30px;
    text-align: center;
}
.factoids .row {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .factoid-container {
        gap: 1.875rem;
        flex-direction: row;
    }
}
.factoid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}
.wu-fact {
    color: #4f2683;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: calc(390px - 8.75rem);
    font-size: 3.5rem;
    font-weight:700;
    line-height:4.0625rem;
}
.wu-fact sup {
    color: #4F2683;
    top: -0.3em;
}

.factoid-divider
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    max-width: 100px;
}.fact-divider {
    width: 90px;
    height: 0px;
    border: 1px solid #DEDEDE;
    transform: rotate(90deg);
}
/* Buttons */
.btn-western-white-coloured
 {
    padding: 10px 18px;
    background: #FFFFFF;
    border-radius: 4px;
    color: #4F2683;
    text-align: center;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 1rem;
    line-height: 25px;
    min-width: 145px;
}
.btn-western-white-coloured:hover, .btn-western-white-coloured:focus {
    color: #FFFFFF !important;
    background: #201436;
    border: 2px solid #8F55E0;
    box-shadow: 0px 10px 28px rgba(34, 19, 56, 0.12);
}
.btn-western-purple-coloured {
    padding: 10px 18px !important;
    background: transparent;
    border-radius: 4px !important;
    color: white !important;
    text-align: center !important;
    border: 2px solid white !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    line-height: 25px !important;
    min-width: 145px !important;
}
.btn-western-purple-coloured:hover, .btn-western-purple-coloured:focus {
    padding: 10px 18px !important;
    background: #201436 !important;
    border-radius: 4px !important;
    color: #FFFFFF !important;
    text-align: center !important;
    border: 2px solid #8F55E0 !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    line-height: 25px !important;
}

.btn-western-purple-light {
    padding: 10px 18px;
    background: #4F2683;
    border-radius: 4px;
    color: #FFFFFF;
    text-align: center;
    border: 2px solid transparent;
    text-decoration: none;
    font-family: "BentonSans Book", Arial, sans-serif !important;
    font-size: 1rem;
    line-height: 25px;
    min-width: 145px;
    display: inline-block;
}
.btn-western-purple-light:hover, .btn-western-purple-light:focus {
    background: #201436;
    border: 2px solid #8F55E0;
    color: #FFFFFF !important;
}

.btn-western-white-light {
    padding: 10px 18px;
    border: 2px solid #4F2683;
    border-radius: 4px;
    color: #4F2683;
    text-decoration: none;
    font-family: "Benton Sans Book", Arial, sans-serif !important;
    font-size: 1rem;
    line-height: 25px;
    text-align: center;
    min-width: 145px;
    /* background-color: white; */
}
.btn-western-white-light:hover, .btn-western-white-light:focus {
    color: white !important;
    background: #201436;
    border: 2px solid #8F55E0;
}

@media (max-width: 576px) {
    .btn-block {
        width: 100%;
        display: block !important;
    }
}

/* Link Styling */

a, a:visited, a:focus {
    color: #4F2683;
}


