.mia-projects {
    padding: 24px 0;
}

.mia-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mia-projects__item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ecedf1;
    box-shadow: 0 1px 3px rgba(20, 20, 43, 0.04);
    transition: box-shadow .2s ease, transform .2s ease;
}

.mia-projects__item:hover {
    box-shadow: 0 8px 20px rgba(20, 20, 43, 0.08);
    transform: translateY(-2px);
}

.mia-projects__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mia-projects__image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f5f8;
}

.mia-projects__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.mia-projects__item:hover .mia-projects__image {
    transform: scale(1.04);
}

.mia-projects__image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mia-projects__info {
    padding: 14px 16px 16px;
}

.mia-projects__title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    color: #14142b;
}

.mia-projects__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: #8b8d98;
}

.mia-projects__photos,
.mia-projects__location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mia-projects__photos-icon,
.mia-projects__location-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: #8b8d98;
}

.mia-projects__photos-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 3l-1.8 2H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-3.2L15 3H9zm3 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 3l-1.8 2H4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-3.2L15 3H9zm3 15a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.mia-projects__location-icon {
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") no-repeat center / contain;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") no-repeat center / contain;
}

@media (max-width: 991px) {
    .mia-projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .mia-projects__grid {
        grid-template-columns: 1fr;
    }
}