@font-face {
    font-family: 'Canela Web';
    src: url('../fonts/Canela-Regular-Web.woff2') format('woff2'),
         url('../fonts/Canela-Regular-Web.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Styles */
:root {
    /* Colors - TTU's Color Scheme */
    --color-primary: #d9261c; /* TTU Crimson */
    --color-secondary: #1E1E1E; /* TTU Black */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f5f5f5;
    --color-border: #e0e0e0;
    --color-gray-dark: #333333;
    --color-gray-medium: #cccccc;
    --color-gray-light: #f7f7f7;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-family-display: 'Canela Web', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing */
    --spacing-unit: 1rem;
    --spacing-small: calc(var(--spacing-unit) * 0.5);
    --spacing-medium: var(--spacing-unit);
    --spacing-large: calc(var(--spacing-unit) * 2);
    --spacing-xl: calc(var(--spacing-unit) * 4);
    
    /* Border Radius */
    --border-radius: 4px;
    
    /* Transitions */
    --transition-base: all 0.3s ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--color-secondary);
}

ul {
    list-style: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-display);
    color: var(--color-secondary);
    margin-bottom: var(--spacing-medium);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 700; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: var(--spacing-medium);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-small);
    padding: var(--spacing-medium) var(--spacing-large);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn--primary {
    background-color: var(--color-primary);
    color: white;
}

.btn--primary:hover {
    background-color: #8B1A2F;
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn--icon {
    padding: var(--spacing-small) var(--spacing-medium);
}

.btn--icon i {
    margin-right: 5px;
}

.btn--text-icon {
    background: none;
    border: none;
    color: var(--color-primary);
    padding: 0;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn--text-icon:hover {
    color: var(--color-secondary);
}

.btn--circular {
    width: 40px; /* Reduced size */
    height: 40px; /* Reduced size */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 1.2rem; /* Adjusted icon size */
}

.hero__button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-medium);
    margin-top: var(--spacing-large);
}

.hero__button-text {
/*    color: var(--color-secondary);*/
     color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.hero .btn--primary {
    background-color: var(--color-primary);
    color: white;
}

.hero .btn--primary:hover {
    background-color: #8B1A2F;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 0;
    transition: background-color 0.3s ease;
}

.site-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    height: 90px; /* Increased height for more space */
}

.site-header__left {
    flex-shrink: 0;
    padding-top: 15px; /* Add space at the top for logo */
}

.site-header__right {
    display: flex;
    align-items: center;
    height: 100%; /* Full height */
    margin-right: -18px;
}

.site-header__actions {
    display: flex;
    gap: 20px; /* Increased space between buttons */
    background-color: #1a337e;
    padding: 0 var(--spacing-large);
    height: 100%; /* Full height */
    align-items: center;
}

.site-header__search-toggle,
.site-header__menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-base);
    padding: 0;
    height: 100%;
}

.site-header__search-toggle i,
.site-header__menu-toggle i {
    font-size: 1.5rem;
}

/* Logo Styles */
.logo {
    display: block;
    height: 120px; /* Desktop height */
    width: auto;
}

.logo__img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo__img--desktop {
    display: block; /* Show desktop logo by default */
}

.logo__img--mobile {
    display: none; /* Hide mobile logo by default */
}

