main > .blue {
    background-color: var(--sl-blue);
    padding: 1px 0;
}

main > .blue > hgroup > h4 {
    margin-top: 60px;
}

.news {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: var(--white);
}

.news h3 {
    margin: 0;
    color: var(--dgray);
}

.news h3 a {
    text-decoration: none;
    color: var(--dgray);
}
.news h3 a:hover {
    color: var(--d-blue);
}

.news p {
    margin: 15px 0 25px 0;
}

.news span {
    position: relative;
    font-size: 14px;
    background-color: var(--red);
    color: var(--white);
    display: inline-block;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    margin-top: 20px;  
}

.news span::before {
    position: absolute;
    content: '';
    display: block;

    left: 3px;
    top: -7px;
    width: 0; 
    height: 0; 

    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent; 
    border-left: 5px solid var(--red);

    transform: rotate(45deg);
}

.news > a:last-child {
    display: block;
    background-color: var(--lgray);
    background-image: url('/animus/svg/more.svg');
    background-size: contain;
    background-size: 20px;
    background-repeat: no-repeat;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 399.999px) {
    .news {
        padding: 20px;
        margin-bottom: 30px !important;
    }

    .news h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .news span {
        padding: 4px 20px 4px 25px;
        margin-left: -28px;
    }

    .news a:last-child {
        padding: 10px 20px;
        margin: auto -20px -20px -20px;
        background-position: right 20px center;
    }
}

/* Tablet & Desktop */
@media (min-width: 400px) {
    .news {
        padding: 30px;
        margin-bottom: 30px !important;
    }

    .news h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .news span {
        padding: 4px 20px 4px 35px;
        margin-left: -38px;
    }

    .news > a:last-child {
        padding: 10px 30px;
        margin: auto -30px -30px -30px;
        background-position: right 30px center;
    }
}


.cnews {
    text-align: center;
    margin: 40px 10% 0 10%;
}

.cnews h1 {
    font-size: 30px;
    line-height: 42px;
    color: var(--dgray);
}

.cnews span.date {
    background-color: var(--red);
    border-radius: 7px;
    font-size: 14px;
    color: var(--white);
    padding: 4px 20px;
}


.cnews picture.icon {
    display: inline-block;
    border: 1px solid var(--blue);
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(to bottom, var(--white), var(--sl-blue));
}

.house {
    box-sizing: border-box;
    width: 100%;
    position: relative;

    text-align: center;
    padding: 40px 20px;
}

.house::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background-image: url('/animus/img/animus_house.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .2;
    z-index: -1;
}

.house a {
    text-decoration: none;
    color: var(--dgray);
}

.house a:hover {
    color: var(--blue);
}
