.projects-grid-7f313e5c {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767px) {
    .projects-grid-7f313e5c {
        grid-template-columns: 1fr;
    }
}

.project-card-7f313e5c {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.project-card-7f313e5c:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.project-thumbnail-7f313e5c img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.project-content-7f313e5c {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title-7f313e5c {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.project-title-7f313e5c a {
    text-decoration: none;
    color: #333;
}

.project-title-7f313e5c a:hover {
    color: #000;
}

.project-category-7f313e5c {
    font-size: 0.875rem;
    color: #777;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.project-excerpt-7f313e5c {
    margin-bottom: 16px;
    flex-grow: 1;
    color: #555;
    line-height: 1.5;
}

.project-link-7f313e5c {
    align-self: flex-start;
    font-weight: 600;
    text-decoration: none;
    color: #0073aa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-link-7f313e5c svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.project-link-7f313e5c:hover {
    text-decoration: underline;
}