/* Responsive adjustments */
@media (max-width: 767px), (max-width: 600px), (max-width: 480px) {
    .site-header {
        height: 56px !important;
        min-height: 56px !important;
        background: rgba(24,24,24,0.98) !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
        border-bottom: none !important;
        position: sticky !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        transition: background 0.3s, box-shadow 0.3s;
    }
    .site-header__wrapper {
        height: 56px !important;
        padding: 0 12px !important;
        flex-direction: row !important;
        align-items: center !important;
        max-width: 100vw !important;
        min-width: 0;
    }
    .site-header__left {
        padding-top: 0 !important;
        display: flex;
        align-items: center;
        margin-right: 130px;
    }
    .logo {
        height: 36px !important;
        width: auto !important;
        display: flex;
        align-items: center;
        margin-right: 0;
    }
    .logo__img {
        height: 36px !important;
        width: auto !important;
        object-fit: contain;
        display: block;
        /* Filter removed */
    }
    .logo__img--desktop {
        display: none !important; /* Hide desktop logo on mobile */
    }
    .logo__img--mobile {
        display: block !important; /* Show mobile logo on mobile */
    }
    .site-header__right {
        display: flex;
        align-items: center;
        height: 100%;
        margin-right: 0;
        flex: 0 0 auto;
    }
    .site-header__actions {
        display: flex;
        gap: 18px !important;
        padding: 0 !important;
        height: 100% !important;
        align-items: center !important;
        background: none !important;
        box-shadow: none !important;
    }
    .site-header__search-toggle,
    .site-header__menu-toggle {
        font-size: 1.6rem !important;
        padding: 0 6px !important;
        height: 44px !important;
        width: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        border-radius: 50%;
        background: none !important;
        border: none !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        transition: background 0.2s, transform 0.1s;
        outline: none;
        position: relative;
    }
    .site-header__search-toggle:active,
    .site-header__menu-toggle:active {
        background: rgba(255,255,255,0.08) !important;
        transform: scale(0.92);
    }
    .site-header__search-toggle:focus,
    .site-header__menu-toggle:focus {
        box-shadow: 0 0 0 2px #DB301B;
    }
    .site-header__search-toggle i,
    .site-header__menu-toggle i {
        font-size: 1.6rem !important;
        color: #fff !important;
        display: inline-block !important;
        visibility: visible !important;
        margin: 0;
    }
    .site-header__search-toggle span,
    .site-header__menu-toggle span {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-header__wrapper {
        height: 85px;
    }
    
    .site-header__left {
        padding-top: 12px;
    }
    
    .logo {
        height: 55px;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1002;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.search-overlay.is-active {
    display: flex;
    opacity: 1;
}

.search-overlay__inner {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.search-overlay__close {
    position: absolute;
    top: -40px; /* Position above the search input */
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.search-form {
    display: flex;
    width: 100%;
    border-bottom: 2px solid white;
    padding-bottom: var(--spacing-small);
}

.search-form__input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 2rem;
    padding: 0;
}

.search-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form__submit {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Off-Canvas Navigation */
.nav-off-canvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    justify-content: flex-end;
}

.nav-off-canvas.is-active {
    right: 0;
}

.nav-off-canvas__inner {
    width: 350px;
    background-color: var(--color-secondary);
    height: 100%;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
}

.nav-off-canvas__header {
    text-align: right;
    margin-bottom: var(--spacing-xl);
}

.nav-off-canvas__close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-off-canvas__close:hover {
    color: var(--color-primary);
}

.nav-off-canvas__content {
    flex-grow: 1;
    overflow-y: auto;
}

.nav-off-canvas__heading {
    font-family: 'Canela Web', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: var(--spacing-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: var(--spacing-small);
    margin-top: var(--spacing-large);
}

.nav-off-canvas__menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-off-canvas__item {
    margin-bottom: 0.5rem;
}

.nav-off-canvas__link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.nav-off-canvas__link:hover {
    color: white;
    padding-left: var(--spacing-small);
}

.nav-off-canvas__submenu {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
    display: none;
}

.nav-off-canvas__item--has-children.is-active > .nav-off-canvas__submenu {
    display: block;
}

.nav-off-canvas__item--has-children > .nav-off-canvas__link {
    position: relative;
    padding-right: 2rem;
}

.nav-off-canvas__item--has-children > .nav-off-canvas__link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.nav-off-canvas__item--has-children.is-active > .nav-off-canvas__link::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Ensure logo is white on transparent header */
.site-header__left .logo__img {
    /* filter: brightness(0) invert(1); */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #1a337e38, #1a337ee6 70%, #1a337e);
/*    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 1));*/
}

.hero__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-secondary);
}

.hero__container {
    max-width: 800px;
    padding: 0 var(--spacing-medium);
    position: relative;
}

.hero__title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-large);
}

.hero__line {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 200px;
    background-color: var(--color-text-light);
    animation: dropLine 1.5s forwards;
}

@keyframes dropLine {
    from {
        height: 0;
    }
    to {
        height: 200px;
    }
}

.hero__title {
    font-family: 'Canela Web', serif;
    font-size: 100px;
    font-weight: 700;
/*    color: var(--color-secondary);*/
    color: #fff;
    margin-bottom: 0;
    line-height: 1.1;
}

/* News Commencement Section */
.news-commencement {
    padding: var(--spacing-xl) 0;
    background-color: #fff;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-commencement__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-large);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

@media (min-width: 768px) {
    .news-commencement__wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

.news-commencement__main .news-article {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.news-article {
    width: 100%;
    max-width: 100%;
}

.news-article__figure {
    margin-bottom: var(--spacing-medium);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.news-article__figure:hover {
    transform: scale(1.02);
}

.news-article__figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-article__figure:hover::after {
    opacity: 1;
}

.news-article__image {
    width: 100%;
    height: 450px; /* Fixed height for consistency */
    object-fit: cover;
    transition: transform 0.5s ease;
    animation: fadeIn 0.5s ease-in;
}

.news-article__figure:hover .news-article__image {
    transform: scale(1.05);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Add a subtle shadow effect */
.news-article__figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-article__figure:hover::before {
    opacity: 1;
}

.news-article__content {
    position: relative;
    z-index: 1;
    background: white;
    padding: var(--spacing-medium);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.news-article__title {
    transition: all 0.3s ease;
}

.news-article__title.active {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-article__category {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-small);
    text-transform: uppercase;
    padding: 4px 8px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-medium);
}

.news-list__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-bottom: var(--spacing-medium);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-medium); /* Add margin to separate items */
    background: none; /* Remove background */
    box-shadow: none; /* Remove box-shadow */
    transition: none; /* Remove transition */
    overflow: visible; /* Allow content to overflow */
    border-radius: 0; /* Remove border-radius */
}

.news-list__item:last-child {
    border-bottom: none; /* No border for the last item */
    margin-bottom: 0; /* No margin for the last item */
}

.news-list__item:hover {
    transform: none; /* Remove hover transform */
    box-shadow: none; /* Remove hover box-shadow */
}

.news-list__link {
    display: flex; /* Make the link a flex container */
    text-decoration: none;
    color: inherit;
    width: 100%; /* Ensure link takes full width */
}

.news-list__figure {
    width: 120px; /* Smaller image width */
    /* height: 80px; Smaller image height */
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0; /* Prevent image from shrinking */
    margin-left: var(--spacing-medium); /* Space between text and image */
}

.news-list__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: none; /* Remove transition */
}

.news-list__item:hover .news-list__image {
    transform: none; /* Remove hover transform */
}

.news-list__content {
    padding: 10px; /* Remove padding */
    flex-grow: 1; /* Allow content to grow */
}

.news-list__category {
    display: block; /* Change to block for better spacing */
    font-size: 0.7rem; /* Smaller font size */
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2px; /* Tighter spacing */
    text-transform: uppercase;
    padding: 0; /* Remove padding */
    background: none; /* Remove background */
    border-radius: 0; /* Remove border-radius */
}

.news-list__title {
    font-size: 0.95rem; /* Smaller font size */
    margin-bottom: 0; /* Remove margin */
    font-family: 'Inter';
    color: var(--color-text);
    line-height: 1.3; /* Tighter line height */
    display: block; /* Ensure it's a block element */
    -webkit-line-clamp: unset; /* Remove line clamping */
    -webkit-box-orient: unset; /* Remove box orient */
    overflow: visible; /* Allow full title to show */
}

.news-list__title :hover{
    text-decoration: underline;
}

.news-list__excerpt {
    display: none; /* Hide excerpt as per screenshot */
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .news-list__item {
        flex-direction: row; /* Keep row direction for mobile */
        align-items: flex-start;
        padding-bottom: var(--spacing-small);
        margin-bottom: var(--spacing-small);
    }

    .news-list__figure {
        width: 60px; /* Even smaller image for mobile */
        height: 60px;
        margin-left: var(--spacing-small);
    }
    
    .news-list__content {
        padding: 0;
    }
    
    .news-list__title {
        font-size: 0.9rem; /* Adjust title font size for mobile */
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .news-list__figure {
        height: 160px;
    }
}

/* Animation for news items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-list__item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.news-list__item:nth-child(1) { animation-delay: 0.1s; }
.news-list__item:nth-child(2) { animation-delay: 0.2s; }
.news-list__item:nth-child(3) { animation-delay: 0.3s; }
.news-list__item:nth-child(4) { animation-delay: 0.4s; }
.news-list__item:nth-child(5) { animation-delay: 0.5s; }
.news-list__item:nth-child(6) { animation-delay: 0.6s; }

/* Fair Harvard Section */
.fair-harvard {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
}

.fair-harvard__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.fair-harvard__title {
    font-size: 3rem;
    font-family: 'Canela Web', serif;
    margin-bottom: var(--spacing-medium);
}

.fair-harvard__excerpt {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-large);
}

.fair-harvard__actions .btn {
    margin-bottom: var(--spacing-small);
}

.fair-harvard__media {
    position: relative;
}

.fair-harvard__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.fair-harvard__carousel-nav {
    position: absolute;
    bottom: var(--spacing-medium);
    right: var(--spacing-medium);
    display: flex;
    gap: var(--spacing-small);
}

.carousel-nav__btn {
    background-color: rgba(0,0,0,0.6);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" viewBox="0 0 24 24"><path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}

.carousel-nav__btn--next {
    transform: rotate(180deg);
}

.carousel-nav__btn:hover {
    background-color: var(--color-primary);
}

/* Graduates Spotlight Section */
.graduates-spotlight {
    background-color: var(--color-secondary);
    color: white;
    padding: var(--spacing-xl) 0;
}

.graduates-spotlight__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.graduates-spotlight__header {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.graduates-spotlight__title {
    font-family: 'Canela Web', serif;
    font-size: 3rem;
    color: white;
    margin-bottom: var(--spacing-medium);
}

.graduates-spotlight__description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-large);
    opacity: 0.8;
}

.graduates-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-medium);
}

.graduate-card__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

/* Scholarship Section */
.scholarship-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background-alt);
}

