.cine-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cine-description {
    max-width: 60%;
    margin: 0 auto 60px auto;
}

.cine-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 70px 30px;
    margin-bottom: 70px;
}

.project-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-align: center;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-poster {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 15px;
}

.project-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-credit {
    font-size: 13px;
    color: #666;
    text-align: center;
    margin: 0;
}

.project-year {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin: 4px 0 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 30px 20px;
    }

    .project-title {
        font-size: 14px;
        min-height: 35px;
    }

    .project-credit {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}