.cbird-blog {
    width: 100%;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
}

.cbird-blog-header {
    display: flex;
    justify-content: space-between;
    height: 76px;
    align-items: center;
}

.cbird-blog-headline {
    font-size: 40px;
    line-height: 35px;
    font-weight: 800;
}

.cbird-blog-link:hover .cbird-blog-arrow {
    left: 5px;
    transition: all 0.3s ease;
}

.cbird-blog-box {
    position: relative;
    display: flex;
    padding: 20px 0;
    border-top: 1px solid #ffffff;
    background-color: transparent;
    transition: all 0.3s ease;
}

.cbird-blog-box:hover {
    background-color: #061b36;
    transition: all 0.3s ease;
}

.cbird-blog-boxes:last-child {
    border-bottom: 1px solid #ffffff;
}

.cbird-blog-box-cat {
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    padding: 3px 8px;
    font-family: 'Kuunari Rounded Medium Cond';
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0c2a51;
}

.cbird-blog-box-image {
    width: 140px;
    margin-right: 20px;
    height: 118px;
    background-position: center;
    background-size: cover;    
}

.cbird-blog-box-content {
    width: 550px;
    max-width: calc(100% - 215px);
}

.cbird-blog-box-title {
    font-family: 'Kuunari Rounded';
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

.cbird-blog-box-text {
    font-family: 'Open Sans';
    font-size: 12px;
    color: #ffffff;
    line-height: 19px;
    margin-bottom: 22px;
    text-decoration: none;
    word-break: break-word;
}

.cbird-blog-box-categories {
    font-size: 12px;
    font-family: 'Open Sans';
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 12px;
    margin-bottom: 10px;
}

.cbird-blog-box-categories strong {
    font-weight: 800;
}

.cbird-blog-box-tags {
    margin-bottom: 0;
}

.cbird-blog-sidebar {
    position: relative !important;
    right: 0 !important;
}

@media only screen and (max-width: 500px) {

    .cbird-blog-box {
        width: 100%;
        flex-direction: column;
    }
    
    .cbird-blog-box-image {
        margin: -20px 0 20px 0;
        width: 100%;
        height: 0;
        padding-top: 80%;
    }

    .cbird-blog-box-content {
        width: 100%;
        max-width: 100%;
    }

}