.scholarship-section__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.scholarship-section__header {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.scholarship-section__title {
    font-family: 'Canela Web', serif;
    font-size: 3rem;
    margin-bottom: var(--spacing-medium);
}

.scholarship-section__description {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: var(--spacing-large);
}

.scholarship-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.scholarship-article {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.scholarship-article__media {
    position: relative;
    margin-bottom: var(--spacing-medium);
}

.scholarship-article__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.scholarship-article__play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition-base);
    cursor: pointer;
}

.scholarship-article__play-overlay:hover {
    opacity: 1;
}

.scholarship-article__play-overlay i {
    font-size: 3rem;
    margin-bottom: var(--spacing-small);
}

.scholarship-article__content {
    padding: var(--spacing-large);
}

.scholarship-article__title {
    font-size: 1.5rem;
    font-family: 'Canela Web', serif;
    margin-bottom: var(--spacing-small);
}

.scholarship-article__description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-medium);
}

/* School Events Section */
.school-events {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background);
}

.school-events__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.school-events__title {
    font-family: 'Canela Web', serif;
    font-size: 3rem;
    margin-bottom: var(--spacing-small);
}

.school-events__description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-large);
    color: var(--color-text-light);
}

.school-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three columns */
    gap: var(--spacing-xl);
}

.school-events__list li a {
    display: block;
    padding: 8px 0;
    color: var(--color-secondary);
    font-weight: 500;
}

.school-events__list li a:hover {
    color: var(--color-primary);
}

/* Footer */
.site-footer {
    background: #1a337e;
    color: #fff;
    font-size: 1rem;
    padding: 0;
}

.site-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-footer__row--main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
    padding: 48px 0 24px 0;
}

.site-footer__col {
    flex: 1 1 260px;
    min-width: 220px;
    margin-bottom: 24px;
}

.site-footer__col--contact {
    max-width: 320px;
}

.site-footer__col--logo {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
}

.site-footer__logo-img {
    width: 120px;
    height: auto;
    margin-bottom: 8px;
    display: block;
}

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.site-footer__social a {
    display: inline-block;
    transition: transform 0.2s;
}

.site-footer__social a:hover {
    transform: scale(1.13) rotate(-6deg);
}

.site-footer__social i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.85;
    transition: color 0.2s, opacity 0.2s, transform 0.2s;
    vertical-align: middle;
    display: inline-block;
}

.site-footer__social a:hover i {
    color: #f9b233;
    opacity: 1;
    transform: scale(1.13) rotate(-6deg);
}

.site-footer__social img { display: none; }

.site-footer__heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #f9b233;
    margin-bottom: 18px;
    font-weight: 700;
}

.site-footer__contact-info {
    margin-bottom: 18px;
    line-height: 1.7;
}

.site-footer__contact-info a {
    color: #fff;
    text-decoration: underline;
    word-break: break-all;
}

.site-footer__map {
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li {
    margin-bottom: 10px;
}

.site-footer__links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__links a:hover {
    color: #f9b233;
    text-decoration: underline;
}

.site-footer__news-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer__news-item {
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.4;
}

.site-footer__news-item a {
    color: #f9b233;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer__news-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer__row--copyright {
    border-top: 1px solid #333;
    padding: 16px 0 8px 0;
    text-align: center;
    font-size: 0.98rem;
    color: #bbb;
}

@media (max-width: 900px) {
    .site-footer__row--main {
        flex-direction: column;
        gap: 0;
        padding: 32px 0 16px 0;
    }
    .site-footer__col {
        max-width: 100%;
        margin-bottom: 32px;
    }
    .site-footer__col--logo {
        align-items: center;
        margin-bottom: 18px;
    }
    .site-footer__logo-img {
        margin: 0 auto 8px auto;
    }
}

@media (max-width: 600px) {
    .site-footer__container {
        padding: 0 8px;
    }
    .site-footer__row--main {
        padding: 18px 0 8px 0;
    }
    .site-footer__heading {
        font-size: 1.08rem;
        margin-bottom: 10px;
    }
    .site-footer__row--copyright {
        font-size: 0.92rem;
        padding: 10px 0 4px 0;
    }
}

/* Utility Classes */
.u-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease forwards;
}

.image-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.image-modal.active .image-modal__content {
    transform: scale(1);
}

.image-modal__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.image-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    transition: transform 0.3s ease;
}

.image-modal__close:hover {
    transform: scale(1.1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* News Slider Styles */
.news-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.news-slider__container {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}
.news-slider__slide {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: transparent !important;
}
.news-slider__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  filter: blur(16px) brightness(0.7);
  z-index: 0;
  pointer-events: none;
  transition: background-image 0.3s;
}
.news-slider__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  background: none;
  display: block;
}
@media (min-width: 768px) {
  .news-slider__image { height: 400px; }
}
@media (min-width: 1024px) {
  .news-slider__image { height: 450px; }
}

/* Remove the overlay content styles since we're using the existing title box */
.news-slider__content {
    display: none;
}

.news-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-small);
    pointer-events: none;
    z-index: 2;
}

.news-slider__button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.news-slider__button:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.news-slider__dots {
    position: absolute;
    bottom: var(--spacing-small);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-small);
    z-index: 2;
}

.news-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-slider__dot.active {
    background: white;
    transform: scale(1.2);
}

@media (min-width: 768px) {
    .news-slider__button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .news-slider__dot {
        width: 10px;
        height: 10px;
    }
}

/* Animation for slide transitions */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.news-slider__slide.active {
    animation: slideIn 0.5s ease forwards;
}

/* Responsive content */
.news-article__content {
    padding: var(--spacing-medium);
}

.news-article__title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-small);
}

@media (min-width: 768px) {
    .news-article__title {
        font-size: 2rem;
        margin-bottom: var(--spacing-medium);
    }
}

.news-article__excerpt {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-medium);
}

@media (min-width: 768px) {
    .news-article__excerpt {
        font-size: 1.1rem;
    }
}

/* Responsive category and link */
.news-article__category {
    font-size: 0.8rem;
    padding: 4px 8px;
}

.news-article__link {
    font-size: 0.9rem;
    padding: 8px 16px;
}

