/* PROJECT CARDS */
.project-grid {
    display: grid;
    gap: 25px;
}

.project-card {
    position: relative;
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.35)
    );
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 25px;
    color: white;
}

.project-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* PROJECT LINKS */
.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
}