.content {
    justify-content: flex-start;
}

.news-header-columns {
    width: 100%;
    padding: 20px 0px;
    display: inline-flex;
    gap: 2rem;
}

.news-list-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 0 20px 0;
    position: relative;
    padding-left: 16px;
}

.news-list-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 1.2em;
    width: 5px;
    background: var(--logo-blue);
    border-radius: 2px;
}

.news-list-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-family: "Mariupol-Bold", sans-serif;
    color: var(--secondary-text);
}

.no-events-message {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--secondary-background);
    border: 1px solid var(--border-color);
    border-radius: 1.2rem;
    box-shadow: var(--card-shadow);
    color: var(--additional-text);
}

.no-events-message p {
    margin: 0 0 1rem 0;
}

.no-events-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.no-events-socials span {
    font-family: "Mariupol-Bold", sans-serif;
    color: var(--secondary-text);
}

.no-events-socials .social-buttons {
    margin: 0;
}

.no-events-socials .social-buttons a {
    background-color: var(--logo-blue);
}

.news-header-columns .column {
    width: 50% !important;
}

.news-header-columns .column-right {
    justify-content: end;
}

@media (max-width: 440px) {
    .courses-banner {
        background-image: none;
    }
    
    .news-header-columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-header-columns .column {
        width: 100% !important;
    }
    
    .news-header-columns .column-right {
        justify-content: start;
    }
}