:root {
            /* Blue, red & white theme to match logo */
            --primary-green: #1d1e58;    /* deep navy blue (used via .text-success, .bg-success overrides below) */
            --secondary-green: #e63946;  /* strong red accent */
            --light-green: #a8dadc;      /* light blue */
            --accent-green: #457b9d;     /* medium blue */
            --pale-green: #f1faee;       /* very light blue/white */
            --white: #ffffff;
            --light-bg: #f5f7ff;
            --dark-text: #0b1020;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .display-1, .display-2, .display-3, .display-4, .display-5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .lead {
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.6;
        }

        p {
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* Improved Typography */
        .fw-light { font-weight: 300; }
        .fw-normal { font-weight: 400; }
        .fw-medium { font-weight: 500; }
        .fw-semibold { font-weight: 600; }
        .fw-bold { font-weight: 700; }
        .fw-extrabold { font-weight: 800; }
        
        /* Custom animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes slideInLeft {
            from { transform: translateX(-100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes fadeInUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        @keyframes rotateIn {
            from { transform: rotate(-180deg) scale(0); opacity: 0; }
            to { transform: rotate(0) scale(1); opacity: 1; }
        }
        
        @keyframes shine {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        
        .animate-pulse {
            animation: pulse 2s ease-in-out infinite;
        }
        
        .shine-effect {
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            background-size: 200% 100%;
            animation: shine 3s infinite;
        }

        @keyframes blinkHighlight {
            0%, 49%, 100% {
                opacity: 1;
                box-shadow: 0 0 0 rgba(230, 57, 70, 0);
            }
            50%, 70% {
                opacity: 0.65;
                box-shadow: 0 0 14px rgba(230, 57, 70, 0.35);
            }
        }

        .main-service-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            background: var(--secondary-green);
            color: #fff;
            border-radius: 999px;
            padding: 0.35rem 0.75rem;
            margin-bottom: 0.9rem;
        }

        .blink-highlight {
            animation: blinkHighlight 1.1s infinite;
        }

        .featured-service-card {
            border: 2px solid rgba(230, 57, 70, 0.45) !important;
            background: linear-gradient(135deg, #ffffff 0%, #fff7f8 100%);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .featured-service-card .card-body {
            padding: 24px !important;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .featured-service-card .card-footer {
            margin-top: auto;
        }

        .featured-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 36px rgba(29, 30, 88, 0.22), 0 0 20px rgba(230, 57, 70, 0.28) !important;
        }

        .featured-service-card h4 {
            font-size: 1.15rem;
            letter-spacing: -0.01em;
            line-height: 1.35;
        }

        .featured-service-card p.text-muted {
            font-size: 0.98rem;
            line-height: 1.75;
        }

        .impact-stat-card {
            border: 1px solid rgba(29, 30, 88, 0.08);
            box-shadow: 0 8px 24px rgba(29, 30, 88, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%) !important;
        }

        .impact-stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(29, 30, 88, 0.15);
        }

        .stat-counter {
            font-variant-numeric: tabular-nums;
        }

        .newspaper-card,
        .news-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
            margin: 0;
        }

        .newspaper-card:hover,
        .news-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(29, 30, 88, 0.2);
        }

        .newspaper-lightbox-link,
        .gallery-lightbox-link {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .newspaper-lightbox-link:focus-visible,
        .gallery-lightbox-link:focus-visible {
            outline: 3px solid var(--secondary-green);
            outline-offset: 2px;
        }

        .news-card figcaption {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .support-note-card {
            background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
            border: 1px solid rgba(29, 30, 88, 0.12);
        }

        /* Override Bootstrap success utilities to use blue theme */
        .bg-success {
            background-color: var(--primary-green) !important;
        }
        .text-success {
            color: var(--primary-green) !important;
        }
        .border-success {
            border-color: var(--primary-green) !important;
        }
        .btn-success {
            background-color: var(--primary-green) !important;
            border-color: var(--primary-green) !important;
            color: #ffffff !important;
        }
        .btn-success:hover,
        .btn-success:focus {
            background-color: var(--accent-green) !important;
            border-color: var(--accent-green) !important;
            color: #ffffff !important;
        }
        .badge.bg-success {
            background-color: var(--primary-green) !important;
        }
        .text-warning {
            color: var(--secondary-green) !important; /* use red as warning accent */
        }
        .bg-warning {
            background-color: var(--secondary-green) !important;
            color: #ffffff !important;
        }
        .btn-warning {
            background-color: var(--secondary-green) !important;
            border-color: var(--secondary-green) !important;
            color: #ffffff !important;
        }
        .btn-warning:hover,
        .btn-warning:focus {
            background-color: #c1121f !important;
            border-color: #c1121f !important;
            color: #ffffff !important;
        }

        /* Custom cursor */
        .cursor-dot,
        .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            border-radius: 50%;
            pointer-events: none;
            z-index: 2000;
            transform: translate(-50%, -50%);
            transition: transform 0.12s ease-out, opacity 0.2s ease-out;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: var(--secondary-green); /* red accent from theme */
            mix-blend-mode: multiply;
        }

        .cursor-outline {
            width: 32px;
            height: 32px;
            border: 2px solid rgba(29, 30, 88, 0.8);
            box-shadow: 0 0 12px rgba(29, 30, 88, 0.4);
        }

        a:hover ~ .cursor-outline,
        button:hover ~ .cursor-outline {
            transform: translate(-50%, -50%) scale(1.2);
        }

        /* Hide custom cursor on touch devices */

        /* Footer Styles */
        footer {
            background: linear-gradient(135deg, #1d1e58 0%, #0b1020 100%);
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        }

        footer h5, footer h6 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        footer .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        footer .footer-link:hover {
            color: #ffffff;
            transform: translateX(5px);
            padding-left: 5px;
        }

        footer .social-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer .social-btn:hover {
            background-color: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
            border-color: var(--secondary-green);
        }

        footer .contact-item {
            color: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        footer .contact-item:hover {
            color: #ffffff;
        }

        footer .copyright {
            color: rgba(255, 255, 255, 0.6);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Video Player Styles */
        .video-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
            background: #000;
            max-width: 100%;
            height: auto;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-top: 75%; /* Taller aspect ratio for larger thumbnail */
            background: #000;
        }

        .video-wrapper video,
        .video-wrapper iframe,
        .youtube-embed-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            border-radius: 24px;
        }

        .youtube-embed-container {
            background: #000;
        }

        .video-thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            cursor: pointer;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .video-thumbnail:hover {
            transform: scale(1.02);
        }

        .video-thumbnail.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90px;
            height: 90px;
            background: rgba(230, 57, 70, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .play-button:hover {
            background: rgba(230, 57, 70, 1);
            transform: translate(-50%, -50%) scale(1.15);
            box-shadow: 0 20px 50px rgba(230, 57, 70, 0.7);
        }

        .play-button i {
            color: white;
            font-size: 2.2rem;
            margin-left: 5px;
        }

        .play-button {
            padding: 0;
        }

        .hero-badge {
            background: white;
            color: #000;
            border: 1.5px solid #000;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            display: inline-block;
            font-weight: 600;
            font-size: 0.85rem;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.3px;
        }

        .founder-box {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
        }

        .founder-box:hover {
            background: rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.25);
        }

        /* Hero Section Typography */
        .hero-title {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 1.25rem;
            letter-spacing: -0.5px;
        }

        .hero-quote {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .founder-name {
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .founder-desc {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        /* Responsive Hero Styles */

        .bg-gradient-light {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        /* Photo Gallery Grid System */
        .photo-gallery-grid,
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            align-items: stretch;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            align-items: stretch;
        }

        .gallery-item {
            position: relative;
            display: flex;
            width: 100%;
            min-width: 0;
            overflow: hidden;
            animation: fadeIn 0.5s ease;
        }

        .gallery-item.hidden {
            display: none;
        }

        .gallery-card {
            width: 100%;
            height: 100%;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            background: #f5f5f5;
            position: relative;
        }

        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 28px rgba(29, 30, 88, 0.16) !important;
        }

        .gallery-card .image-wrapper,
        .news-card .image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            height: auto;
            min-height: 0;
            overflow: hidden;
            border-radius: 14px;
            background: #f5f5f5;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .news-card .image-wrapper {
            border-radius: 12px 12px 0 0;
            flex-shrink: 0;
            cursor: pointer;
        }

        .gallery-lightbox-link,
        .newspaper-lightbox-link {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

        .gallery-lightbox-link:focus-visible {
            outline: 3px solid var(--secondary-green);
            outline-offset: 2px;
        }

        .gallery-card img,
        .news-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            display: block;
            transition: transform 0.4s ease;
            cursor: pointer;
            background-repeat: no-repeat;
        }

        .gallery-card img.img-fit-contain,
        .news-card img.img-fit-contain,
        .news-card img.img-fit-top {
            object-fit: cover;
            object-position: center center;
        }

        .gallery-card:hover img,
        .news-card:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            background: linear-gradient(135deg, rgba(29, 30, 88, 0.88) 0%, rgba(230, 57, 70, 0.88) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .news-card {
            width: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background: #f5f5f5;
        }

        .news-card img {
            transition: transform 0.4s ease;
        }

        .filter-btn {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(29, 30, 88, 0.2);
        }

        .filter-btn.active {
            background-color: var(--primary-green) !important;
            border-color: var(--primary-green) !important;
            color: white !important;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Lightbox Modal Styles */
        .lightbox-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .lightbox-modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            margin: auto;
            text-align: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 10000;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .lightbox-close:hover {
            background: rgba(230, 57, 70, 0.8);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            padding: 20px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10000;
        }

        .lightbox-nav:hover {
            background: rgba(230, 57, 70, 0.8);
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-prev {
            left: 30px;
        }

        .lightbox-next {
            right: 30px;
        }

        .lightbox-nav.disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Enhanced Responsive Design */
        
        /* Large Desktop (1400px and up) */

        /* Desktop (1200px - 1399px) */

        /* Tablet Landscape (992px - 1199px) */

        /* Tablet Portrait (768px - 991px) */

        /* Mobile Landscape (576px - 767px) */

        /* Mobile Portrait (up to 575px) */

        /* Extra Small Devices (up to 375px) */

        /* Print Styles */

        /* Accessibility Improvements */

        /* High Contrast Mode */

        /* Responsive Utilities */
        .responsive-text {
            font-size: clamp(0.875rem, 2vw, 1.05rem);
        }

        .responsive-heading {
            font-size: clamp(1.5rem, 4vw, 2.75rem);
        }

        /* Mobile Navigation Improvements */

        /* Touch-friendly buttons on mobile */

        /* Improved spacing on mobile */
    
.hero-image-banner .video-wrapper {
    padding-top: 75%;
}
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}
.page-hero-mini {
    background: linear-gradient(135deg, #1d1e58 0%, #0b1020 100%);
    padding: 4rem 0 3rem;
    color: #fff;
}

/* Founder page */
.page-hero {
    background: linear-gradient(135deg, #1d1e58 0%, #0b1020 100%);
    padding: 5rem 0 4rem;
    color: #fff;
}
.founder-portrait {
    width: 220px; height: 220px; object-fit: cover;
    border: 5px solid var(--secondary-green);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.stat-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}
.achievement-card, .award-card, .mission-card {
    border: 0; border-radius: 20px;
    box-shadow: 0 8px 30px rgba(29,30,88,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.achievement-card:hover, .award-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(29,30,88,0.18); }
.achievement-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem;
}
.timeline-item {
    border-left: 3px solid var(--secondary-green);
    padding-left: 1.5rem; margin-bottom: 2rem; position: relative;
}
.timeline-item::before {
    content: ''; position: absolute; left: -9px; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--secondary-green);
    border: 3px solid #fff; box-shadow: 0 0 0 2px var(--secondary-green);
}
.impact-img { border-radius: 16px; object-fit: cover; width: 100%; height: 240px; }
.quote-block {
    border-left: 4px solid var(--secondary-green);
    background: var(--light-bg);
    border-radius: 0 16px 16px 0;
    padding: 1.5rem 2rem;
}
.media-thumb { border-radius: 12px; object-fit: cover; height: 180px; width: 100%; cursor: pointer; transition: transform 0.3s; }
.media-thumb:hover { transform: scale(1.03); }
.breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-item.active { color: #fff; }

/* Media coverage page */
.filter-btn {
    border-radius: 50px; padding: 0.5rem 1.25rem; font-weight: 600; font-size: 0.9rem;
    border: 2px solid var(--primary-green); color: var(--primary-green); background: #fff; transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary-green); color: #fff; }
.media-card {
    border: 0; border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(29,30,88,0.1);
    transition: transform 0.3s, box-shadow 0.3s; height: 100%; cursor: pointer;
}
.media-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(29,30,88,0.18); }
.media-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; transition: transform 0.5s; }
.media-card:hover img { transform: scale(1.03); }
.media-card .card-body { padding: 1.25rem; }
.media-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.3rem 0.75rem; border-radius: 50px; }
.tag-newspaper { background: rgba(29,30,88,0.1); color: var(--primary-green); }
.tag-field { background: rgba(69,123,157,0.15); color: var(--accent-green); }
.tag-video { background: rgba(230,57,70,0.12); color: var(--secondary-green); }
.press-summary { background: var(--light-bg); border-radius: 20px; border-left: 4px solid var(--secondary-green); }
.media-item { display: block; }
.media-item.hidden { display: none; }
