*, *::before, *::after {
            box-sizing: border-box;
        }

        html, body {
            max-width: 100%;
            overflow-x: hidden; /*Force hide horizontal scrollbar*/
            margin: 0;
            padding: 0;
            width: 100%;
        }

		

        /* ==========================================================================
           1. CONFLICT RESOLUTION (SUB-PAGE OVERRIDES)
           ========================================================================== */
        html { height: 100%; }

        body {
            /* Force Standard Layout (Overrides moments.css black theme) */
            color: #000 !important; 
            font-family: 'Montserrat', sans-serif;
            
            /* Sticky Footer Setup */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #0f2439;
            position: relative;
        }

        /* Fix Link Colors */
        #main-wrapper a:not(.btn) {
            color: #003366; 
            text-decoration: underline;
        }

        /* Clean up Typography */
        h1, h2, h3, h4, h5, h6 {
            text-shadow: none !important;
            color: #000 !important;
        }


        /* ==========================================================================
           2. HEADER & NAVIGATION
           ========================================================================== */
        .header {
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 80px; 
            width: 100%; /* With box-sizing: border-box, padding won't expand this */
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0);
        }

        /* Fix Logo Positioning */
        .header .site-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            position: static !important; 
            text-shadow: none !important;
    		margin-top: 15px;
        }

        /* Block U Logo */
        .logo-mark {
            height: 50px;
            padding-right: 15px;
            border-right: 2px solid #a8b4c1;
            width: auto;
            display: inline-block !important; 
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Wordmark Logo */
        .logo-wordmark {
            height: 24px;
            width: auto;
            display: block; 
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            /* CHANGED: Fixed positioning to stay on screen while scrolling */
            position: fixed;
			border: none;
			background: none;
            top: 25px; /* Aligns vertically with the 80px header (80-40)/2 */
            right: 25px; /* Matches header padding */
            width: 40px; height: 40px;
            display: flex; flex-direction: column;
            justify-content: center; align-items: center;
            cursor: pointer; gap: 6px;
            z-index: 1001;
        }

        .hamburger-menu .bar {
            width: 30px; height: 3px;
            background-color: #fff;
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger-menu.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
        .hamburger-menu.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        /* Full Screen Navigation Overlay */
        .nav-overlay {
            position: fixed; 
            top: 0; left: 0;
            width: 100%; 
            height: 100%; 
            background-color: rgba(0, 0, 0, 0.7);
			backdrop-filter: blur(10px);
            z-index: 999;
            display: flex; justify-content: center; align-items: center;
            clip-path: circle(35px at calc(100% - 45px) 45px);
            pointer-events: none;
            transition: clip-path 0.7s cubic-bezier(0.83, 0, 0.17, 1);
        }
        
        .nav-overlay.open {
            clip-path: circle(150vmax at calc(100% - 60px) 40px);
            pointer-events: all;
        }

        .nav-links { list-style: none; padding: 0; margin: 0; text-align: center; }
        
        .nav-links > li {
            margin: 20px 0; opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        
        .nav-overlay.open .nav-links > li { opacity: 1; transform: translateY(0); }
        .nav-overlay.open .nav-links > li:nth-child(1) { transition-delay: 0.2s; }
        .nav-overlay.open .nav-links > li:nth-child(2) { transition-delay: 0.3s; }
        .nav-overlay.open .nav-links > li:nth-child(3) { transition-delay: 0.4s; }
        .nav-overlay.open .nav-links > li:nth-child(4) { transition-delay: 0.5s; } /* For Explore */

        /* Link Styles */
         .nav-links a, .dropdown-toggle-moments {
            color: #fff;
            text-decoration: none;
			border: none;
			background: none;
            font-size: 2rem;
            font-weight: 700;
            transition: color 0.3s ease;
            cursor: pointer;
        }

		button.dropdown-toggle-moments:focus, button.hamburger-menu:focus  {
		outline:none;
		}
        
        .dropdown-toggle-moments::after {
            content: ' ▼';
            font-size: 0.7em;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        .nav-links a:hover,
        .dropdown-toggle-moments:hover { color: #3498db; }

        /* Dropdown Specific Styles */
        .dropdown-menu-moments {
            display: none; /* Hidden by default */
            list-style: none;
            padding: 0;
            margin-top: 10px;
            text-align: center;
        }
        
        /* Inner Links */
        .dropdown-menu-moments a {
            font-size: 1.5rem; /* Smaller than main links */
            font-weight: 400;
        }      

        /* Open State */
        .dropdown.open .dropdown-menu-moments {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        .dropdown.open .dropdown-toggle-moments::after {
            transform: rotate(180deg);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ==========================================================================
           3. FOOTER & WRAPPER
           ========================================================================== */
        #main-wrapper {
            flex: 1 0 auto; 
            margin-top: 80px; 
            width: 100%;
           /* background-color: #fff !important; */
        }
		

       /* :root {
            --usu-blue: #0f2439;
            --scout-hover: #eaeaea;
        }*/
        
        /* --- TIMELINE SECTION STYLES --- */
        .timeline-section {
            height: 100vh;
            /* Use dvh for mobile address bar support */
            height: 100vh; 
            width: 100%;
            overflow: hidden;
            background-color: #f4f4f4;
            display: flex;
            align-items: center;
            position: relative;
        }

        .timeline-wrapper {
            display: flex;
            flex-wrap: nowrap;
            height: 100%;
            padding-left: 5vw; /* Start slightly indented */
            /* Ensure this doesn't cause overflow on load */
            box-sizing: border-box; 
        }

        .timeline-slide {
            width: 80vw; /* Shows part of the next slide to encourage scrolling */
            height: 100%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            box-sizing: border-box;
        }

        .slide-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            max-width: 1200px;
            width: 100%;
        }

        @media (min-width: 992px) {
            .slide-content {
                flex-direction: row;
                align-items: center;
            }
        }

        .slide-year {
            font-size: 8rem;
            font-weight: 900;
            color: rgba(15, 36, 57, 0.65);
            position: absolute;
            top: 10%;
            left: 5%;
            z-index: 0;
            line-height: 1;
        }

        .slide-image {
            flex: 1;
            z-index: 1;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .slide-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .slide-text {
            flex: 1;
            z-index: 1;
            padding: 2rem;
            background: rgba(255,255,255,0.9);
            border-radius: 8px;
            border-left: 4px solid #0F2439;
        }

        /* --- JOIN CONVERSATION STYLES --- */
        .conversation-section {
            padding: 5rem 0;
            background: #fff;
        }

        .section-header {
            margin-bottom: 3rem;
            border-bottom: 2px solid #000;
            padding-bottom: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            flex-wrap: wrap; /* Fix for mobile wrap */
            gap: 1rem;
        }

        .topic-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .topic-item {
            border-top: 1px solid #ddd;
            padding: 1.5rem 0;
            transition: background-color 0.3s ease;
        }

        .topic-item:hover {
            background-color: var(--scout-hover);
        }

        .topic-item:last-child {
            border-bottom: 1px solid #ddd;
        }

        .topic-meta {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 0.5rem;
        }

        .topic-date {
            font-weight: 700;
            color: #000;
            margin-right: 1rem;
        }

        .topic-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #000;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
        }

        .read-thread {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.8rem;
            color: var(--usu-blue);
            text-decoration: none;
            position: relative;
        }

        .read-thread::after {
            content: '→';
            margin-left: 5px;
            transition: margin-left 0.2s ease;
        }

        .topic-item:hover .read-thread::after {
            margin-left: 10px;
        }

        /* --- STORIES SECTION STYLES --- */
        .stories-section {
            padding: 5rem 0;
            background-color: #f4f4f4;
        }
        .stories-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0f2439;
            border-top: 4px solid #0f2439;
            padding-top: 1rem;
            display: inline-block;
            margin-bottom: 2rem;
        }
        .story-card {
            background: #fff;
            margin-bottom: 30px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: calc(100% - 30px); /* Adjust for margin bottom */
            display: flex;
            flex-direction: column;
        }
        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .story-img {
            height: 240px;
            width: 100%;
            overflow: hidden;
        }
        .story-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .story-card:hover .story-img img {
            transform: scale(1.05);
        }
        .story-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .story-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #666;
            margin-bottom: 0.5rem;
        }
        .story-heading {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #000;
            line-height: 1.3;
        }
        .story-link {
            margin-top: auto;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            color: #0f2439;
            text-decoration: none;
        }
        .story-link:hover {
            text-decoration: underline;
        }

 		/* News Section */
        .news-section {
            background-color: #f4f4f4;
            position: relative;
            overflow: hidden;
            z-index: 2; 
        }

        .news-card-wrapper {
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .news-card-wrapper:hover {
            transform: translateY(-5px);
        }

        /* --- New Staggered Image & Video Section --- */
        .image-video-section {
            position: relative;
            padding: 6rem 0;
            overflow: hidden;
        }

        .staggered-wrapper {
            position: relative;
            z-index: 2;
        }

        .staggered-image-container {
            position: relative;
            z-index: 1;
        }

        .staggered-image-container img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            /* Ensure object-fit isn't needed since we use img tag */
        }

        .staggered-video-container {
            position: relative;
            z-index: 5; /* Sit on top of image */
        }

        .video-box {
            background: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            aspect-ratio: 16/9;
            width: 100%;
            /* Border to separate from dark background or image */
            border: 1px solid rgba(255,255,255,0.1);
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Montserrat', sans-serif;
            background: rgba(0,0,0,0.4);
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIi8+PC9zdmc+'); /* Subtle pattern */
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            color: #0f2b4c;
        }

        /* Footer Styles */
        .site-footer {
            background-color: #0f2439;
            padding: 2rem 0;
            width: 100%;
        }
        .footer-container {
            display: flex;
            align-items: center;
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 15px;
			justify-content: center;
        }
        .footer-links a {
            color: #fff;
            margin-left: 15px;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-logo img {
        	width:180px;
        }

		/* Desktop: Staggered Layout */
        @media (min-width: 992px) {
            .staggered-wrapper {
                display: flex;
                flex-direction: row;
                align-items: flex-start;
            }
            
            .staggered-image-container {
                width: 65%; /* Takes up left 65% */
                margin-right: -10%; /* Negative margin allows overlap */
            }
            
            .staggered-video-container {
                width: 45%; /* Takes up right portion */
                margin-top: 15%; /* Push down to stagger vertically */
                margin-right: 2%; /* padding from right edge */
            }
        }

 		/* Mobile/Tablet: Stacked Layout */
        @media (max-width: 991px) {
            .staggered-wrapper {
                display: block;
            }
            .staggered-image-container {
                width: 100%;
                margin-bottom: 2rem;
            }
            .staggered-video-container {
                width: 100%;
                margin-top: -3rem; /* Slight overlap upwards for style */
                padding-left: 2rem; /* Indent slightly */
            }
        }
		
		 /* Mobile (Max-width 768px) */
        @media (max-width: 768px) {
            .header { padding: 0 20px; }
            
            /* Adjust Hamburger and Overlay for Mobile Padding */
            .hamburger-menu { right: 20px; }
            
            /* Hide Wordmark & Divider */
            .logo-mark { 
                height: 40px; 
                border-right: none; 
                padding-right: 0; 
            }
            .logo-wordmark { display: none; }

            /* Stack Footer */
            .footer-container { flex-direction: column; gap: 30px; text-align: center;}
            .footer-links { display: flex; flex-direction: column; gap: 15px; }
            .footer-links a { margin-left: 0; }

            /* Re-align Menu Circle: Right 40px, Top 40px */
            .nav-overlay { clip-path: circle(30px at calc(100% - 40px) 45px); }
            .nav-overlay.open { clip-path: circle(150vmax at calc(100% - 40px) 45px); }
			
			.slide-year {
				font-size: 3rem;
				font-weight: 900;
				color: rgba(15, 36, 57, 0.65);
				position: absolute;
				top: 5%;
				left: 5%;
				z-index: 3;
				line-height: 1;
			}

            .slide-text {
                padding: 1rem;
            }
            
            /* Ensure headings don't overflow */
            h1.text-white {
                font-size: 2.5rem;
                word-wrap: break-word;
            }

            .stories-title {
                margin-bottom: 1.5rem;
            }
			
			.video-links {
                flex-direction: column;
                align-items: center;
                margin-top: 30px !important;
                width: 90%;
            }
            .video-links a {
                width: 100%;
                text-align: center;
                box-sizing: border-box;
            }
        }

 		/* Small Mobile */
        @media (max-width: 576px) {
            .staggered-video-container {
                margin-top: 2rem; /* No overlap on very small screens */
                padding-left: 0;
            }
        }


		/* ==========================================================================
           4. PAGE CONTENT
           ========================================================================== */

		.hero-banner {
		position: relative;
		display: flex;
		background-color: #111111;
		}
		.hero-bottom {
			display: flex;
			position: absolute;
			width: 100%;
			height: 100%;
			justify-content: center;
			align-items: flex-end;
			background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 80% 100%, rgba(0, 0, 0, 0));
			z-index: 2;
		}		
		.hero-banner img {
			display: flex;
			/* overflow: visible; */
			z-index: 1;
			width: 100%;
		}
		.img-fluid {
			max-width: 100%;
			height: auto;
		}

		img {
			vertical-align: middle;
			border-style: none;
		}
 		.video-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0px;
            max-width: 1200px;
        }

        .video-container {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .video-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: -30px;
            position: relative;
            z-index: 2;
        }

		/* --- UNIFIED BUTTON STYLING --- */
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            border: 2px solid #fff;
            color: #fff;
            background-color: transparent;
            text-decoration: none;
            border-radius: .25rem;
            font-weight: 700;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: color 0.4s ease-in-out;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #3498db;
            transform: translateX(-101%);
            transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
            z-index: -1;
        }
        .cta-button:hover {
            color: #fff;
			text-decoration: none !important;
        }
        .cta-button:hover::before {
            transform: translateX(0);
        }
        .video-links .cta-button {
            background-color: #fff;
            color: #1a1a1a;
			text-decoration: none !important;
        }