.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two-column layout */
    gap: 20px; /* Space between the columns */
}

.project-item {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px; /* Adjust height as needed */
    border-radius: 10px;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%; /* Make the gradient cover the full height */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0)); /* Bottom to top gradient */
    z-index: 1;
}

.project-title {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 16px;
    z-index: 2;
    text-align: center;
    line-height: 25px;
    font-weight: 600;
    border-bottom: 2px solid #a30601;
    padding-bottom: 20px;
}