:root {
    --article-content-bg-color: #1c1b21;
    --article-headline-color: #26252b;
    --article-title-color: #52a4ec;
    --article-teaser-color: #c7c7c7;
    --category-news-color: #cccccc;
}

.article__detail {
    border-radius: 10px;
    color: var(--category-news-color);
    background-color: var(--article-content-bg-color);
    overflow: hidden;
}

.article__info {
    font-size: 0.8125rem;
    display: flex;
    flex-flow: row wrap;
}

.article__info-item {
    margin-right: 3px;
}

.article__info-item::after {
    margin-left: 2px;
}

.article__info-item.--category-description::after {
    content: ">";
}

.article__info-item.--subcategory::after {
    content: "|";
}

.article__headline {
    background: var(--article-headline-color);
    padding: 0.55rem 1.1rem 1.1rem 1.1rem;
}

.article__title {
    color: var(--article-title-color);
    /* margin-top: 13px; */
    margin-top: 2px;
    font-size: calc(1.325rem + .9vw);
}

.article__teaser {
    color: var(--article-teaser-color);
    font-size: 1.25rem;
    font-weight: 500;
    /* margin: 0.5rem 0 0 0; */
    letter-spacing: 0.5px;
}

.article__cover {
    margin-top: 10px;
}

.article__cover-wrapper {
    aspect-ratio: 16/9;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.article__cover figure {
    margin-bottom: 0;
}

.article__cover figure figcaption {
    margin-bottom: 0;
}

.article__cover-caption {
    font-size: 0.875rem;
    font-style: italic;
    text-align: left;
    margin-left: 12px;
}

.article__image {
    width: 100%;
    height: 100%;
}

.article__content figure img,
.article__content p img {
    /* display: none; */
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* center */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.k[class*=s] em {
    background-image: url('../images/suits/suit-spade.svg');
}

.k[class*=c] em {
    background-image: url('../images/suits/suit-club.svg');
}

.k[class*=d] em {
    background-image: url('../images/suits/suit-diamond.svg');
}

.k[class*=h] em {
    background-image: url('../images/suits/suit-heart.svg');
}

.k[class*=s] em,
.k[class*=c] em,
.k[class*=d] em,
.k[class*=h] em {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 16px;
    /* overflow: hidden; */
    position: static;
    text-indent: -999px;
    width: 9px;
}

.k {
    font-family: Calibri, sans-serif !important;
    border: 1px solid #dcdcdc;
    background-color: #f1f1f1;
    color: #484848;
    border-radius: 5px;
    column-gap: 2px;
    display: inline-flex;
    flex-wrap: nowrap;
    /* font-size: 0.75rem; */
    font-style: normal;
    font-weight: 600;
    justify-content: center;
    line-height: 15px;
    /* margin: 0 2px; */
    min-width: 28px;
    padding: 0 2px;
    position: relative;
    /* text-transform: uppercase; */
}

.article__content {
    padding: 0.75rem 1.1rem 1.1rem 1.1rem;
}

.article__content table {
    width: 100%;
    color: #fff;
}

.article__content .table__wrapper {
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.article__content table tbody tr {
    border-bottom: 1px solid #7c7c7f;
}

.article__content table tbody tr td {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 0.5rem;
    text-align: left;
}

.article__content table tbody tr td p {
    margin: 0;
}

.article__content table tbody tr:nth-child(1) {
    background: #d3d3d4;
}

.article__content table tbody tr:nth-child(1) td {
    color: #212127;
}

.article__content figcaption {
    font-size: 0.875rem;
    font-style: italic;
    text-align: left;
    margin-right: 12px;
}

.article__content iframe {
    /* due to old db import */
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16/9;
}

.article__content p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.article__content .oembed__wrapper {
    margin-bottom: 14px;
}

.content__featured-article {
    margin: 0 -0.937rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #413f4d;
    border-bottom: 1px solid #413f4d;
    padding: 0.937rem;
    margin-bottom: 1.875rem;
    font-size: 1.5rem;
    line-height: 2rem;
}

.content__featured-article a {
    color: #205fb6;
}

/* @media screen and (min-width: 768px) {
    .content__featured-article {
        padding: 2.5rem;
    }
} */