@media (min-width: 768px) {
    .news-article__category {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .news-article__link {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Touch-friendly adjustments for mobile */
@media (max-width: 767px) {
    .news-slider__button {
        background: rgba(0, 0, 0, 0.7); /* More visible on mobile */
    }
    
    .news-slider__dot {
        width: 12px; /* Larger touch targets */
        height: 12px;
    }
    
    .news-article__content {
        padding: var(--spacing-small);
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .nav-off-canvas__inner {
        width: 100%;
    }
    
    .nav-off-canvas__link {
        font-size: 1rem;
    }
}

/* TTU Menu Overlay */
.ttu-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #1a337ef2;
  backdrop-filter: blur(4px);
  display: none;
  align-items: stretch;
  justify-content: flex-start;
  transition: opacity 0.3s;
}
.ttu-menu-overlay.active {
  display: flex;
}
.ttu-menu-overlay__content {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: relative;
}
.ttu-menu-overlay__left {
  width: 420px;
  background: transparent;
  padding: 48px 40px 120px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #444 #222;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.ttu-menu-overlay__left::-webkit-scrollbar {
  width: 8px;
  background: #222;
}
.ttu-menu-overlay__left::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
.ttu-menu-overlay__left::-webkit-scrollbar-thumb:hover {
  background: #666;
}
.ttu-menu-overlay__logo {
  margin-bottom: 48px;
}
.ttu-menu-overlay__logo img {
  height: 60px;
  width: auto;
}
.ttu-menu-overlay__nav {
  width: 100%;
}
.ttu-menu-overlay__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ttu-menu-overlay__menu > li {
  margin-bottom: 32px;
}
.ttu-menu-overlay__menu > li > a,
.ttu-menu-overlay__menu > li > button.submenu-toggle {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
  display: block;
  text-align: left;
}
.ttu-menu-overlay__menu > li > a:hover,
.ttu-menu-overlay__menu > li > button.submenu-toggle:hover {
  color: #f9b233;
}
.has-submenu > .submenu-toggle[aria-expanded="true"]::after {
  content: "▲";
  margin-left: 12px;
  font-size: 1.1rem;
}
.has-submenu > .submenu-toggle[aria-expanded="false"]::after {
  content: "▼";
  margin-left: 12px;
  font-size: 1.1rem;
}
.submenu {
  display: none;
  margin-top: 12px;
  margin-left: 18px;
  padding-left: 12px;
  border-left: 2px solid #444;
}
.has-submenu.open > .submenu {
  display: block;
  animation: fadeIn 0.2s;
}
.submenu li {
  margin-bottom: 16px;
}
.submenu a,
.submenu button.submenu-toggle {
  font-size: 1.1rem;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
  text-align: left;
}
.submenu a:hover,
.submenu button.submenu-toggle:hover {
  color: #f9b233;
}
.ttu-menu-overlay__right {
  flex: 1;
}
.ttu-menu-overlay__close {
  position: absolute;
  top: 32px;
  right: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.ttu-menu-overlay__close:hover {
  color: #f9b233;
}
.ttu-menu-overlay__quicklinks {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a337ef2;
  border-top: 1px solid #333;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.05rem;
  z-index: 100;
}
.ttu-menu-overlay__quicklinks span {
  color: #f9b233;
  font-weight: 600;
  margin-right: 12px;
}
.ttu-menu-overlay__quicklinks a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-right: 18px;
  transition: color 0.2s;
}
.ttu-menu-overlay__quicklinks a:hover {
  color: #f9b233;
}
@media (max-width: 700px) {
  .ttu-menu-overlay__left {
    width: 100vw;
    padding: 32px 16px 100px 16px;
    height: 100vh;
  }
  .ttu-menu-overlay__close {
    right: 16px;
    top: 16px;
  }
  .ttu-menu-overlay__quicklinks {
    padding: 12px 8px;
    font-size: 0.98rem;
    gap: 12px;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Focus styles for accessibility */
.ttu-menu-overlay__menu a:focus, .ttu-menu-overlay__menu button:focus, .submenu a:focus, .submenu button:focus {
  outline: 2px solid #f9b233;
  outline-offset: 2px;
}

/* About TTU Section */
.about-ttu {
  background: #f8f9fa;
  padding: 64px 0 48px 0;
}
.about-ttu__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  padding: 0 24px;
}
.about-ttu__content {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 540px;
}
.about-ttu__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #1a1a1a;
  margin-bottom: 18px;
  font-weight: 700;
}
.about-ttu__excerpt {
  font-size: 1rem;
  color: #444;
  margin-bottom: 32px;
  line-height: 1.7;
  text-align: justify;
}
.about-ttu__readmore {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.08rem;
  padding: 10px 28px;
  border-radius: 24px;
}
.about-ttu__cards {
  flex: 1 1 340px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
  min-width: 280px;
}
.about-ttu__card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  min-height: 220px;
  position: relative;
  border: 1.5px solid #f9b23322;
}
.about-ttu__card:hover {
  box-shadow: 0 8px 32px rgba(249,178,51,0.13), 0 2px 16px rgba(0,0,0,0.10);
  transform: translateY(-6px) scale(1.04);
  border-color: #f9b23355;
}
.about-ttu__card-icon {
  font-size: 3.2rem;
  color: #f9b233;
  margin-top: 32px;
  margin-bottom: 18px;
  display: block;
  text-align: center;
}
.about-ttu__card-image { display: none; }
.about-ttu__card-icon-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 36px auto 18px auto;
  display: block;
  background: linear-gradient(135deg, #fffbe6 60%, #f9b23322 100%);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(249,178,51,0.10);
  padding: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-ttu__card:hover .about-ttu__card-icon-img {
  transform: scale(1.13) rotate(-6deg);
  box-shadow: 0 8px 32px rgba(249,178,51,0.18);
  background: linear-gradient(135deg, #fffbe6 40%, #f9b23344 100%);
}
.about-ttu__card-label {
  font-family: 'Inter', sans-serif;
  font-size: 1.13rem;
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 0 18px 0;
  text-align: center;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .about-ttu__wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .about-ttu__cards {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .about-ttu {
    padding: 36px 0 24px 0;
  }
  .about-ttu__wrapper {
    padding: 0 8px;
  }
  .about-ttu__cards {
    grid-template-columns: 1fr;
  }
  .about-ttu__card-image {
    height: 110px;
  }
}

/* About TTU Section Animations */
.about-ttu__content, .about-ttu__card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.about-ttu__content.animated, .about-ttu__card.animated {
  opacity: 1;
  transform: none;
}
.about-ttu__card {
  transition-delay: 0.2s;
}
.about-ttu__card.animated {
  transition-delay: var(--card-delay, 0s);
}

/* Alumni Spotlight Section */
.alumni-spotlight {
  background: #1a337e;
  padding: 100px 0 90px 0;
  position: relative;
  overflow: hidden;
}
.alumni-spotlight__background {
  width: 100vw;
  min-height: 520px;
  position: relative;
  z-index: 1;
}
.alumni-spotlight__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 520px;
  width: 100%;
  height: 70vh;
}
.alumni-spotlight__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  max-width: 600px;
  min-width: 340px;
  width: 100%;
  margin: 0;
  padding: 56px 36px 56px 36px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.alumni-spotlight__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #fdbb30;
  font-weight: 700;
  margin-bottom: 24px;
}
.alumni-spotlight__description {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 38px;
  line-height: 1.6;
}
.alumni-spotlight__floaters {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.alumni-floater {
  position: absolute;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.alumni-floater img {
  display: block;
  max-width: 170px;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  border: none;
  box-shadow: none;
  background: none;
  margin-bottom: 8px;
  border-radius: 0;
  transition: none;
}
.alumni-floater__caption {
  background: none;
  color: #fdbb30;
  font-size: 0.98rem;
  text-align: center;
  border-radius: 0;
  padding: 0;
  margin-top: 2px;
  box-shadow: none;
  font-weight: 500;
  line-height: 1.3;
}
.alumni-floater__caption span {
  display: block;
  color: #fff;
  font-size: 0.93em;
  font-weight: 400;
  margin-top: 2px;
}
@media (max-width: 1100px) {
  .alumni-floater img {
    max-width: 120px;
    max-height: 90px;
  }
  .alumni-floater[style*='left: 0'],
  .alumni-floater[style*='right: 0'] {
    left: 4% !important;
    right: 4% !important;
  }
  .alumni-floater[style*='left: 18%'],
  .alumni-floater[style*='right: 18%'] {
    left: 12% !important;
    right: 12% !important;
  }
}
@media (max-width: 900px) {
  .alumni-spotlight__center {
    max-width: 98vw;
    min-width: 0;
    padding: 24px 4vw 24px 4vw;
  }
  .alumni-floater img {
    max-width: 80px;
    max-height: 60px;
  }
  .alumni-floater[style*='left: 0'],
  .alumni-floater[style*='right: 0'] {
    left: 2% !important;
    right: 2% !important;
  }
  .alumni-floater[style*='left: 18%'],
  .alumni-floater[style*='right: 18%'] {
    left: 8% !important;
    right: 8% !important;
  }
}
@media (max-width: 600px) {
  .alumni-spotlight {
    padding: 24px 0 24px 0;
  }
  .alumni-spotlight__wrapper {
    min-height: 340px;
    height: auto;
  }
  .alumni-spotlight__center {
    padding: 10px 2vw 10px 2vw;
    border-radius: 0;
    font-size: 0.98rem;
  }
  .alumni-spotlight__title {
    font-size: 1.1rem;
  }
  .alumni-floater img {
    max-width: 54px;
    max-height: 38px;
  }
  .alumni-floater {
    position: static !important;
    display: inline-block;
    margin: 8px 4px;
    width: auto;
    height: auto;
    vertical-align: middle;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  .alumni-spotlight__floaters {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8px;
    margin-top: 8px;
  }
}

.alumni-floater, .alumni-spotlight__center {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.alumni-floater.animated, .alumni-spotlight__center.animated {
  opacity: 1;
  transform: none;
}
.alumni-floater {
  transition-delay: 0.2s;
}
.alumni-floater.animated {
  transition-delay: var(--alumni-delay, 0s);
}

/* Desktop & Tablet: Absolute positioning for alumni images */
@media (min-width: 600px) {
  .alumni-spotlight__floaters {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }
  .alumni-floater {
    position: absolute !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    z-index: 1;
    margin: 0 !important;
  }
  .alumni-floater img {
    max-width: 150px;
    max-height: 120px;
    width: auto;
    height: auto;
  }
}

/* Mobile: Stack images in two rows above and below the text */
@media (max-width: 599px) {
  .alumni-spotlight__floaters {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
  }
  .alumni-spotlight__floaters .alumni-floater {
    position: static !important;
    display: inline-flex;
    margin: 6px 4px !important;
    width: auto;
    height: auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  .alumni-spotlight__floaters .alumni-floater img {
    max-width: 54px;
    max-height: 38px;
  }
  .alumni-spotlight__floaters .alumni-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 0 4px 0;
  }
}

/* Central text always centered and with margin */
.alumni-spotlight__center {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  min-width: 240px;
  width: 100%;
  margin: 0;
  padding: 56px 36px 56px 36px;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 900px) {
  .alumni-spotlight__center {
    max-width: 98vw;
    min-width: 0;
    padding: 24px 4vw 24px 4vw;
  }
}
@media (max-width: 600px) {
  .alumni-spotlight__center {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto 12px auto;
    padding: 10px 2vw 10px 2vw;
    border-radius: 0;
    font-size: 0.98rem;
  }
  .alumni-spotlight__title {
    font-size: 1.1rem;
  }
}

@media (min-width: 900px) {
  .site-footer__row--main {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    padding: 48px 0 24px 0;
    overflow-x: auto;
  }
  .site-footer__col {
    flex: 1 1 0;
    min-width: 180px;
    max-width: 320px;
    margin-bottom: 0;
  }
  .site-footer__col--logo {
    min-width: 140px;
    max-width: 200px;
  }
}

/* TTU Key Highlights Section */
.ttu-highlights-section {
    padding: var(--spacing-xl) 0;
    background-color: #1a337e;
}

.ttu-highlights-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    position: relative;
}

.ttu-highlights-section__grid {
    display: flex;
    justify-content: flex-start; /* Align items to start for scrolling */
    align-items: flex-start;
    text-align: center;
    gap: 20px;
    flex-wrap: nowrap; /* Prevent wrapping for horizontal scroll */
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Smooth snapping to items */
    scroll-behavior: smooth; /* Smooth scroll on button click */
    -webkit-overflow-scrolling: touch; /* Improve scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
}

.ttu-highlights-section__grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.highlight-item {
    flex: 0 0 calc(33.33% - 20px); /* Show approximately 3 items with gap */
    min-width: 280px;
    padding: var(--spacing-medium);
    position: relative;
    scroll-snap-align: start; /* Snap to the start of each item */
}

.highlight-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%; /* Adjust to start after the number */
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 70%; /* Adjust height as needed for line */
    background-color: #FDBB30; /* Yellow/Gold for separator */
}

.highlight-item__value {
    font-family: 'Inter';
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff; /* Dark blue as requested */
    margin-bottom: var(--spacing-small);
}

.highlight-item__description {
    font-size: 1.1rem;
    color: #fdbb30;
    line-height: 1.4;
}

.highlight-item__source {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 5px;
}

.ttu-highlights-section__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: var(--spacing-large);
}

.ttu-highlights-section__button {
    background: none;
    border: 1px solid #fdbb30; /* Yellow/Gold border */
    color: #fdbb30; /* Yellow/Gold icon */
    border-radius: var(--border-radius);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.ttu-highlights-section__button:hover {
    background-color: #fdf302; /* Yellow/Gold hover background */
    color: #fdbb30; /* White text on hover */
}

.ttu-highlights-section__button i {
    font-size: 1.2rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .ttu-highlights-section__grid {
        flex-direction: row; /* Keep row for mobile slider */
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px; /* Add padding for scroll indicator if needed */
        justify-content: flex-start;
    }

    .highlight-item {
        flex: 0 0 80%; /* Show one item at a time on smaller mobile */
        max-width: 80%;
        min-width: unset; /* Remove min-width to allow shrinking */
        margin-bottom: 0;
    }

    .highlight-item:not(:last-child)::after {
        display: none; /* Hide vertical divider on mobile */
    }

    .ttu-highlights-section__nav {
        margin-top: var(--spacing-medium);
    }
}

@media (max-width: 480px) {
    .highlight-item {
        flex: 0 0 90%; /* Adjust for very small screens */
        max-width: 90%;
    }
    .ttu-highlights-section__value {
        font-size: 2.8rem;
    }

    .highlight-item__description {
        font-size: 1rem;
    }

    .ttu-highlights-section__button {
        width: 35px;
        height: 35px;
    }
}

/* TTU Call to Action Section */

.cc--full-width-cta {
    max-width: 1800px;
    margin: 0 auto;
    background: transparent; }
    .cc--full-width-cta .c--full-width-cta {
      padding-top: 3.25rem;
      padding-right: 6.25%;
      padding-bottom: 3.25rem;
      padding-left: 6.25%; }
      @media screen and (min-width: 768px) {
        .cc--full-width-cta .c--full-width-cta {
          padding-top: 4.5rem;
          padding-right: 2.08333%;
          padding-bottom: 4.25rem;
          padding-left: 2.08333%; } }
      @media screen and (min-width: 1024px) {
        .cc--full-width-cta .c--full-width-cta {
          padding-top: 5.8125rem;
          padding-right: 6.25%;
          padding-bottom: 5.6875rem;
          padding-left: 6.25%; } }
      .cc--full-width-cta .c--full-width-cta .header-container {
        margin-bottom: 1.75rem;
        text-align: center; }
        @media screen and (min-width: 768px) {
          .cc--full-width-cta .c--full-width-cta .header-container {
            margin-bottom: 3.125rem; } }
        @media screen and (min-width: 1024px) {
          .cc--full-width-cta .c--full-width-cta .header-container {
            margin-bottom: 3.125rem; } }
        .cc--full-width-cta .c--full-width-cta .header-container .f--section-title h2 {
          font-size: 2.25rem;
          line-height: 1;
          margin-bottom: 0;
          color: #1a337e; }
          @media screen and (min-width: 768px) {
            .cc--full-width-cta .c--full-width-cta .header-container .f--section-title h2 {
              font-size: 2.25rem;
              line-height: 1; } }
          @media screen and (min-width: 1024px) {
            .cc--full-width-cta .c--full-width-cta .header-container .f--section-title h2 {
              font-size: 3rem;
              line-height: 1.2917;
              margin-bottom: 0; } }
        .cc--full-width-cta .c--full-width-cta .header-container .f--description {
          margin-top: 1.75rem; }
          @media screen and (min-width: 1024px) {
            .cc--full-width-cta .c--full-width-cta .header-container .f--description {
              margin-top: 2.375rem; } }
          @media screen and (min-width: 1024px) {
            .cc--full-width-cta .c--full-width-cta .header-container .f--description {
              margin-top: 2.9375rem;
              padding-right: 16.66667%;
              padding-left: 16.66667%; } }
          .cc--full-width-cta .c--full-width-cta .header-container .f--description p {
            font-size: 1rem;
            line-height: 1.5;
            color: #000; }
            @media screen and (min-width: 768px) {
              .cc--full-width-cta .c--full-width-cta .header-container .f--description p {
                font-size: 1rem;
                line-height: 1.5; } }
          .cc--full-width-cta .c--full-width-cta .header-container .f--description a {
            color: #1a337e;
            font-family: inherit;
            font-size: inherit;
            line-height: inherit; }
            .cc--full-width-cta .c--full-width-cta .header-container .f--description a:hover {
              text-decoration: none; }
      .cc--full-width-cta .c--full-width-cta .links-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
        @media screen and (min-width: 768px) {
          .cc--full-width-cta .c--full-width-cta .links-container {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
                -ms-flex-direction: row;
                    flex-direction: row;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; } }
        @media screen and (min-width: 768px) {
          .cc--full-width-cta .c--full-width-cta .links-container .f--link {
            -ms-flex-preferred-size: 30.43478%;
                flex-basis: 30.43478%;
            -webkit-box-flex: 0;
                -ms-flex-positive: 0;
                    flex-grow: 0;
            -ms-flex-negative: 0;
                flex-shrink: 0; } }
        @media screen and (min-width: 1024px) {
          .cc--full-width-cta .c--full-width-cta .links-container .f--link {
            -ms-flex-preferred-size: 28.57143%;
                flex-basis: 28.57143%; } }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link:not(:last-child) {
          margin-bottom: 1.25rem; }
          @media screen and (min-width: 768px) {
            .cc--full-width-cta .c--full-width-cta .links-container .f--link:not(:last-child) {
              margin-right: 4.34783%;
              margin-bottom: 0; } }
          @media screen and (min-width: 1024px) {
            .cc--full-width-cta .c--full-width-cta .links-container .f--link:not(:last-child) {
              margin-right: 7.14286%; } }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link a {
          padding-right: 8.33333%;
          padding-left: 16.66667%;
          font-size: 1.875rem;
          line-height: 1;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          position: relative;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          width: 100%;
          height: 100%;
          color: #000;
          letter-spacing: -0.03313rem;
          text-align: center;
          text-decoration: none;
          text-transform: uppercase; }
          @media screen and (max-width: 767px) {
            .cc--full-width-cta .c--full-width-cta .links-container .f--link a {
              min-height: 6rem; } }
          @media screen and (min-width: 768px) {
            .cc--full-width-cta .c--full-width-cta .links-container .f--link a {
              padding-right: 7.14286%;
              padding-left: 14.28571%;
              min-height: 6rem; } }
          @media screen and (min-width: 1024px) {
            .cc--full-width-cta .c--full-width-cta .links-container .f--link a {
              padding-right: 8.33333%;
              padding-left: 16.66667%;
              font-size: 2.25rem;
              line-height: 1.3334;
              min-height: 9.375rem; } }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link a svg {
            position: absolute;
            top: calc(50% - 12px);
            left: -0.75rem;
            width: 1.5625rem;
            height: 1.5625rem;
            -webkit-transform: rotate(-45deg) translateY(calc(-50% + 12px));
                    transform: rotate(-45deg) translateY(calc(-50% + 12px));
            background-color: #FFF; }
            @media screen and (min-width: 1024px) {
              .cc--full-width-cta .c--full-width-cta .links-container .f--link a svg {
                top: calc(50% - 16px);
                left: -1rem;
                width: 3.125rem;
                height: 3.125rem; } }
          html[data-whatintent="mouse"] .cc--full-width-cta .c--full-width-cta .links-container .f--link a {
            -webkit-transition: all 0.1s;
            transition: all 0.1s; }
            html[data-whatintent="mouse"] .cc--full-width-cta .c--full-width-cta .links-container .f--link a:hover path {
              -webkit-transform: translate3d(0.375rem, 0.375rem, 0px);
                      transform: translate3d(0.375rem, 0.375rem, 0px); }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.lime {
          background-color: #1A337E; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.lime svg path {
            fill: #1A337E; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.blue {
          background-color: #00B3D8; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.blue svg path {
            fill: #00B3D8; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.green {
          background-color: #1a337e; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.green svg path {
            fill: #1a337e; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.yellow {
          background-color: #FDBB30; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.yellow svg path {
            fill: #FDBB30; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.beige {
          background-color: #DED5B4; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.beige svg path {
            fill: #DED5B4; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.tan {
          background-color: #CCAF74; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.tan svg path {
            fill: #CCAF74; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.moss {
          background-color: #73973F; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.moss svg path {
            fill: #73973F; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.red {
          background-color: #CD542C; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.red svg path {
            fill: #CD542C; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.orange {
          background-color: #FDBB30; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.orange svg path {
            fill: #FDBB30; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.gray {
          background-color: #919194; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.gray svg path {
            fill: #919194; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.turquoise {
          background-color: #d9261c; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.turquoise svg path {
            fill: #d9261c; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.purple {
          background-color: #A8228E; }
          .cc--full-width-cta .c--full-width-cta .links-container .f--link.purple svg path {
            fill: #A8228E; }
        .cc--full-width-cta .c--full-width-cta .links-container .f--link.green a {
          color: #FFF; }

.ttu-cta-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background-alt);
    text-align: center;
}

.ttu-cta-section__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.ttu-cta-section__title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a337e; /* Dark blue as requested */
    margin-bottom: var(--spacing-small);
}

.ttu-cta-section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-large);
}

.ttu-cta-section__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ttu-cta-button {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    height: 56px;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 220px;
    overflow: hidden;
    position: relative; /* For absolute positioning of arrow-tab */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Subtle shadow as in screenshot */
}

.ttu-cta-button:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* Slightly stronger shadow on hover */
}

.ttu-cta-button__arrow-tab {
    width: 60px; /* Adjust as needed for arrow width */
    height: 100%; /* Match button height */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove clip-path and transform properties */
    position: relative;
    overflow: hidden;
    margin-right: 0;
}

.ttu-cta-button__arrow-tab svg {
    height: 100%; /* Make SVG fill the container */
    width: auto;
    /* Adjust position if needed, e.g., to align the tip */
    position: absolute;
    left: -20px; /* Adjust this value to show the arrow tip correctly */
}

/* Remove obsolete i tag styles */
/* .ttu-cta-button__arrow-tab i { */
/*     font-size: 1.2rem; */
/*     color: white; */
/* } */

.ttu-cta-button span {
    color: black;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 20px; /* Adjust this value to separate text from arrow */
    padding: 0;
}

/* Assign main background colors to the button */
.ttu-cta-button--request-info {
    background-color: #8BC34A; /* Green */
}

.ttu-cta-button--request-info:hover {
    background-color: #689F38;
}

.ttu-cta-button--visit-ttu {
    background-color: #FF9800; /* Orange */
}

.ttu-cta-button--visit-ttu:hover {
    background-color: #FB8C00;
}

.ttu-cta-button--connect-admission {
    background-color: #00BCD4; /* Teal */
}

.ttu-cta-button--connect-admission:hover {
    background-color: #0097A7;
}

/* Mobile adjustments for CTA buttons */
@media (max-width: 768px) {
    .ttu-cta-button {
        width: 90%;
        max-width: 300px;
        height: 50px;
    }

    .ttu-cta-button__arrow-tab {
        width: 40px;
        /* clip-path: none; */
        /* transform: none; */
    }

    .ttu-cta-button__arrow-tab svg {
        left: -15px; /* Adjust for mobile */
    }

    /* Remove obsolete i tag styles */
    /* .ttu-cta-button__arrow-tab i { */
    /*     font-size: 1rem; */
    /* } */

    .ttu-cta-button span {
        font-size: 1rem;
        margin-left: 15px; /* Adjust for mobile */
    }
}

@media (min-width: 768px) {
    .ttu-cta-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .ttu-cta-button {
        width: 90%; /* Make buttons full width on mobile */
        max-width: 300px;
        justify-content: flex-start; /* Maintain arrow to the start */
    }
    
    .ttu-cta-button span {
        padding: 18px 10px 18px 10px; /* Adjust padding for text on mobile */
    }
} 

.majors-minors-section {
    background-color: #1a337e; /* Dark green background */
    position: relative;
    padding: 60px 0; /* Adjust padding as needed */
    overflow: hidden;
}

.majors-minors-section__arrow-indicator {
    position: absolute;
    top: -25px; /* Adjust to position the arrow correctly above the section */
    left: 50%;
    transform: translateX(-50%) rotate(180deg); /* Rotate 180 degrees to point down */
    width: 50px; /* Adjust size as needed */
    height: 50px;
    z-index: 10;
}

.majors-minors-section__arrow-indicator svg {
    width: 100%;
    height: 100%;
}

.majors-minors-section__arrow-indicator svg path {
    fill: #FDBB30; /* Yellow/Gold color for the arrow */
}

.majors-minors-section__wrapper {
    max-width: 1400px; /* Adjust max-width as per design */
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    display: flex;
    flex-direction: column; /* Stack columns by default for mobile */
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .majors-minors-section__wrapper {
        flex-direction: row; /* Side-by-side on desktop */
        justify-content: space-between;
        align-items: flex-start;
    }
}

.majors-minors-section__content-left {
    flex: 1;
    color: white;
    padding: 20px;
    position: relative;
    background-image: url('../images/student_background.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    min-height: 400px; /* Ensure content area has a height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.majors-minors-section__content-left h2 {
    font-family: 'Canela Web', serif;
    font-size: 3.5rem; /* Adjust font size for heading */
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.majors-minors-section__content-left p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: white;
    max-width: 600px; /* Limit paragraph width */
}

.majors-minors-section__programs-right {
    flex: 1;
    padding: 20px;
}

.majors-minors-section__programs-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.majors-minors-section__programs-right li {
    color: white;
    font-size: 1.5rem; /* Adjust font size for list items */
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 2px solid #FDBB30; /* Yellow/Gold underline */
    margin-bottom: 10px;
}

.majors-minors-section__programs-right li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .majors-minors-section {
        padding: 40px 0;
    }

    .majors-minors-section__content-left {
        min-height: 300px;
        text-align: center;
        align-items: center;
    }

    .majors-minors-section__content-left h2 {
        font-size: 2.5rem;
    }

    .majors-minors-section__content-left p {
        font-size: 1rem;
    }

    .majors-minors-section__programs-right li {
        font-size: 1.2rem;
    }
}



@media screen and (min-width: 768px) {
    .cc--text-and-link-listing .c--text-and-link-listing {
      margin-top: 2.1875rem; } }
  .cc--text-and-link-listing .c--text-and-link-listing .arrow {
    display: block;
    position: absolute;
    top: -0.8125rem;
    left: calc(6.25% + 0.375rem);
    width: 1.5625rem;
    height: 1.5625rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #FFF; }
    @media screen and (min-width: 768px) {
      .cc--text-and-link-listing .c--text-and-link-listing .arrow {
        top: -1.5625rem;
        right: 22.91667%;
        left: auto;
        width: 3.125rem;
        height: 3.125rem; } }

/* New Majors and Minors Section (cc--text-and-link-listing) */
.cc--text-and-link-listing {
    background-color: #1a337e; /* Dark green background */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.cc--text-and-link-listing .arrow {
    position: absolute;
    top: -25px; /* Position above the section */
    left: 50%;
    transform: translateX(-50%) rotate(180deg); /* Rotate to point down */
    width: 50px;
    height: 50px;
    z-index: 10;
}

.cc--text-and-link-listing .arrow path {
    fill: #FDBB30; /* Yellow/Gold color for the arrow */
}

.cc--text-and-link-listing .inner-container {
    max-width: 1400px; /* Adjust as per your site's main content width */
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    display: flex;
    flex-direction: column; /* Stack columns by default for mobile */
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .cc--text-and-link-listing .inner-container {
        flex-direction: row; /* Side-by-side on desktop */
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 calc(var(--spacing-medium) * 2);
    }
}

.cc--text-and-link-listing .text-container {
    flex: 1;
    color: white;
    padding: 20px 0;
    text-align: left;
    /* Adjust padding for background image area if needed */
}

.cc--text-and-link-listing .f--section-title h2 {
    font-family: 'Canela Web', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cc--text-and-link-listing .f--section-title .highlight {
    color: #FDBB30; /* Yellow/Gold for highlight */
}

.cc--text-and-link-listing .f--description p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: white;
    max-width: 600px; /* Limit paragraph width */
    margin-bottom: 0;
}

.cc--text-and-link-listing .links-container {
    flex: 1;
    padding: 20px 0;
    z-index: 22;
}

.cc--text-and-link-listing .links-container .column {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc--text-and-link-listing .f--link a {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 2px solid #FDBB30; /* Yellow/Gold underline */
    display: block; /* Make the border span full width */
    margin-bottom: 15px; /* Spacing between items */
}

.cc--text-and-link-listing .f--link:last-child a {
    border-bottom: none;
    margin-bottom: 0;
}

/* The problematic line: .cc--text-and-link-listing::after { */
.cc--text-and-link-listing::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(6, 0, 84, 0)), color-stop(55%, #1a337e));
    background: linear-gradient(90deg, rgba(0, 84, 60, 0) 0%, #1a337e 55%);
    content: '';
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .cc--text-and-link-listing {
        padding: 60px 0;
    }

    .cc--text-and-link-listing .text-container {
        text-align: center;
        align-items: center;
        padding: 20px;
    }

    .cc--text-and-link-listing .f--section-title h2 {
        font-size: 2.5rem;
    }

    .cc--text-and-link-listing .f--description p {
        font-size: 1rem;
    }

    .cc--text-and-link-listing .f--link a {
        font-size: 1.2rem;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .cc--text-and-link-listing .inner-container {
        padding: 0 var(--spacing-small);
    }

    .cc--text-and-link-listing .links-container {
        width: 100%;
        padding: 20px;
    }
}

/* Collaborations Section */
.collaborations-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background-alt); /* Light background for contrast */
}

.collaborations-section__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    text-align: center;
}

.collaborations-section__title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-large);
    text-align: center;
}

.collaborations-section__logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 30px;
    justify-items: center;
    align-items: center;
}

.collaboration-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Fixed height for consistent logo sizing */
    width: 100%;
}

.collaboration-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure logos fit within their containers */
    filter: grayscale(100%); /* Optional: Grayscale effect for uniformity */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.collaboration-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for collaborations section */
@media (max-width: 768px) {
    .collaborations-section__title {
        font-size: 2rem;
        margin-bottom: var(--spacing-medium);
    }

    .collaborations-section__logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .collaboration-logo-item {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .collaborations-section__title {
        font-size: 1.8rem;
    }

    .collaborations-section__logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

    .collaboration-logo-item {
        height: 70px;
    }
}

/* New Programs Section */
.new-programs-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background-alt);
    text-align: center;
}

