.section-photos-listing {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
    align-items: center;
}

.h1-photos-listing {
    text-align: center;
    font-weight: 200;
    font-size: 32px;
    margin-bottom: 20px;
}

.product-photo-name {
    font-size: 20px;
}

.photos-listing {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 320px));
    column-gap: 30px;
    row-gap: 30px;
    justify-content: center;
}

.product-photo-name {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.product-photo-card {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    align-items: center;
}

.product-photo-image {
    width: 100%;
    height: 320px;
}

.product-image-listing {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.generic-btn  {
    width: 100%;
}