.row-peck-nel-mondo{
    margin-top: 40px;
    .header-section{
        h3{
            margin-bottom: 4px;
        }
        p{
            font-style: italic;
            font-weight: 500;
        }
    }
    .location-section{
        .stores-grid{
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            row-gap: 32px;
            column-gap: 40px;
        }
        h4{
            color: var(--marrone-peck-darker);
            padding-bottom: 8px;
            width: 100%;
            border-bottom: 1px solid var(--marrone-peck-darker);
            margin-bottom: 24px;
        }
        h5 {
            margin: 0;
        }
        h5 a{
            color: var(--marrone-peck-darker);
            text-decoration: none;
        }
        p{
            margin: 0;
            font-weight: 500;
        }
    }
}

@media (max-width: 640px) {
    .row-peck-nel-mondo{
        .location-section{
            .stores-grid{
                grid-template-columns: 1fr;
            }
        }
    }
}