.article-container {
    width: 800px;
    word-break: auto-phrase;
    padding: 48px 12px;
}

.article-header-image {
    width: 100%;
    border-radius: var(--border-radius);
}

.article-wrapper {
    background-color: var(--white);
    width: 1000px;
    border-radius: var(--border-radius);
    margin: 48px 0;
}

.article-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

img {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .article-wrapper {
        width: 100%;
        border-radius: 0;
        margin-top: 30px;
        margin-bottom: 0;
    }

    .article-container {
        width: auto;
        padding: 0;
    }

    .article-section {
        background-color: var(--white);
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}