/*
 * The Burger Club (pId 29124) — brand override styles.
 * Auto-loaded by base.php for this brand. Ports the CI3
 * assets/wla_new/css/about_burger_20230830.css
 * (only the classes the about page uses).
 *
 * CI3 used --main-bg-color; CI4 injects --brand-primary at runtime in <head>,
 * so we alias it here instead of hardcoding a hex.
 */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --main-bg-color: var(--brand-primary, #e2231a);
}

body {
    font-family: 'Roboto', sans-serif;
}

.common-spacing {
    padding: 25px 0;
}
.colored {
    background-color: #fdf3f4;
}
.common-heading {
    font-size: 31px;
    font-weight: 500;
    color: var(--main-bg-color);
}
.common-para {
    font-size: 16px;
}
.placeholder-img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 20%);
}
.placeholder-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

@media only screen and (max-width: 767px) {
    .common-spacing {
        padding: 20px 0;
    }
    .common-heading {
        font-size: 22px;
    }
    .common-para {
        font-size: 14px;
    }
}
