.section-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.section-container .article .img-container {
    width: 100%;
    height: 200px;
    max-width: 90%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
}

.section-container .article img {
    width: 500px;
}

.section-container .article {
    width: 300px;
    max-width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

#editor {
    background-color: red;
}

.section-container .article h2 {
    width: 100%;
    padding: 0;
    margin: 0;
    color: #940051;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
    font-family: 'Proza Libre', sans-serif;
}

.section-container .article h2 a {
    width: 100%;
    padding: 0;
    margin: 0;
    color: #940051;
    font-weight: bold;
    text-align: center;
    font-size: 1.1em;
    font-family: 'Proza Libre', sans-serif;
    text-decoration: none;
}

.section-container .article p {
    padding: 0;
    margin: 0;
    color: #000000;
    font-size: 14px;
    font-family: 'Proza Libre', sans-serif;
    text-align: center;

    min-width: 250px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

