.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 20px;
}

.project-block {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(138, 92, 255, 0.147);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-block:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
    text-align: center;
}

.project-info h3 {
    color: #6b629d;
    margin: 0 0 10px 0;
    font-size: 1.2em;
    font-weight: 500;
}

.project-info p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Project detail page styles */
.project-detail {
    grid-column: 1 / -1;  /* Make it span all columns */
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(138, 92, 255, 0.147);
    padding: 10px 30px 30px 30px;
}

.project-detail h2 {
    color: #6b629d;
    margin-bottom: 20px;
    font-weight: 350;
}

.project-detail h2 {
    color: #6b629d;
    margin-bottom: 20px;
}
.project-detail p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}