@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 2px #ED1C24;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 1rem -3.125rem;
    font-size: 1.5em;
    line-height: 1.1em;
    padding: 0.5rem 1rem;
    width: fit-content;
    border: 2px solid #ED1C24;
    border-radius: 0 2rem 2rem 0;
}
h1 span {
    font-weight: normal;
}
h2 {
    font-size: 2.125em;
    line-height: 1.3em;
    color: #ED1C24;
}
h3 {
    font-size: 2.25em;
    line-height: 1.3em;
    color: #fff;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
    font-style: italic;
    font-size: 1.25em;
    line-height: 1.2;
}
li:before {
    content: "•";
    font-size: 0.8em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    padding: 2rem 4rem 0;
    display: flex;
    gap: 3rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}
article {
    padding: 0 3rem;
}
.abs {
    position: absolute;
    top: 8rem;
    right: 1rem;
    font-size: 1.0625em;
}
footer {
    padding: 0 2.25rem 1rem 1rem;
    background: #ED1C24;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end;
}
figure {
    padding: 1.25rem 1.25rem 1rem;
    background: #fff;
    border-radius: 0 0 1rem 1rem;
}
@media only screen and (max-width: 699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        margin: 0 0 1rem -1.125rem;
    }
    h3 {
        margin: 0;
        text-align: center;
    }
    .abs {
        position: static;
    }
    header {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    article {
        padding: 0 1rem;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem 1rem;
    }
}