#event .smart-link {
    display: inline-block;
    color: var(--color-black-3);
    text-transform: uppercase;
    text-decoration: none;
    transition: .2s color ease-in;
}
#event .smart-link:hover {
    color: var(--color1-1);
}
#event .smart-link .icon {
    margin-right: 0;
    color: var(--color-yellow-1);
    transition: .2s margin-right ease-in;
}
#event .smart-link:hover .icon {
    margin-right: 0.2em;
}
#event .smart-link .text.is-after-icon {
    margin-right: 0.2em;
    transition: .2s margin-right ease-in;
}
#event .smart-link:hover .text.is-after-icon {
    margin-right: 0;
}
#event .box-post-event {
    display: flex;
    flex-direction: row;
}
#event .event-live-status > * {
    display: none;
}
#event .event-live-status.is-live > .is-live,
#event .event-live-status.is-finished > .is-finished {
    display: grid;
    grid-template-areas:
        'text link'
        'matchup matchup';
    gap: 0.75rem;
}
#event .event-live-status .status-text {
    grid-area: text;
    display: flex;
    align-items: center;
    height: 1.25em;
    font-size: 150%;
    text-transform: uppercase;
}
#event .event-live-status .status-text .icon {
    margin-right: 0.1em;
    font-size: 140%;
    color: red;
    animation: event-live-status-icon-blink 1s infinite;
}
@keyframes event-live-status-icon-blink {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#event .event-live-status .status-link {
    grid-area: link;
    align-self: center;
    justify-self: flex-end;
}
#event .event-live-status .status-matchup {
    grid-area: matchup;
}
#event .event-matchup .face1 {
    grid-area: face1;
}
#event .event-matchup .face2 {
    grid-area: face2;
}
#event .event-matchup .versus {
    grid-area: versus;
}
#event .event-matchup .title {
    grid-area: title;
    padding: .6em;
    text-align: center;
    text-transform: uppercase;
    background: var(--color-yellow-1);
}
#event .event-live-status .event-matchup .title {
    padding: 0.4em;
    font-size: 87.5%;
}
#event .event-matchup .stats {
    grid-area: stats;
}
#event .event-matchup {
    display: grid;
    grid-template-areas:
        'title title'
        'face1 face2'
        'stats stats';
    grid-template-columns: 50% auto;
    gap: 0.25em;
}
#event .event-live-status .event-matchup {
    grid-template-areas:
        'title title title'
        'face1 versus face2';
    grid-template-columns: 6rem auto 6rem;
}
#event .event-live-status .event-matchup .stats {
    display: none;
}
#event .event-matchup .stats {
    grid-area: stats;
    padding: 0.5em 1em 0;
    background: var(--color-white-2);
}
#event .event-matchup a.face img {
    transition: .2s all ease-in;
    top: calc(-1 * 6px);
}

#event .event-matchup a.face {
    overflow: hidden;
}
#event .event-matchup .face {
    position: relative;
    display: flex;
}
#event .event-matchup .face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background: var(--color-black-3);
}
#event .event-matchup a.face:hover img {
    top: calc(-1 * 6px - 2.5%);
    left: -2.5%;
    width: 105%;
    height: 105%;
}
#event .event-matchup .face .sticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom-width: 6px;
    border-bottom-style: solid;
    font-size: .875rem;
    text-align: center;
    color: #fff;
}
#event .event-matchup .face1 .sticker {
    border-bottom-color: var(--color-red-1);
    background: var(--color-red-1);
}
#event .event-matchup .face2 .sticker {
    border-bottom-color: var(--color-blue-1);
    background: var(--color-blue-1);
}
#event .event-matchup .stats table tr:not(:last-child) {
    border-bottom: 1px solid #ddd;
}
#event .event-matchup .stats table td {
    padding: 0.25em 0;
    width: 40%;
    font-size: 90%;
    font-weight: 400;
}
#event .event-matchup .stats table tr.vs td {
    font-size: 120%;
    font-weight: 500;
}
#event .event-matchup .stats table td a {
    color: var(--color-black-1);
    text-decoration: none;
}
#event  .event-matchup .stats table tr td:last-child {
    text-align: end;
}
#event .event-matchup .stats table th {
    padding: 0.65em 0.25em;
    width: 20%;
    font-size: 90%;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
}
#event .box-post-event .info {
    margin-top: 1.4em;
    flex: 1;
    display: flex;
    justify-content: space-between;
}
#event .box-post-event .info .info-content {
    color: var(--color-white-2);
    display: flex;
    flex-direction: column;
    width: calc(100% - 12rem - 1.4em - 1.4em);
}
#event .box-post-event .info .event-location {
    font-size: 150%;
}
#event .use-letter-spacing-hint {
    letter-spacing: -.125rem;
}
#event .box-post-event .info .info-content .title {
    margin-top: 0.8rem;
    margin-bottom: 1em;
    flex: 1;
    font-size: 260%;
    line-height: 1;
}
#event .box-post-event .info .info-content .title a {
    color: inherit;
    text-decoration: none;
}
#event .event-action-bar a {
    border: 2px solid var(--color-yellow-1);
}
#event .event-matchup .versus {
    grid-area: versus;
    display: none;
}
#event .event-live-status .event-matchup .versus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 112.5%;
    text-align: center;
    background: var(--color-black-1);
}
#event .event-live-status.is-upnext > .is-upnext {
    display: block;
}
#event .event-live-status.is-upnext > .is-upnext {
    display: grid;
    grid-template-areas:
        'text link'
        'countdown countdown';
    gap: 0.75rem;
}
#event .box-post-event .countdown {
    width: 12rem;
}
#event .event-live-status .status-countdown {
    grid-area: countdown;
}

