:root {
    --font-default: normal 400 1.6rem "Roboto", sans-serif;
    --font-condensed: normal 400 1.6rem "Roboto Condensed", sans-serif;
    --font-header: normal 600 1.6rem "Montserrat", sans-serif;
    --font-header-2: normal 700 1.6rem "Montserrat", sans-serif;
    --font-header-3: normal 800 1.6rem "Montserrat", sans-serif;
    --color1: #fff;
    --color1-rgb: 255, 255, 255;
    --color1-1: #fff;
    --color2: #000;
    --color2-1: #bbb;
    --color3: #032581;
    --color4: #ffc600;
}

html {
    height: 100%;
    font-size: 62.5%;
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    font: var(--font-default);
    color: var(--color2);
    background-color: var(--color1);
}

body.animated-color-scheme,
body.animated-color-scheme * {
    transition: .2s all ease-out;
}

@media (min-width: 1600px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 135rem;
    }
}

.transition-none {
    transition: none !important;
}

#site-main {
    flex: 1;
    padding-top: 9rem;
}

#site-footer {
    flex: 0 0 auto;
    color: #fff;
    background-color: var(--navbar-color1);
    font: var(--font-condensed);
    font-size: 1.3rem;
    text-transform: uppercase;
    z-index: 99;
}

#site-footer a {
    color: #fff;
}

#site-footer a:hover {
    text-decoration: none;
    opacity: .8;
}

#site-footer .description {
    padding: 3rem 0 .7rem;
    font-weight: 700;
    border-bottom: .1rem solid #fff;
}

#site-footer .links {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}

#site-footer .copyright {
    padding-bottom: 2rem;
}

@media (min-width: 992px) {
    #site-footer .links {
        justify-content: flex-start;
        padding-bottom: 5rem;
    }

    #site-footer .links a {
        margin-right: 10rem;
    }
}

.navbar-trending-wrap {
    background-color: var(--color1);
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 5rem;
}

.navbar-trending {
    display: flex;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font: var(--font-condensed);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.navbar-trending::-webkit-scrollbar {
    display: none;
}

.navbar-trending a {
    padding: 0 2rem;
    color: var(--color2);
}

.navbar-trending .icon {
    height: 1.4rem;
    opacity: 0;
}

.navbar-trending.show .icon {
    opacity: 1;
}

.navbar-trending ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-trending ul li {
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0;
}

.navbar-trending.show ul li {
    opacity: 1;
}

.navbar-trending .icon {
    transition: .2s opacity ease-out;
}

.navbar-trending ul li:nth-child(1) {
    transition: .2s opacity ease-out;
}

.navbar-trending ul li:nth-child(2) {
    transition: .4s opacity ease-out;
}

.navbar-trending ul li:nth-child(3) {
    transition: .6s opacity ease-out;
}

.navbar-trending ul li:nth-child(4) {
    transition: .8s opacity ease-out;
}

.navbar-trending ul li:nth-child(5) {
    transition: 1s opacity ease-out;
}

.navbar-trending ul li:not(:first-child)::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 40%;
    color: var(--color4);
}

a.page-action-link {
    display: inline-block;
    padding: 1em 2em;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    background-color: var(--color4);
}

a.page-action-link:hover {
    text-decoration: none;
    opacity: .8;
}

.post-card {
    display: flex;
    flex-direction: column;
}

.post-card .content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    background-color: var(--color1);
}

.post-card .content-wrapper .image {
    flex: 0 0 50%;
}

.post-card .content-wrapper .image .image-wrap-16by9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.post-card .content-wrapper .image .image-wrap-16by9 img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.post-card .content-wrapper .content {
    display: flex;
    flex: auto;
    flex-direction: column;
    padding: 0 1rem 0 0;
    overflow: hidden;
}

.post-card .content-wrapper .content a:hover {
    opacity: .8;
}

.post-card .content-wrapper .content .info-wrapper {
    display: flex;
    justify-content: space-between;
}

.post-card .content-wrapper .content .info-wrapper .date {
    display: none;
}

.post-card .content-wrapper .content .category {
    margin-bottom: 1rem;
    font: var(--font-condensed);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color3);
}

