.content-wrap {
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.red-line {
    height: 3px;
    background-color: red;
    width: 4%;
    margin: 20px 0;
}

.storeLocationCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    padding: 20px;
}

.location-section-container {
    background-color: #e2e2e2;
    padding: 50px;

}

.location-card {
    background-color: white;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #bd2233; 


}

.location-card h3{
 font-weight: bold;

}

.location-card:hover {
    box-shadow: 0px 5px 10px rgba(255, 21, 21, 0.2);
    transform: scale(1.02)
}

/* ------------------------------------ Mobile Responsiveness Start ------------------------------ */
@media (max-width: 1024px) {
    .red-line {
        width: 25%;
    }

    .storeLocationCards {
        grid-template-columns: repeat(1,1fr);
    }
    
    .location-section-container {

        margin-top: 20px;
        padding: 10px;
    
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
    .red-line {
        width: 50%; 
        margin: auto; 
    }

    .storeLocationCards {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
    }

    .location-section-container {
        margin-top: 20px;
        padding: 30px; 
    }
}
