.columns {
    width: 100%;
    display: inline-flex;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    gap: 35px;
}

.column {
    display: flex;
    align-items: center;
    padding: 0px;
}

.newspaper-column {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: max-content;
}

.content h2 {
    font-size: 1.3rem;
}

.column-left {
    display: flex;
    flex-direction: column;
    width: 70%;
    align-items: start;
}

.news-header-columns .column-right a {
    color: var(--logo-blue);
}

.newspaper-article-header {
    font-family: "Mariupol-Bold", sans-serif;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--primary-text);
    text-decoration: underline;
}

.newspaper-article-header:hover {
    color: var(--accent-color);
}

.archive-button {
    background-color: var(--accent-color);
}

.news-list-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 10px 0 20px 0;
}

.news-list-header h2 {
    width: 80%;
    margin: 0;
}

.news-list-header img {
    max-width: 20%;
    height: 1.3rem;
    width: auto;
    align-self: center;
    margin-left: auto;
}

.custom-horizontal-list-element {
    width: 100%;
}

.vertical-list-element img {
    height: auto;
    aspect-ratio: 1;
}

.vertical-list-element-text p {
    margin: 0;
}


.newspaper {
    width: 100%;
    padding: 20px;
    background-color: var(--secondary-background);
    border-radius: 1.5rem;
}

.newspaper img {
    width: 100%;
    aspect-ratio: 1/1.414;
    border-radius: 0.93rem;
    margin-bottom: 1rem;
    object-fit: cover;
}

.newspaper p {
    font-size: 0.9rem;
    width: 50%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    color: var(--secondary-text);
}

.archive-link {
    color: var(--logo-blue) !important;
}

.archive-button {
    background-color: var(--logo-blue);
}

.archive-button:hover {
    background-color: var(--secondary-text);
    cursor: pointer;
}

@media (min-width: 991px) {
    .vertical-list-element-first {
      flex-direction: column;
    }
    
    .vertical-list-element-first .vertical-list-element-text {
        width: 100%;
    }
    
    .vertical-list-element-first img {
        width: 100%;
        aspect-ratio: 6 / 3;
    }
}

@media (max-width: 991px) {
    .columns {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100vw;
    }
    
    .column {
        width: 100%;
        margin-bottom: 3%;
        padding: 20px;
    }
    
    .column-left {
        width: 100%;
        margin-bottom: 0;
    }

    .announcement {
        display: none;
    }
    
    .newspaper img {
        height: 50vw;
        aspect-ratio: unset;
        object-position: top right;
    }
}
