/* Default wrapper style */
.photo-banner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.photo-banner-img {
    max-width: 100%;
    display: block;
}

/* Desktop Visibility */
.pb-desktop- {
    display: none !important;
}

/* Tablet Visibility */
@media (min-width: 768px) and (max-width: 1024px) {
    .pb-tablet- {
        display: none !important;
    }
}

/* Mobile Visibility */
@media (max-width: 767px) {
    .pb-mobile- {
        display: none !important;
    }
}