/**
 * Existing Woodmart child-theme content-width rule, made responsive.
 *
 * The previous fixed `width: 1120px` forced narrow screens to overflow.
 * `width: 100%` plus `max-width` preserves the desktop cap while allowing
 * tablets and phones to shrink naturally.
 */
.container.wd-entry-content {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
}
