.article {
    display: flex;
    flex-direction: column;
    width: auto;
    gap: 20px;
}

.article::after {
    display: block;
    content: '';
    clear: both;
}

.article-title {
    font-family: 'Days One', uppercase, sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #35003D;
}

.article-info {
    display: flex;
    align-items: baseline;
    margin-bottom: 18px;
}

.article-info > :not(:last-child) {
    margin-right: 12px;
}

.article-date {
    font-size: 20px;
}

.article-image {
    width: 200px;
    height: 130px;
    margin: 12px 12px 12px 0;
    float: left;
}

.article-image > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.article-columns {
    display: flex;
}

.article-columns > :first-child {
    flex: 1;
    min-width: 0;
}

.article-columns > :nth-child(2) {
    min-width: 250px;
    width: 250px;
}

.article-columns > :not(:last-child) {
    margin-right: 24px;
}


.page-body-content .section-content > .article-content {
    display: block;
}

.article-content {
    width: 100%;
}

.article-content * {
    color: #505050;
}

.article-content a {
    transition: .4s;
    color: #76527a;
    word-break: break-all;
    text-decoration-thickness: 1px;
    text-decoration-color: #76527a;
}

.article-content a:hover {
    color: #5a1d63;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #5a1d63;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    font-style: normal;
    line-height: 1.1;
    margin-top: 1.25em;
    margin-bottom: 0.75em;
}

.article-content h1:first-child,
.article-content h2:first-child,
.article-content h3:first-child,
.article-content h4:first-child,
.article-content h5:first-child,
.article-content h6:first-child {
    margin-top: 0;
}

.article-content h1::before,
.article-content h2::before,
.article-content h3::before,
.article-content h4::before,
.article-content h5::before,
.article-content h6::before {
    display: block;
    content: '';
    clear: both;
}

.article-content h1 {
    font-size: 20px;
}

.article-content h2 {
    font-size: 18px;
}

.article-content h3 {
    font-size: 16px;
}

.article-content h4,
.article-content h5,
.article-content h6 {
    font-size: 14px;
}

.article-content p {
    margin: 8px 0;
    max-width: 100%;
    text-overflow: ellipsis;
}

.article-content blockquote {
    font-size: 20px;
    font-style: italic;
    margin: 8px 32px;
    padding: 16px;
    background: #f0ece5;
}

.article-content ol,
.article-content ul {
    list-style-type: square;
    margin: 8px 0;
    padding: 0 0 0 24px;
}

.article-content li {
    margin-bottom: 6px;
    max-width: 100%;
    text-overflow: ellipsis;
}

.article-content img {
    display: block;
    max-width: 100% !important;
    height: auto;
}

.article-content img[data-float='left'] {
    float: left;
    max-width: available;
    margin-left: 0;
    margin-right: 36px;
}

.article-content img[data-float='right'] {
    float: right;
    max-width: calc(70vw - 36px);
    margin-left: 36px;
    margin-right: 0;
}

.article-content table {
    display: flex;
    margin-block: 18px;
    border-spacing: 4px;
    overflow: auto;
}

.article-content tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article-content tr {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.article-content th,
.article-content td {
    vertical-align: top;
    padding: 16px;
    border-radius: 4px;
    color: #505050;
}

.article-content thead,
.article-content th {
    background: #35003D;
    color: #FFFFFF;
}

.article-content p:first-child,
.article-content blockquote:first-child,
.article-content ol:first-child,
.article-content ul:first-child,
.article-content img:first-child,
.article-content table:first-child {
    margin-top: 0;
}

.article-content p:last-child,
.article-content blockquote:last-child,
.article-content ol:last-child,
.article-content ul:last-child,
.article-content img:last-child,
.article-content table:last-child {
    margin-bottom: 0;
}

.article-content > :first-child {
    margin-top: 0;
}

.article-content > :last-child {
    margin-bottom: 0;
}