.new-programs-section__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.new-programs-section__title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-large);
    text-align: center;
}

.new-programs-section__description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-large);
}

.new-programs-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.new-program-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.new-program-card__media {
    position: relative;
    margin-bottom: var(--spacing-medium);
}

.new-program-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.new-program-card__play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
    opacity: 0;
    transition: var(--transition-base);
    cursor: pointer;
}

.new-program-card__play-overlay:hover {
    opacity: 1;
}

.new-program-card__play-overlay i {
    font-size: 3rem;
    margin-bottom: var(--spacing-small);
}

.new-program-card__content {
    padding: var(--spacing-large);
}

.new-program-card__title {
    font-size: 1.5rem;
    font-family: 'Canela Web', serif;
    margin-bottom: var(--spacing-small);
}

.new-program-card__description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-medium);
}

.new-program-card__action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-medium);
}

.new-program-card__action .btn {
    flex: 1;
    margin-right: var(--spacing-small);
}

.new-program-card__action .btn:last-child {
    margin-right: 0;
}

.action-section {
    margin-top: 2rem;
}

/* New Programs Section Styling (moved from inline HTML) */
.program-category {
    margin-bottom: 1.5rem;
}

.program-category h3 {
    color: #FDBB30;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.program-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 0;
}

.program-list li {
    color: white;
    padding: 0.3rem 0;
    font-size: 1rem;
    line-height: 1.4;
}

