

.events__header {
    display: flex;
    margin-bottom: 12px;
}

.events__date,
.events__winner {
    width: 25%;
}

.events__title {
    width: 50%;
    text-align: center;
}

.events__date--date,
.events__subtitle {
    margin-bottom: 0;
}

.events__type {
    color: #a18b69;
}

.events__title-text {
    line-height: 22px;
}

.events__title-text a {
    font-size: 26px;
    color: #7c4c00;
}

.events__winner {
    text-align: right;
}

.events__subtitle {
    color: #a38d6b;
}

.events__winner-text,
a.events__stream-link--link {
    color: #7c4c00;
}

.events__content {
    display: flex;
}

.event-page__image {
    margin-right: 16px;
    max-width: 35%;
    min-width: 175px;
    height: 175px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.event-page__image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../image/zulu_border_image.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.events__description {
    width: 65%;
    font-size: 14px;
    letter-spacing: 0.14px;
}

.event-page__image a {
    display: none;
}

.events__row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 14px;
}

.events__format,
.events__reward {
    width: 48%;
}

.events__stream-link {
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 1023px) {
    .events__header {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .events__title {
        width: 100%;
        order: 1;
        margin-bottom: 10px;
    }
    .events__date {
        order: 2;
        width: 45%;
    }
    .events__winner {
        order: 3;
        width: 45%;
    }
    .events__content {
        flex-direction: column;
    }
    .events__description {
        width: 100%;
        margin-top: 10px;
    }
}