/*
Theme Name: Exterior Quote Base
Theme URI: https://exteriorquote.co.uk/
Author: Exterior Quote
Description: Minimal foundation theme for the Exterior Quote plugin platform. Provides WordPress compatibility and intentionally leaves the visible site design to Exterior Quote Core, service modules, and the Header & Footer plugin.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: exterior-quote-base
License: GPL-2.0-or-later
*/

/*
 * This theme is intentionally minimal.
 * Do not add broad button/form/title styling here: Exterior Quote plugins own
 * the customer-facing visual system.
 */

html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*, *::before, *::after {
    box-sizing: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    background: #fff;
}

img, svg, video {
    max-width: 100%;
    height: auto;
}

.eq-theme-content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0 56px;
}

.eq-theme-content > :first-child {
    margin-top: 0;
}

.eq-theme-article-title {
    margin: 0 0 20px;
}

.eq-theme-empty,
.eq-theme-404 {
    width: min(760px, calc(100% - 40px));
    margin: 70px auto;
}

@media (max-width: 640px) {
    .eq-theme-content {
        width: min(100% - 24px, 1180px);
        padding: 24px 0 40px;
    }
}
