.article {
    min-height: 700px;
    display: flex;flex-direction: row;
    flex-wrap: nowrap;
}

.article > .content {
    width: 1400px;
}

.article > .facebook {
    width: 360px;
    margin-left: auto;
    text-align: center;
    background-color: var(--color-white-alter);
    border-radius: 20px;
}

.article > .content > h1, .article > .content > .date {
    margin: 0;
    padding: 0;
}

.article > .content > .date {
    margin-top: 10px;
}

.article > .content > .type {
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-main);
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 30px;
}

.article > .content > .banner {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1850px) {
    .article > .content {
        width: 1000px;
    }
}

@media screen and (max-width: 1450px) {
    .article > .content {
        width: 800px;
    }
}

@media screen and (max-width: 1350px) {
    .article {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    .article > .facebook {
        display: none;
    }

    .article {
        padding: 0 5px;
    }

    .article > .content {
        width: 100%;
    }

    .article > .content > .banner {
        height: auto;
    }
}