.sgnews {
    font-family: 'EncodeSans';
    font-weight: 700;
    font-size: 24px;
    color: #353434;
}

.sgnews_object {
    display: flex;
    padding: 25px;
}
@media (max-width: 1024px){
    .sgnews_object {
        flex-direction: column;
    }
    .sgnews img {
        width: 100%;
    }
    .sgnews_text {
        width: 100%;
    }
    .sgnews_date {
        margin: 10px 0 0 10px;
    }

    .sgnews_title {
        margin: 10px 0 0 10px;
    }

    .sgnews_content {
        margin: 10px 0 0 10px;
    }

    .sgnews_content.full {
        margin: 10px 0 0 10px;
    }
}

@media (min-width: 1025px){
    .sgnews_object {
        flex-direction: row;
    }
    .sgnews img{
        width: 20vw;
        height: 270px;
    }
    .sgnews_text {
        width: 40vw;
    }
    .sgnews_date {
        margin: 10px 0 0 30px;
    }

    .sgnews_title {
        margin: 10px 0 0 30px;
    }

    .sgnews_content {
        margin: 10px 0 0 30px;
    }

}

.sgnews img{
    background: #C4C4C4;
    margin-right: 20px;
}

.sgnews_date {
    font-weight: 400;
    font-size: 18px;
}

.sgnews_title {
    font-weight: 700;
    font-size: 40px;
}

.sgnews_content {
    font-weight: 400;
    font-size: 16px;
}

.sgnews_content.full {
    display: none;
    font-weight: 400;
    font-size: 16px;
}

.sgnews_action {
    cursor: pointer;
}