.projects .project {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: inherit;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    border: 1px solid #f0f0f0;
}

.projects .project img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}

@media (max-width: 500px) {
    .projects .project img {
        width: 40px;
        height: 40px;
    }
}

.project:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: solid 1px #ddd;
}

.projects a {
    display: block;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}