html body {
    margin: 0px;
    min-width: 256px;
    width: 100%;
}

main {
    padding: 80px 24px 24px 24px;
}

main, article, section {
    display: grid;
    grid-gap: 24px;
}

* {
    user-select: none !important;
    -webkit-user-select: none !important;
}

main *:nth-child(1) {
    margin-top: 0;
}

main *:last-child {
    margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6, p, a {
    font-family: "Inter";
    word-wrap: break-word;
}

h1, h2, h3, h4, h5, h6, p {
    color: #FF2400;
    cursor: default;
    line-height: 32px;
    word-break: break-word;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

h1, h2, h3 {
    line-height: 48px;
}

h4, h5, h6, p, a {
    line-height: 32px;
}

p, a {
    color: #282828;
    font-size: 14pt;
}

a, button {
    outline: none;
}

a {
    text-decoration: none;
}

main a {
    color: #FF2400;
}

main a:hover {
    text-decoration: underline;
}

a:focus-visible {
    text-decoration: underline;
}

p {
    margin: 24px 0;
}

h2 {
    font-size: 20pt;
}

.section-heading {
    background: #f2f2f2;
    padding: 48px;
}

.section-heading * {
    color: #666;
}

.txt-content {
    padding: 24px;
}

.square-img {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    background-color: #282828;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.square-img > div {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FF2400;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.2s;
    box-sizing: border-box;
}

.square-img > div h2 {
    margin: auto;
    color: #fff;
}

.square-img:hover > div {
    transform: none;
}

a:focus-visible .square-img > div {
    transform: none;
}

.img-txt-col {
    display: grid;
    grid-template-columns: 400px auto;
    grid-gap: 24px;
}

.img-txt-col .square-img {
    width: 400px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .img-txt-col {
        grid-template-columns: auto;
    }
}

.fluid-col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    grid-gap: 24px;
}

@media screen and (max-width: 448px) {
    .fluid-col {
        grid-template-columns: repeat(auto-fill, minmax(208px, 1fr));
    }
}

.fluid-col > a {
    display: block;
    pointer-events: auto;
}

iframe {
    display: block;
    margin: auto;
    border: none;
    max-width: 1024px;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}

figure {
    display: block;
    margin: 0 auto;
    max-width: 512px;
    width: 100%;
}

figure img {
    width: 100%;
}