/* Upcoming Events */
#event .block-header .title {
    margin: 0;
    font-size: 160%;
    text-transform: uppercase;
}
#event .block-header {
    padding-top: 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--color-black-1);
}
#event .post-list {
    display: grid;
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
}
#event .post-list.is-simple {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
#event .post-list.is-simple>*:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
}
#event .simple-post-card {
    position: relative;
    display: flex;
    gap: 0.75rem 1rem;
    flex-direction: column;
}
#event .simple-post-card .prefix {
    display: none;
}
#event .simple-post-card a.image {
    color: #888;
}
#event .simple-post-card .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}
#event .simple-post-card .content a.title {
    text-decoration: none;
    color: var(--color-black-1);
    transition: .2s opacity ease-in;
}
#event .simple-post-card.is-event .title {
    font-size: 125%;
}
#event .simple-post-card .content a.title>* {
    margin: 0;
    font-size: 100%;
}
#event .simple-post-card .content a.title:hover {
    opacity: .7;
}
#event .simple-post-card.is-event .event-date-time {
    font-size: 90%;
    font-weight: bold;
    text-transform: uppercase;
    text-align: end;
    color: var(--color-grey);
}
#event .box-post-event .info .info-image {
    display: none;
    margin: 1rem 0;
}

@media (min-width: 1800px) {
    #event .box-post-event.is-wide .event-matchup {
        grid-template-areas:
            'face1 stats face2'
            'face1 title face2';
        grid-template-columns: 7rem auto 7rem;
        grid-template-rows: 1fr auto;
    }
    #event .box-post-event.is-wide .event-matchup .stats {
        display: block;
        padding: 0.75em 1em;
    }
    #event .event-matchup .stats {
        padding: 1.5em 2em 0;
    }
    #event .box-post-event.is-wide .event-matchup .stats table tr.vs {
        border-bottom: 0;
    }
    #event .box-post-event.is-wide .event-matchup .stats table tr.vs td {
        font-size: 112.5%;
    }
    #event .event-matchup .stats table tr.vs td {
        font-size: 160%;
    }
    #event .box-post-event.is-wide .event-matchup .stats table tr.vs th {
        font-size: 93.75%;
    }
    #event .box-post-event.is-wide .event-matchup .stats table tr:not(.vs) {
        display: none;
    }
    #event .box-post-event.is-wide .event-matchup .versus {
        display: none;
    }
}
@media (min-width: 1400px) {
    #event .event-matchup .stats table td {
        font-size: 100%;
    }
    #event .event-matchup .stats table tr.vs td,
    #event .event-matchup .stats table tr.vs th {
        font-size: 135%;
    }
}
@media (min-width: 1800px) {
    #event .event-matchup .stats table tr.vs td {
        font-size: 160%;
    }
}
@media (min-width: 992px) {
    #event .box-post-event.is-wide .info {
        flex-direction: column-reverse;
        margin: 0;
    }
    #event .box-post-event.is-wide .info .event-live-status {
        margin: 0 0 1.4em 1.4em;
    }
    #event .box-post-event.is-wide .image {
        width: 65%;
    }
    #event .box-post-event.is-wide .info .info-content {
        flex: 1;
        padding: 1.4em;
        width: auto;
        background: var(--color-yellow-1);
    }
    #event .simple-post-card .content a.title>* {
        margin: 0;
    }
    #event .box-post-event.is-wide {
        padding: 0;
        padding-top: 1.4em;
        flex-direction: row;
        background: transparent;
    }
}

@media (max-width: 991px) {
    #event .post-list.is-simple {
        grid-template-columns: 1fr 1fr;
    }
    #event .post-list.is-simple>*:nth-child(3) {
        grid-area: 2 / 1 / 3 / 2;
    }
    #event .post-list.is-simple>*:nth-child(4) {
        grid-area: 2 / 2 / 3 / 3;
    }
    #event .box-post-event.is-wide .info .info-content {
        flex: 1;
        width: 100%;
    }
    #event .box-post-event.is-wide .info {
        margin-top: 0;
        flex-direction: column-reverse;
        padding: 1.4rem;
    }
    #event .box-post-event.is-wide .image {
        display: none;
    }
    #event .box-post-event.is-wide .info .info-image {
        display: block;
    }
}
@media (max-width: 767px) {
    #event .box-post-event {
        padding: 0.75rem!important;
    }
    #event .container-fluid-no-padding-to-md {
        max-width: 100%;
        padding: 0;
    }
    #event .box-post-event.is-wide .info {
        padding: .75rem;
    }
    
}
@media (max-width: 575px) {
    #event .box-post-window .carousel-item .post-info .title {
        font-size: 125%;
    }
    #event .box-post-window .preview-bar {
        padding: 1px 0;
        gap: 1px !important;
    }
    #event .box-post-window .preview-bar {
        background-color: var(--color-black-1);
    }
    #event .box-post-window .preview-bar a.preview-item .image {
        width: 40%;
    }
    #event .box-post-window .preview-bar a.preview-item .title {
        width: 60%;
        padding: 0.5em 0.5em 0 0;
        font-size: 95%;
    }
    #event .post-list.is-simple {
        grid-template-columns: 1fr;
    }
    #event .post-list.is-simple .simple-post-card {
        width: 100vw;
        left: calc(-1 * .75rem);
    }
    #event .post-list.is-simple .simple-post-card .content {
        padding: 0 var(--bs-gutter-x,.75rem);
    }
    #event .post-list.is-simple>*:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }
    #event .post-list.is-simple>*:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }
    #event .post-list.is-simple>*:nth-child(4) {
        grid-area: 4 / 1 / 5 / 2;
    }
}