.post-card .content-wrapper .content .title {
    font: var(--font-header);
    font-size: 1.3rem;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card .content-wrapper .content .title a {
    color: var(--color2);
}

.post-card .content-wrapper .content .title a:hover {
    text-decoration: none;
}

.post-card .content-wrapper .content .excerpt p {
    display: none;
    font: var(--font-condensed);
    font-size: 1.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-card .content-wrapper .meta {
    display: none;
    font: var(--font-condensed);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-card .content-wrapper .meta .author {
    color: var(--color3);
}

.post-card .content-wrapper .meta .date {
    font-weight: 400;
    margin-left: 1rem;
}

@media (min-width: 576px) {
    .post-card .content-wrapper .content {
        padding: 2rem 2rem 2rem 0;
    }

    .post-card .content-wrapper .content .category {
        font-size: 1.4rem;
    }

    .post-card .content-wrapper .content .title {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .post-card .content-wrapper .content .title {
        -webkit-line-clamp: 4;
    }
}

@media (min-width: 992px) {
    .post-card .content-wrapper {
        flex-direction: row;
    }

    .post-card .content-wrapper .image {
        flex: 0 0 33%;
    }

    .post-card .content-wrapper .content {
        padding: 0 0 0 3rem;
    }

    .post-card .content-wrapper .content .category {
        font-size: 1.6rem;
    }

    .post-card .content-wrapper .content .title {
        font-size: 2.2rem;
        -webkit-line-clamp: 2;
    }

    .post-card .content-wrapper .content .excerpt p {
        display: block;
    }

    .post-card .content-wrapper .meta {
        display: block;
    }
}

#post-stream[data-js-front-page-stream-ad-loaded] .front-page-post-list .post-card:last-child::after {
    height: 0;
    margin: .75rem 0;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper {
    flex-direction: column;
    margin: 0 -1.5rem 2rem;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child::after {
    display: none;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .image {
    flex: unset;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content {
    padding: 1rem 2rem 2rem;
    background-color: var(--navbar-color1);
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .info-wrapper .category {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--navbar-color3);
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .info-wrapper .date {
    color: var(--navbar-color3);
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .title {
    display: block;
    padding-top: 1rem;
    margin-bottom: 0;
    font: var(--font-header-2);
    font-size: 1.6rem;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .title a {
    color: #fff;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .title a:hover {
    text-decoration: none;
    opacity: .8;
}

#post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .excerpt {
    display: none;
}

@media (min-width: 576px) {
    #post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper {
        margin: 0 0 3rem;
    }

    #post-stream .container:first-child .front-page-post-list:first-child .post-card:first-child .content-wrapper .content .title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    #post-stream .container:first-child .front-page-post-list:first-child .post-card:last-child::after {
        height: 0;
        margin: .75rem 0;
    }
}

.front-page-post-list .post-card::after {
    content: "";
    height: .1rem;
    background: var(--color2-1);
    margin: 2rem 0;
}

.front-page-post-list .post-card .content-wrapper .meta {
    display: none;
}

#post-stream .front-page-side-section .front-page-post-list .post-card:last-child::after {
    height: 0;
    margin: 1rem 0;
}

@media (max-width: 575px) {
    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper {
        margin: 0 -1.5rem 2rem !important;
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .content .title {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 991px) {
    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper {
        flex-direction: column;
        margin: 0 0 3rem;
    }

    .front-page-side-section .front-page-post-list .post-card:first-child::after {
        display: none;
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .image {
        flex: unset;
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .content {
        padding: 1rem 2rem 2rem;
        background-color: var(--navbar-color1);
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .content .category {
        margin-bottom: 0;
        font-size: 1.4rem;
        color: var(--navbar-color3);
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .content .title {
        display: block;
        padding-top: 1rem;
        margin-bottom: 0;
        font: var(--font-header-2);
        font-size: 2.2rem;
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .content .title a {
        color: #fff;
    }

    .front-page-side-section .front-page-post-list .post-card:first-child .content-wrapper .content .title a:hover {
        text-decoration: none;
        opacity: .8;
    }
}

@media (min-width: 992px) {
    .front-page-post-list .post-card .content-wrapper .image {
        flex: 0 0 40%;
    }

    .front-page-post-list .post-card .content-wrapper .content {
        padding: 1rem 2rem;
    }

    .front-page-post-list .post-card .content-wrapper .content .info-wrapper .date {
        display: block;
        font: var(--font-condensed);
        font-size: 1.2rem;
        color: var(--color3);
        text-transform: uppercase;
    }

    .front-page-post-list .post-card .content-wrapper .content .category {
        font-size: 1.4rem;
    }

    .front-page-post-list .post-card .content-wrapper .content .title {
        font-size: 1.8rem;
        -webkit-line-clamp: 2;
    }

    .front-page-post-list .post-card .content-wrapper .content .excerpt p {
        margin: 0;
    }

    .front-page-side-section .front-page-post-list .post-card .content-wrapper .image {
        flex: 0 0 40%;
    }

    .front-page-side-section .front-page-post-list .post-card .content-wrapper .content .excerpt,
    .front-page-side-section .front-page-post-list .post-card .content-wrapper .content .info-wrapper .date {
        display: none;
    }

    .front-page-side-section .front-page-post-list .post-card .content-wrapper .content .title {
        font-size: 1.5rem;
        margin: 0;
        -webkit-line-clamp: 2;
    }

    .front-page-side-section .front-page-post-list .post-card::after {
        width: 56%;
        transform: translate(78%);
        margin: .6rem 0;
    }
}

@media (min-width: 1200px) {
    .front-page-post-list .post-card .content-wrapper .image {
        flex: 0 0 33%;
    }

    .front-page-side-section .front-page-post-list .post-card .content-wrapper .content .title {
        -webkit-line-clamp: 3;
    }
}

.headline {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.headline.underline {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: solid .3rem var(--color2-1);
}

.headline span.shade {
    opacity: .6;
}

.author-photo {
    width: 26rem;
    height: 26rem;
    max-width: 100%;
}

.author-photo img {
    display: block;
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

.author-name-wrapper {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.author-name {
    margin: 2.5rem 2rem 0 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.author-staff {
    padding: .5rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    background-color: var(--color4);
}

.author-contacts {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
}

.author-contacts a {
    margin-right: 2rem;
    font-size: 2.75rem;
    color: var(--color2);
}

.author-bio {
    margin-top: 2.5rem;
}

@media (min-width: 992px) {
    .headline {
        font-size: 2.5rem;
    }

    .author-info {
        flex-direction: row-reverse;
    }

    .author-name {
        font-size: 2.5rem;
    }

    .author-staff {
        font-size: 1.6rem;
    }
}

.wide-post-list .post-card::after {
    content: "";
    height: .1rem;
    background: var(--color2-1);
    margin: 2rem 0;
}

.wide-post-list .event-card::after,
.wide-post-list .press-card::after {
    content: "";
    height: .1rem;
    background: var(--color2-1);
    margin: 4rem 0;
}

.wide-post-list .post-card:last-child::after,
.wide-post-list .event-card:last-child::after,
.wide-post-list .press-card:last-child::after {
    display: none;
}

@media (min-width: 992px) {
    .wide-post-list {
        padding: 4rem;
        border: solid .1rem var(--color2-1);
    }

    .wide-post-list .post-card .content-wrapper .content {
        justify-content: space-between;
    }

    .wide-post-list .post-card .content-wrapper .content .title {
        font-size: 2.6rem;
    }
}

.event-card {
    display: flex;
    flex-direction: column;
}

.event-card .content-wrapper {
    display: flex;
    flex-direction: column;
}

.event-card .content-wrapper .event-image {
    flex: 1;
}

.event-card .content-wrapper .event-image .image-wrap-16by9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.event-card .content-wrapper .event-image .image-wrap-16by9 img {
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.event-card .content-wrapper .event-game-logo {
    width: 10rem;
    margin-bottom: 2rem;
}

.event-card .content-wrapper .event-game-logo img {
    object-fit: contain;
    object-position: top;
    width: 100%;
    height: 100%;
}

.event-card .content-wrapper .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
}

.event-card .content-wrapper .event-date,
.event-card .content-wrapper .event-excerpt {
    font: var(--font-condensed);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.event-card .content-wrapper .event-excerpt {
    flex: 1;
    font-weight: 700;
}

.event-card .content-wrapper .event-excerpt p {
    margin: 0;
}

.event-card .content-wrapper .event-title {
    margin: .5rem 0 1rem;
    font: var(--font-header-3);
    font-size: 1.75rem;
    text-transform: uppercase;
}

.event-card .content-wrapper .event-title a {
    color: var(--color2);
}

.event-card .content-wrapper .event-title a:hover {
    text-decoration: none;
    opacity: .8;
}

.event-card .content-wrapper .event-links {
    display: flex;
    padding-top: 2rem;
    font-size: 1.1rem;
}

.event-card .content-wrapper .event-links a {
    padding: 1.25rem 1.75rem;
    min-width: 12rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    background: var(--color4);
    color: #000;
}

.event-card .content-wrapper .event-links a:hover {
    text-decoration: none;
    opacity: .8;
}

.event-card .content-wrapper .event-links a:not(:last-child) {
    margin-right: 1.5em;
}

.past-events .event-card .content-wrapper .event-image,
.past-events .event-card .content-wrapper .event-game-logo,
.past-events .event-card .content-wrapper .event-page-link {
    display: none;
}

.past-events .event-card .content-wrapper .card-content {
    padding-top: 0;
}

@media (min-width: 992px) {
    .event-card .content-wrapper {
        flex-direction: row;
    }

    .event-card .content-wrapper .card-content {
        padding-top: 0;
        padding-left: 4rem;
    }

    .event-card .content-wrapper .event-game-logo {
        width: 14rem;
    }

    .event-card .content-wrapper .event-title {
        margin: 1rem 0 3rem;
        font-size: 2.5rem;
    }

    .event-card .content-wrapper .event-date,
    .event-card .content-wrapper .event-excerpt,
    .event-card .content-wrapper .event-links {
        font-size: 1.4rem;
    }

    .event-card .content-wrapper .event-links {
        padding-top: 3rem;
    }

    .event-card .content-wrapper .event-links a {
        min-width: 16rem;
    }

    .past-events .event-card .content-wrapper .card-content {
        padding-left: 0;
    }

}

.press-archive-contacts {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.press-archive-contacts a {
    color: var(--color2);
}

@media (min-width: 992px) {
    .press-archive-contacts {
        font-size: 1.4rem;
    }
}

.press-card {
    display: flex;
    flex-direction: column;
}

.press-card .content-wrapper {
    display: flex;
    flex-direction: column;
}

.press-card .content-wrapper .press-date,
.press-card .content-wrapper .press-excerpt {
    font: var(--font-condensed);
    font-size: 1.1rem;
    text-transform: uppercase;
}

.press-card .content-wrapper .press-excerpt {
    font-weight: 700;
}

.press-card .content-wrapper .press-excerpt p {
    margin: 0;
}

.press-card .content-wrapper .press-title {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font: var(--font-header-3);
    font-size: 1.75rem;
    text-transform: uppercase;
}

.press-card .content-wrapper .press-title a {
    color: var(--color2);
}

.press-card .content-wrapper .press-title a:hover {
    text-decoration: none;
    opacity: .8;
}

.press-card .content-wrapper .card-links {
    display: flex;
    align-items: center;
    padding-top: 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.press-card .content-wrapper .card-links a {
    padding: 1.25rem 1.75rem;
    min-width: 12rem;
    text-align: center;
    background: var(--color4);
    color: #000;
}

.press-card .content-wrapper .card-links a:hover {
    text-decoration: none;
    opacity: .8;
}

.press-card .content-wrapper .card-links a:not(:first-child) {
    margin-left: 1.5em;
}

@media (min-width: 992px) {
    .press-card .content-wrapper {
        flex-direction: row;
    }

    .press-card .content-wrapper .card-content {
        flex: 0 0 50%;
        padding-right: 5rem;
    }

    .press-card .content-wrapper .press-title {
        font-size: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: .1rem solid #999;
    }

    .press-card .content-wrapper .press-date,
    .press-card .content-wrapper .press-excerpt {
        font-size: 1.4rem;
    }

    .press-card .content-wrapper .card-links {
        padding-top: 0;
        font-size: 1.6rem;
    }

    .press-card .content-wrapper .card-links a {
        min-width: 20rem;
        padding: 1.25rem 2.75rem;
    }
}

.search-form-inline {
    display: flex;
    height: 4.25rem;
}

.search-form-inline.short {
    max-width: 40rem;
}

.search-form-inline input {
    outline: none;
    -webkit-appearance: none;
}

.search-form-inline input[type=text] {
    padding: 0 1.5rem;
    width: 100%;
    color: var(--color2);
    background-color: var(--color1);
    border: .1rem solid var(--color2);
    border-radius: 0;
}

.search-form-inline input[type=submit] {
    padding: 0 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    background-color: var(--color4);
    border: .1rem solid var(--color2);
    border-radius: 0;
    cursor: pointer;
}

.video-card {
    display: flex;
    flex-direction: column;
}

.video-card .video-image {
    flex: 1;
    height: 0;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-card .video-image img {
    position: absolute;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.video-card .video-title {
    margin: 1rem 0;
    font: var(--font-header);
    font-size: 1.4rem;
    text-transform: uppercase;
}

.video-card .video-title a {
    color: var(--color2);
}

.video-card .video-title a:hover {
    text-decoration: none;
    opacity: .8;
}

.video-card .video-date,
.video-card .video-duration {
    margin-top: .5em;
    font-size: 1.25rem;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .video-card .video-title {
        font-size: 2rem;
    }

    .video-card .video-date,
    .video-card .video-duration {
        font-size: 1.5rem;
    }
}

.image-with-play-icon {
    position: relative;
}

.image-with-play-icon .icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    font-size: 300%;
    color: #fff;
    text-shadow: 0 0 8px #000;
    opacity: .4;
    transition: .1s width, .1s height, .1s opacity;
}

.image-with-play-icon:hover .icon-play {
    width: 90%;
    height: 90%;
    opacity: .5;
    transition: .1s width, .1s height, .1s opacity;
}

.image-with-play-icon .icon-play i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.video-player-screen-wrap {
    margin: 0 auto;
    max-width: 140vh;
}

.video-player-screen {
    position: relative;
    display: block;
    padding: 0;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-player-screen iframe {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

.video-player-screen .fb-video,
.video-player-screen .fb-video>span {
    position: static;
}

@media (max-width: 575px) {
    .video-player-screen {
        margin-left: -15px;
        margin-right: -15px;
    }
}

.post-breadcrumb {
    display: flex;
    font: var(--font-condensed);
    font-size: 1.25rem;
}

.post-breadcrumb a {
    line-height: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color3);
}

.post-breadcrumb a:hover {
    opacity: .8;
}

.post-breadcrumb a:not(:first-child) {
    padding-left: 2.5rem;
}

.post-breadcrumb a:not(:first-child)::before {
    content: "\f054";
    position: absolute;
    margin-left: -1.5rem;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 70%;
    color: var(--color2);
}

.post-title {
    font: var(--font-header-3);
    font-size: 2rem;
}

.post-title a {
    color: var(--color2);
}

.post-title a:hover {
    text-decoration: none;
    opacity: .8;
}

.post-meta {
    font: var(--font-condensed);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-meta p {
    display: inline;
}

.post-meta a {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color3);
}

.post-meta a:hover {
    opacity: .8;
}

.post-meta .date {
    font-weight: 400;
}

.post-share {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
}

.post-share a {
    position: relative;
    margin-left: .8em;
    font-size: 120%;
    color: var(--color2);
}

.post-share a:hover {
    text-decoration: none;
    opacity: .8;
}

.post-share a>.feedback {
    position: absolute;
    margin-left: 0;
    padding: .25em .5em;
    font-size: 80%;
    font-weight: 400;
    text-transform: none;
    color: var(--color2);
    pointer-events: none;
    opacity: 0;
    transition: .2s margin-left ease-out, .2s opacity ease-out;
}

.post-share a.show-feedback>.feedback {
    margin-left: 1em;
    opacity: 1;
}

.post-main-image img {
    width: 100%;
    height: auto;
}

.post-excerpt {
    font: var(--font-condensed);
    font-size: 1.6rem;
}

.post-content {
    font-size: 1.5rem;
    line-height: 1.6;
}

.post-content a {
    color: var(--color3);
    overflow-wrap: break-word;
}

.post-content a:hover {
    opacity: .8;
}

.post-content img {
    max-width: 100%;
    height: auto;
}

.post-content iframe,
.post-content .wp-caption {
    max-width: 100%;
}

.post-content .wp-block-image figcaption,
.post-content .wp-caption-text {
    font-size: 1.2rem;
    color: #777;
    text-align: center;
}

.post-content .wp-block-embed-facebook iframe {
    background-color: #fff;
}

.post-content .is-style-cross-linking-list-style {
    margin-left: 1.5em;
    padding: 0 .5em;
    font-size: 84%;
}

.post-related-post {
    margin: 3rem 0 0;
    padding: 3rem 0;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

.post-related-post .post-title {
    font-size: 1.8rem;
    text-transform: uppercase;
}

.post-related-post figure {
    margin: 0;
}

.post-content-separator {
    margin-top: 3rem;
    border-bottom: 1px solid #aaa;
}

.article-footer-banner {
    margin-bottom: -1rem;
    padding-top: 2rem;
}

@media (min-width: 992px) {
    .post-breadcrumb {
        font-size: 1.4rem;
    }

    .post-title {
        font-size: 4rem;
    }

    .post-excerpt {
        font-size: 2.8rem;
    }

    .post-meta,
    .post-share {
        font-size: 2rem;
    }

    .post-content {
        font-size: 1.8rem;
    }

    .post-related-post {
        margin: 5rem 0 0;
        padding: 5rem 0;
    }

    .post-related-post .post-title {
        font-size: 2.5rem;
    }

    .post-content-separator {
        margin-top: 5rem;
    }

    .article-footer-banner {
        margin-bottom: -3rem;
    }
}

.fullscreen-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fullscreen-iframe.hide-nav {
    position: absolute;
    top: 0;
    bottom: 0;
}

.join-our-mailing-list {
    flex: 1;
    overflow: hidden auto;
}

.join-our-mailing-list .title {
    font: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navbar-color3);
}

.join-our-mailing-list .text {
    margin-top: 1rem;
    font: var(--font-condensed);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: uppercase;
}

.join-our-mailing-list form input {
    margin-top: 3rem;
    outline: none;
    -webkit-appearance: none;
}

.join-our-mailing-list form input[type=text],
.join-our-mailing-list form input[type=email] {
    width: 100%;
    line-height: 1.5;
    border: none;
    color: #fff;
    font: var(--font-default);
    background: transparent;
}

.join-our-mailing-list form .underline {
    height: 1px;
    background: #fff;
    opacity: .5;
}

.join-our-mailing-list form input[type=submit] {
    padding: .45em .75em;
    font: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navbar-color1);
    background: var(--navbar-color3);
    border: 0;
    cursor: pointer;
}

.join-our-mailing-list form input[type=submit]:hover {
    opacity: .8;
}

.join-our-mailing-list form .loading-indicator {
    margin-left: -1rem;
    opacity: 0;
    transition: .2s opacity ease-out, .2s margin-left ease-out;
    pointer-events: none;
}

.join-our-mailing-list form.loading .loading-indicator {
    margin-left: 1rem;
    opacity: 1;
}

.live-stream-container {
    background-color: #000;
    margin: 0 -1.5rem 2rem;
}

.live-stream-container:empty {
    display: none;
}

@media (min-width: 576px) {
    .live-stream-container {
        margin: 3rem 0;
    }
}

.home article.post-card.is_advert .content {
    background-color: #EDEDED;
    margin-left: 5px;
    border-bottom: 4px solid #FFC600;
}

.featured_image_caption {
    font-size: 1.2rem;
    color: #777;
    text-align: center;
}

.nav-static-login {
    color: #fff !important;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.25rem !important;
    font-weight: 500;
    letter-spacing: .0125em !important;
}

.nav-static-login p {
    margin: 0 !important;
}

#site-navbar .login {
    display: none;
}

.nav-static-snackbar.v-snack__wrapper.v-sheet.theme--dark {
    position: fixed;
    top: 7px;
    box-shadow: 0 3px 5px -1px rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%);
    align-items: center;
    border-color: currentColor !important;
    display: flex;
    margin: 1px;
    max-width: 672px;
    min-height: 48px;
    min-width: 344px;
    padding: 0;
    pointer-events: auto;
    border-radius: 4px;
    z-index: 9;
    height: 48px;
}

.nav-static-snackbar.v-snack__wrapper.v-sheet.theme--dark .snackbar-content {
    flex-grow: 1;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.25rem !important;
    margin-right: auto;
    padding: 14px 16px;
    text-align: initial;
    font-size: 17px;
    color: #000;
    font-family: 'Roboto Condensed';
    line-height: 8px;
    margin-bottom: 0px;
    opacity: 0.8;
}

#site-navbar .brand-logo img {
    position: absolute;
    width: 63px !important;
    transition: 1s opacity ease-out;
    margin-top: -15px !important;
    margin-left: -7px !important;
    height: 64px !important;
}

.mdi-radiobox-blank:before {
    content: "\F043D";
}

.mdi-radiobox-marked:before {
    content: "\F043E";
}
