/* Expound – make header image scale + shrink header on mobile only */
@media (max-width: 782px) {

    .site-header .site-branding {
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        height: auto !important;
        min-height: 0 !important;
        padding: 10px 0 !important;   /* adjust this number to taste */
    }

    /* Optional: hide title/tagline on mobile so header can be shorter */
    .site-header .site-branding .site-title,
    .site-header .site-branding .site-description {
        display: none;
    }
}

.site-header .site-branding .site-title,
.site-header .site-branding .site-description {
    display: none;
}

/* Mobile: remove any page border feel and let content go full-width */
@media (max-width: 782px) {
    html, body {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Main page wrapper in Expound */
    .site {
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Mobile: keep videos and iframes inside the viewport */
@media (max-width: 782px) {
    iframe,
    embed,
    object,
    video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
    }
}

/* Expound – reduce side whitespace on post content for mobile */
@media (max-width: 782px) {

    /* Main wrappers */
    .site,
    .site-content,
    .content-area,
    .site-main {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box;
    }

    /* Individual posts/pages */
    .hentry,
    .post,
    .page,
    .entry-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 12px !important;   /* adjust to taste */
        padding-right: 12px !important;
    }
}

@media (max-width: 782px) {
    .entry-content p {
        font-size: 18px;
        line-height: 1.7;
    }
}
