.shops-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.shop-card {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    height: 100%;
    border-radius: 0.75rem;
    background-color: white;
}

.shop-card-inner:hover .shop-card-header > p {
    color: #2f6e94;
}

.shop-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 0.45rem;
    border: 2px solid #CFDCEC;
    border-radius: 0.6rem;
    padding: 1rem 1.05rem 0.95rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.shop-card-inner:hover {
    transform: translateY(-2px);
    border-color: #aac6e3;
    box-shadow: 0 12px 28px rgba(47, 110, 148, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f2f8fe 100%);
}

.shop-card-header > p {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.3;
    transition: color 0.22s ease;
}

.shop-card-header > p img {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
}

.shop-card-body {
    color: #4f5d6b;
    line-height: 1.65;
}

.shop-card-body > :first-child {
    margin-top: 0;
}

.shop-card-body > :last-child {
    margin-bottom: 0;
}

.shop-card .read-more-button {
    margin-top: 0;
    margin-right: 0.75rem;
    margin-bottom: 0.85rem;
    margin-left: 0.75rem;
    align-self: flex-start;
    transition: color 0.22s ease, transform 0.22s ease;
}

@media (min-width: 768px) {
    .shops-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.35rem;
    }

    .shop-card {
        gap: 0.8rem;
        border-radius: 0.9rem;
    }

    .shop-card-inner {
        border-radius: 0.75rem;
        padding: 1.15rem 1.2rem 1.05rem;
    }

    .shop-card .read-more-button {
        margin-right: 0.9rem;
        margin-bottom: 1rem;
        margin-left: 0.9rem;
    }
}
