/* =========================
   WYTBEAT REGULAR PAGES
========================= */

body.page:not(.home):not(.front-page):not(.page-id-372) {

    background: var(--wytbeat-white);

}


/* content card */

body.page:not(.home):not(.front-page):not(.page-id-372) .inside-article {
    max-width: 1100px;
    margin: 40px auto;
    background: var(--wytbeat-white);
    padding: clamp(1.5rem,5vw,4rem);
    border: var(--wytbeat-border);
    box-shadow: var(--wytbeat-shadow);
}

/* hero image */

body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image {
    max-width:1100px;
    margin:40px auto 0;
    overflow:hidden;
    box-shadow: var(--wytbeat-shadow);
}


body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image img {
    display:block;
    width:100%;
    aspect-ratio:16/7;
    object-fit:cover;
}

/* title */

body.page:not(.home):not(.front-page):not(.page-id-372) .entry-title {
    font-family:"Bebas Neue",display;
    font-size:clamp(3rem,6vw,5rem);
    line-height:.9;
    text-transform:uppercase;
    color:var(--wytbeat-pink);
    margin:0 0 1.5rem;
}

/* body */

body.page:not(.home):not(.front-page):not(.page-id-372) .entry-content {
    font-size:1.15rem;
    line-height:1.7;
}


body.page:not(.home):not(.front-page):not(.page-id-372) .entry-content h2,
body.page:not(.home):not(.front-page):not(.page-id-372) .entry-content h3 {
    color:var(--wytbeat-pink);
    font-family:"Bebas Neue",display;
    text-transform:uppercase;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 781px) {

    body.page:not(.home):not(.front-page):not(.page-id-372) .inside-article {

        margin: 20px 15px;
        padding: 1.5rem;

        box-shadow: 6px 6px 0 #000;

    }


    body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image {

        margin-top: 20px;

    }


    body.page:not(.home):not(.front-page):not(.page-id-372) .featured-image img {

        height: 220px;

    }

}