.apply-button {
    display: inline-block;
    background-color: #FDBB30;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin: 1rem 0;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.apply-button:hover {
    background-color: #e6a920;
    transform: translateY(-2px);
}

.contact-info {
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info a {
    color: #FDBB30;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.action-section {
    margin-top: 2rem;
}

/* Social Media Section */
.social-media-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-background); /* Or a specific color for contrast */
    text-align: center;
}

.social-media-section__wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.social-media-section__title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-large);
}

.social-media-section__feeds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid for feeds */
    gap: 40px;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
}

.social-media-feed-item {
    background-color: #f0f2f5; /* Light background for embeds */
    border-radius: var(--border-radius);
    padding: 20px;
    min-height: 350px; /* Minimum height for better layout consistency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-media-feed-item p {
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
}

.social-media-feed-item a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.social-media-feed-item a:hover {
    text-decoration: underline;
}

/* Adjustments for Facebook embed */
.social-media-feed-item.facebook-feed iframe {
    width: 100% !important;
}

/* Responsive adjustments for social media section */
@media (max-width: 768px) {
    .social-media-section__title {
        font-size: 2rem;
    }

    .social-media-section__feeds {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 30px;
    }

    .social-media-feed-item {
        min-height: 300px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .social-media-section__title {
        font-size: 1.8rem;
    }

    .social-media-feed-item {
        min-height: 250px;
    }
}

/* ... existing code ... */
.site-footer__news-item--flex {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.site-footer__news-item--flex .site-footer__news-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.site-footer__news-item--flex .site-footer__news-figure {
  flex: 0 0 60px;
  margin: 0;
  height: 60px;
  width: 60px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__news-item--flex .site-footer__news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.site-footer__news-item--flex .site-footer__news-title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  flex: 1;
  padding-left: 4px;
  transition: color 0.2s;
}
.site-footer__news-item--flex .site-footer__news-link:hover .site-footer__news-title {
  color: #0056b3;
}
@media (max-width: 600px) {
  .site-footer__news-item--flex {
    gap: 8px;
    margin-bottom: 12px;
  }
  .site-footer__news-item--flex .site-footer__news-figure {
    flex-basis: 44px;
    height: 44px;
    width: 44px;
  }
  .site-footer__news-item--flex .site-footer__news-title {
    font-size: 0.95rem;
  }
}
/* ... existing code ... */

.about-ttu__card-icon-img[src*="69524.png"] {
  filter: brightness(0) saturate(100%) invert(81%) sepia(98%) saturate(749%) hue-rotate(1deg) brightness(104%) contrast(104%);
}