
#backToTop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none;
    z-index: 99;
}
.recipient-ul {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

.recipient-li {
    width: 100%;
    font-size: 0.9em;
    margin-bottom: 0.8rem;
    padding-left: 1em; /* extra space between bullet and text */
    box-sizing: border-box;
}

.recipient-li a {
    text-decoration: none;
}

.recipient-li a:hover {
    text-decoration: underline;
}
.deans-list-hero {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    /* No width: 100vw or negative margins! */
}

.deans-list-text {
    flex: 1 1 60%;
}

.deans-list-image {
    flex: 1 1 35%;
    max-width: 400px;
}


.deans-list-image {
    flex: 1 1 35%;
    max-width: 400px;
}

#recipient-image {
    width: 350px;   /* display width */
    height: auto;
    image-rendering: auto; /* optional; browser handles best quality */
}

.deans-list-image img {
    max-width: 100%;
    height: auto;
}

.highlight {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.25em;
    font-weight: 600;
    margin-top: 20px;
    color: rgb(40, 87, 175);
}
.deans-descr {
    font-size: 1.25em;
    font-family: Arial, Helvetica, sans-serif;
}
.acad_plan {
    position: relative;
    left: 18px;
    font-size: .85em;
}
.heading {
    font-weight: 800;
}
.sectionHeading {
    position: relative;
    font-size: 1.75em;
    margin-bottom: 20px;
    padding-bottom: 15px;
    padding-top: 10px;
    color: #333;
}
.sectionHeading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px; 
    height: 4px; 
    background-color: #0077CC; 
    border-radius: 2px;
}
.sectionHeadingFirst {
    padding-top: 0px !important;
}

/*Buttons*/
button.slick {
    border: none;
    display: flex;
    padding: 0.3rem 0.6rem; /* smaller padding */
    background-color: #488aec;
    color: #ffffff;
    font-size: 1em; /* reduced font size */
    line-height: 1em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    vertical-align: middle;
    align-items: center;
    border-radius: 0.5rem;
    user-select: none;
    gap: 0.5rem;
    box-shadow:
        0 4px 6px -1px #488aec31,
        0 2px 4px -1px #488aec17;
    transition: all 0.6s ease;
}

button.slick:hover {
    box-shadow:
        0 10px 15px -3px #488aec4f,
        0 4px 6px -2px #488aec17;
}

button.slick:focus,
button.slick:active {
    opacity: 0.85;
    box-shadow: none;
}

button.slick svg {
    width: 2.5rem;
    height: 2.5rem;
}

.radiant-image {
    transition: box-shadow 0.3s ease;
}

.radiant-image.hover-enabled:hover {
    box-shadow: 0 0 40px 15px rgba(0, 123, 255, 0.6);
    cursor: pointer;
}

.radiant-image.radiant-glow {
    box-shadow: 0 0 40px 15px rgba(0, 123, 255, 0.6);
    cursor: pointer;
}

/*Loading GIF*/
.image-wrapper {
    position: relative;
    display: inline-block; /* Ensures wrapper fits image size */
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex; /* THIS is key */
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5); /* optional fade effect */
    z-index: 10;
    pointer-events: none; /* Allows clicks to pass through if needed */
}

.loading-overlay img {
    width: 50px;   /* Small size */
    height: 50px;
}

/*Mobile*/

/* ≥768px: tablets (2 columns) */
@media (min-width: 768px) {
    .recipient-li {
        width: 50%;
    }
}

/* ≥1025px: iPads / small desktops (3 columns) */
@media (min-width: 1025px) {
    .recipient-li {
        width: 33.3333%;
    }
}

/* ≥1280px: large desktops — 4 columns */
@media (min-width: 1280px) {
    .recipient-li {
        width: 25%;
    }
}
