/* 2. Location Cards Grid Container */
.field--name-field-carts-location .field__items {
    display: flex ;
    flex-wrap: wrap ;
    gap: 2rem ;
}

.field--name-field-description-cart-location p {
    margin-bottom: 0.5rem ;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .field--name-field-carts-location .field__item {
        flex: 1 1 calc(50% - 2rem) ;
    }
}

@media (max-width: 768px) {
    .field--name-field-carts-location .field__item {
        flex: 1 1 100% ;
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .field--name-field-title-location {
        font-size: 2rem ;
    }

    /* .paragraph--type--location {
        padding: 4rem 1.5rem ;
    } */
}