/* thesis page styles (extracted from inline <style>, tokenized for theming) */
.thesis-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
            url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 8rem 2rem;
            margin-bottom: 3rem;
        }

        .thesis-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
        }

        .thesis-year {
            color: var(--heading);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border);
        }

        .thesis-category {
            font-size: 1.3rem;
            color: var(--text);
            margin: 2rem 0 1rem;
            font-weight: 600;
        }

        .thesis-item {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background: var(--surface);
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .thesis-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .thesis-title {
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 0.5rem;
        }

        .thesis-author {
            color: #7f8c8d;
            margin-bottom: 0.5rem;
            font-style: italic;
        }

        .thesis-meta {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .thesis-link {
            display: inline-block;
            margin-top: 0.5rem;
            color: var(--heading);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .thesis-link:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

        .thesis-link i {
            margin-left: 0.3rem;
            font-size: 0.8em;
        }

        @media (max-width: 768px) {
            .thesis-container {
                padding: 0 1rem 3rem;
            }

            .thesis-hero {
                padding: 5rem 1rem;
            }
        }

        /* Footer two-column layout */
        .footer-links-container {
            display: flex;
            gap: 2rem;
        }

        .footer-links-column {
            margin: 0;
            padding: 0 0 0 1.5rem;
            list-style: disc;
        }

        @media (max-width: 768px) {
            .footer-links-container {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .screenshot-gallery {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .screenshot-gallery {
                grid-template-columns: 1fr;
                max-width: 100%;
            }
        }
