
.work-examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    .work-examples-grid {
        grid-template-columns: 1fr;
    }
}

.work-example-item {
    text-align: center;
}

.work-example-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.work-example-image:hover {
    transform: scale(1.1);
}

.work-example-title {
    margin-top: 10px;
    font-size: 18px;
    color: #000000;
}