/* Highlights Section */
.featured-section {
    padding: 4rem 0;
}

.featured-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-blue);
    font-family: 'Orbitron', sans-serif;
}

.featured-section .highlights-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.featured-section .highlight-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-section .highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.featured-section .highlight-item.reverse {
    direction: rtl;
}

.featured-section .highlight-item.reverse .highlight-content {
    direction: ltr;
}

.featured-section .highlight-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
}

.featured-section .highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-section .highlight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.featured-section .highlight-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.featured-section .highlight-content p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .featured-section .highlight-item {
        grid-template-columns: 1fr;
    }
    
    .featured-section .highlight-image {
        height: 300px;
        min-height: auto;
    }
    
    .featured-section .highlight-item.reverse {
        direction: ltr;
    }
}
