.projects-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.list-section-header {
    font-size: 1.2rem;
    font-weight: normal;
    margin: 40px 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.project-list-item {
    display: flex;
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-list-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    flex-shrink: 0;
}

.project-list-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.project-list-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.project-list-info .subheading {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 15px 0;
    font-weight: normal;
    line-height: 1.4;
}

.project-list-info p {
    margin: 0 0 15px 0;
    color: #444;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
}

.project-link {
    margin: 10px 0 15px;
}

.project-link a {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.project-link a:hover {
    background: #333;
}

.project-duration {
    font-size: 0.8rem;
    color: #666;
    margin: 5px 0;
    font-style: italic;
}

.project-list-image-placeholder {
    width: 250px;
    height: 250px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    flex-shrink: 0;
}

.project-list-image-placeholder .placeholder-content {
    text-align: center;
    padding: 20px;
}

.project-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: auto;
    padding-top: 5px;
}

.project-group-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .project-list-item {
        flex-direction: column;
    }
    
    .project-list-image {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
} 