/* ---------------------------------------------------------------------------
 * Mobile/responsivity fixes for the FORKED template.
 *
 * This file exists because the original theme is frozen: customers already
 * bought and designed on it, so its look must not change under them. Every
 * rule here is therefore scoped to this fork only. Loaded LAST (after the
 * theme's own stylesheets), so plain specificity is enough - no !important.
 *
 * Note: the themes all <link> a css/complete.css that has never existed, on
 * prod or locally. It 404s everywhere; it is not a build artifact to merge into.
 * ------------------------------------------------------------------------- */

/* --- The photo band under "O nás" (#about-us-bg) ----------------------------
 * Identical defect to the one fixed in the julie fork: the lazy loader sets
 * background-image inline with no background-size, so the band painted the
 * top-left corner of a 1920x1080 image at 1:1. Measured at 390px it showed a
 * shoulder with the heads cropped off. */
.wpo-cta-section,
.wpo-cta-section-s3 {   /* the Gifts band is a separate class, easily missed */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .wpo-cta-section,
    .wpo-cta-section-s3 { min-height: 220px; }
}
