@charset "UTF-8";
/* CSS Document */

.highlights-section {
            text-align: center;
            margin: 30px auto;
            margin-bottom: -5px;
        }

        .scroll-arrows {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .highlights-container {
            display: flex;
            overflow-x: visible; /* Enable horizontal scroll */
			overflow-y: visible; /* ✅ was hidden before */
            gap: 15px;
            padding: 10px 0;
            scrollbar-width: thin; /* For modern browsers */
        }

        .highlights-container::-webkit-scrollbar {
            height: 6px;
        }

        .highlights-container::-webkit-scrollbar-thumb {
            background-color: #555;
            border-radius: 10px;
        }

        /* Highlights Item */
        .highlight-item {
            display: flex; /* Stack the thumbnail and caption vertically */
            flex-direction: column;
            align-items: center; /* Center the thumbnail and caption horizontally */
            width: 100; /* Match thumbnail width */
            margin: 0 -0; /* Add spacing between items */
            text-align: center;
            overflow: visible; /* ✅ allows hover scale to show fully */
           
            
            
        }

        /* Circular Thumbnail */
        .highlight-item img,
        .highlight-item video {
            width: 80px; /* Set thumbnail size */
            height: 80px;
            border-radius: 50%; /* Circular crop */
            object-fit: cover; /* Ensure media fits nicely */
            overflow: hidden;
			display: block; /* Ensure no extra bottom margin */
            border: 2px solid #00aaff; /* 🔵 Matches your link color */    
        }

        /* Hover effect for circular thumbnails */
        .highlight-item img:hover,
        .highlight-item video:hover {
            transform: scale(1.1); /* Slight zoom-in on hover */
            transition: transform 0.2s ease-in-out;
            
        }

        /* Captions */
        .highlight-caption {
            margin-top: 8px; /* Space between thumbnail and caption */
            font-size: 16px;
            color: #fff; /* White text for better visibility */
            font-weight: bold;
            text-align: center;
            
        }

        .scroll-arrow {
            visibility: hidden; /* Hide the arrows while keeping their space */
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 100;
            
        }

        .scroll-arrow:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        @media (max-width: 768px) {
            .highlight-item {
                width: 80px;
                height: auto;
            }
        }