.main-content {

    display: block;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
    
}

.projects-container {

    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;

}

.project-card {

    display: flex;
    align-items: stretch;
    gap: 50px;
    background: white;
    padding: 24px;
    margin-bottom: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 250px;

}

.project-card:hover {

    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);

}

.project-thumbnail {

    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;

}

.project-thumbnail img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.project-info {

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.project-title {

    font-size: 24px;
    margin: 0 0 12px 0;
    color: #212121;

}

.project-summary {

    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 16px 0;
    flex: 1;

}

.project-link {

    display: inline-block;
    font-size: 16px;
    color: #212121;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    align-self: flex-start;

}

.project-link:hover {

    color: #666;

}

@media (max-width: 768px) {

    body {

        overflow: auto;

    }

    .projects-container {
        padding: 20px 16px;

    }
    
    .project-card {

        flex-direction: column;
        gap: 16px;
        padding: 16px;
        position: relative;

    }
    
    .project-thumbnail {

        width: 100%;
        height: 200px;

    }
    
    .project-title {

        font-size: 20px;
        margin-bottom: 8px;

    }
    
    .project-summary {
        
        font-size: 14px;
        margin-bottom: 12px;

    }

    .project-link {
        display: block;
        width: fit-content;
        padding: 12px 0;
        margin-top: 8px;
        z-index: 100;
    }

        .project-info {
        position: relative;
        z-index: 1;
    }
}