h1,h2,h3,h4,todays-date {
    filter: blur(1px) url(#svgThreshold);
    text-align: center;
}

h3 > a, 
h3 > a:visited, 
h3 > a:hover, 
h3 > a:focus 
{
    color: black;
    text-decoration: none;
}

todays-date {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    margin-block: 0.83em;
}

h4 {
    filter: blur(.75px) url(#svgThreshold);
    text-align: left;
}

.graphic {
    filter: blur(1px) url(#svgThreshold);
    text-align: center;  
    width: 25px;
    width: 25px;
}

hr {
    border: none;
    border-top: 3px solid black;
    filter: blur(1px) url(#svgThreshold)
}

blockquote {
    padding-left: 1ch;
    /* border-left: solid 3px; */
    filter: blur(.75px) url(#svgThreshold);
    margin: 1ch;
    font-style: italic;
}

p {
    filter: blur(.75px) url(#svgThreshold);
    text-align: left;  
}

.disclaimer {
    display: inline-flex;
    flex-direction: column;
    font-size: 22pt;
    font-variant: all-small-caps;
    font-weight: bold;
    text-align: center;
    filter: blur(.75px) url(#svgThreshold);
}

.disclaimer > span {
    margin-top: 1lh;
    font-size: 20pt;
}
.disclaimer > a,
.disclaimer > a:visited, 
.disclaimer > a:hover, 
.disclaimer > a:focus
{
    color: black;
}

body {
    position: relative;
    background: #fcdbb0;
}

body::before {
    content: "";
    background-image:
        url(/assets/texture/SurfaceImperfections006/SurfaceImperfections006_4K_var2.jpg),
        url(/assets/texture/SurfaceImperfections013/SurfaceImperfections013_4K_var2.jpg);
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-blend-mode: multiply;
    mix-blend-mode: multiply;
    opacity: 5%;
}

.body {
    display: grid;
    grid-template-areas: "a d0 b d1 c"
}


.body>:first-child {
    max-width: 465px;
}
.divider {
    border: none;
    margin-left: 3px;
    margin-right: 3px;
    border-left: 3px solid black;
    filter: blur(1px) url(#svgThreshold)
}

img,halftone-img {
    max-width: 320px;
}
halftone-img {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: left;
    filter: url(#svgThreshold);
    margin-right: 1ch;
}

.subheading:has(~ .byline) {
    margin-bottom: 0;
}
.subheading {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
}
.byline {
    margin-top: 0;
}

.full-width {
    max-width: none;
    float: none;
}

halftone-img:has(~ .image-text) {
    margin-bottom: 0;
}
halftone-img ~ .image-text {
    margin-top: 0;
}

.no-filter {
    filter: none;
}

.me-image {
    position: relative;
    z-index: 1;
    display: inline-flex;
    float: left;
    filter: url(#svgThreshold);
    margin-right: 1ch;
    max-width: 320px;
    flex-direction: column;

    & > div {
        display: inline-flex;
        flex-direction: column;
    }

    a {
        filter: blur(.75px) url(#svgThreshold);
    } 
}

.callout {
    border: 3px solid black;
    filter: blur(.7px) url(#svgThreshold);
    > h2, p {
        filter: none
    }

    > h2 {
        margin: 0;
        border-bottom: 3px solid black;
        display: grid;
        grid-template-areas:
            "bg0 bg1 bg2" 
            "bg0 txt bg2";
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1lh auto;
    }
    > h2 :nth-child(1) {
        background: repeating-linear-gradient( 45deg, transparent, black 4px, transparent 4px, transparent 10px);
        grid-area: bg0;
    }
    > h2 :nth-child(2) {
        background: repeating-linear-gradient( 45deg, transparent, black 4px, transparent 4px, transparent 10px);
        grid-area: bg1;
    }
    > h2 :nth-child(3) {
        grid-area: txt;
        padding: .5ch;
        padding-top: 0;
    }
    > h2 :nth-child(4) {
        background: repeating-linear-gradient( 45deg, transparent, black 4px, transparent 4px, transparent 10px);
        grid-area: bg2;
    }
}

@media screen and (max-width: 800px) {
    .body {
      grid-template-areas: 
        " a" 
        "d0" 
        " b" 
        "d1" 
        " c";
    }

    .divider {
        border-left: none;
        border-top: 3px solid black;
    }

    halftone-img,.me-image {
        max-width: 232px;
    }

    .subheading:has(~ .byline) {
        margin-bottom: 1ch;
    }

    .subheading {
        text-align: left;
        text-indent: 1ch hanging;
    }
}

