@media (min-width: 960px) {
    .header-columns {
        display: flex;
        position: relative;
        justify-content: center;
    }

    .header-columns .header-container {
        display: flex;
        flex-basis: 100%;
        word-break: keep-all;
        max-width: var(--columns-width);
    }

    .header-columns .column {
        flex-basis: 50%;
    }
}

.header-columns {
    margin-bottom: 50px;
}

.header-columns.left-aligned .column > img {
    display: block;
    border-radius: 25px;
    height: 100%;
    object-fit: cover;
    min-width: 510px;
}

.header-columns.right-aligned img {
    display: block;
    padding-left: 136px;
}

.header-columns.left-aligned .right {
    display: flex;
    flex-direction: column;
    margin-left: 106px;
}

.header-columns.left-aligned .right .centered-container {
    justify-content: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.header-columns.right-aligned .left {
    align-self: center;
}

.header-columns.right-aligned .left ul {
    padding-left: 0;
}

.header-columns.right-aligned .left ul li {
    display: flex;
    align-items: center;
}

.header-columns.right-aligned .left ul li span {
    margin-right: 12px;
    color: var(--nv-secondary-accent);
}

.header-columns h1 {
    margin-top: 19px;
    margin-bottom: 30px;
}

.header-columns .top-container {
    display: flex;
    justify-content: space-between;
}

.header-columns .bottom-content {
    display: flex;
    justify-content: space-between;
}

.header-columns .author-block,
.header-columns .gepruft-block {
    display: flex;
    align-items: center;
}

.header-columns .author-image,
.header-columns .gepruft-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    display: inline-block;
}

.header-columns .author-image img,
.header-columns .gepruft-image img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 100%;
}

.header-columns .author-text,
.header-columns .gepruft-text {
    line-height: normal;
    font-size: 12px;
}

.header-columns .author-text .name,
.header-columns .gepruft-text .name {
    font-weight: bold;
}

.header-columns .gepruft-text .gepruft-check {
    display: flex;
    align-items: center;
}

.header-columns .gepruft-text .gepruft-check i {
    color: var(--nv-primary-accent);
}

.header-columns .header-button {
    background: var(--nv-primary-accent);
    border-radius: 50px;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.header-columns .header-button a {
    color: #fff !important;
    text-decoration: none;
    padding: 0;
    line-height: 46px;
    text-align: center;
    font-weight: 500;
    width: 100%;
    margin-bottom: 0;
}

.header-columns .header-button a:hover {
    opacity: 1;
}

.header-columns .header-button a:before {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    left: 36px;
    background: var(--arrow-svg);
    background-repeat: no-repeat;
    background-position-y: 34px;
    transform: rotate(90deg);
    background-position-x: center;
}

.header-columns .header-button a:after {
    content: '';
    position: absolute;
    width: 46px;
    height: 46px;
    right: 36px;
    background: var(--arrow-svg);
    background-repeat: no-repeat;
    background-position-y: 0;
    transform: rotate(90deg);
    background-position-x: center;
}

.header-columns .bottom-text {
    font-size: 12px;
    line-height: 15px;
}

.header-columns .read-time,
.header-columns .last-updated {
    font-size: 12px;
    line-height: normal;
}

.header-columns .last-updated {
    font-weight: 500;
}

.header-columns.no-image .header-container {
    display: block;
}

@media (max-width: 1200px) {
    .header-columns {
        padding-left: 24px;
        padding-right: 24px;
    }
    .header-columns.left-aligned .right {
        margin-left: 60px;
    }
}

@media (max-width: 960px) {
    .header-columns.left-aligned .column > img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
        object-position: center;
        min-width: auto;
    }

    .header-columns.left-aligned .right {
        margin-left: 0;
    }

    .header-columns .right .top-container {
        margin-bottom: 24px;
    }

    .header-columns .author-text .name {
        font-weight: bold;
    }

    .header-columns .author-text .position {
        font-style: italic;
    }

    .header-columns .bottom-text {
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .header-columns.left-aligned .column > img {
        width: 100%;
        max-height: 200px;
        object-fit: cover;
        object-position: center;
    }
}
