.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 24px;
    margin: 32px 0 56px;
}

.shops-card {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 155px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #dce9df;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(16, 65, 40, 0.08);
}

.shops-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    background: #e8f5eb;
    border-radius: 16px;
    font-size: 32px;
}

.shops-card__body {
    min-width: 0;
}

.shops-card h2 {
    margin: 0 0 12px;
    color: #153d2c;
    font-size: 1.4rem;
    line-height: 1.3;
}

.shops-card p {
    margin: 0;
    color: #52665a;
    font-size: 1rem;
}

@media (max-width: 520px) {
    .shops-grid {
        gap: 14px;
    }

    .shops-card {
        padding: 20px;
        min-height: 125px;
        gap: 16px;
    }

    .shops-card__icon {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
        font-size: 26px;
    }
}
