/* Aki Index — grade de lojas e restaurantes v1.0.0 */
.aki-section .aki-store-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.aki-section .aki-store-card {
    min-width: 0;
    height: 100%;
}

.aki-section .aki-store-logo {
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
}

.aki-section .aki-store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aki-section .aki-store-body,
.aki-section .aki-store-title {
    min-width: 0;
}

.aki-section .aki-store-title strong {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.aki-section .aki-store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
}

@media (max-width: 1180px) {
    .aki-section .aki-store-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .aki-section .aki-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .aki-section .aki-store-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aki-section .aki-store-logo {
        flex-basis: 82px;
        width: 82px;
        height: 82px;
    }
}
