/*
 * assets/css/components/break-strip.css
 * `.ad-service-break` -- page-agnostic full-bleed texture/break strip used
 * between heavy content sections. Moved verbatim from service-template.css
 * (the sole definer); markup renders this class from about/home/
 * airway-dentistry/services pages even though those page bundles never
 * defined the selector themselves.
 */

/* from: service-template.css */
/* Texture / break strip — full-bleed thin band used between heavy content sections in Figma.
   background-image is the default marble texture (shown on breaks with no inline image, e.g.
   home / what-is / about); an inline style="background-image:url(...)" overrides it per-break. */
.ad-service-break {
    width: 100%;
    height: 102px;
    background-color: var(--ad-color-white);
    background-image: url("/wp-content/themes/airways-dentist-theme/assets/images/break-texture.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .ad-service-break {
        height: 80px;
    }
}
