/* Work page specific styles */
.work-header {
}

/* Projects Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.project-item {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #0A0A0A;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: scale(1.02);
}

.project-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Center content div and reduce gap on mobile */
    .swiper-slide .font-inter-black {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .swiper-slide .knockout-text {
        text-align: center;
    }
}