.article-hero {
    display: flex;
}

    .article-hero .image {
        flex: 1 0 40%;
        box-sizing: border-box;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }



    .article-hero .gradient {
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to bottom, rgba(14,14,14, 0.40) 0%, rgba(14,14,14,0.40) 15%, rgba(14,14,14, 0.2) 35%, rgba(14,14,14, 1) 93%);
    }


    .article-hero .content {
        flex: 1 0 60%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        padding: 80px 20px;
    }

        .article-hero .content h1 {
            width: 70%;
            max-width: 430px;
            margin: 20px 0;
        }

        .article-hero .content .meta {
            font-size: 16px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

            .article-hero .content .meta span {
                display: inline-flex;
                align-items: center;
                line-height: 1;
            }

                .article-hero .content .meta span svg {
                    margin-right: 8px;
                }

                .article-hero .content .meta span.text {
                    opacity: 0.7;
                }

            .article-hero .content .meta:first-child {
                font-size: 16px;
                font-weight: bold;
                text-transform: uppercase;
            }

@media only screen and (max-width: 1400px) {
    .article-hero .image {
        flex: 1 0 50%;
    }


    .article-hero .content {
        flex: 1 0 50%;
    }
}




.article-body .container {
    max-width: 1286px;
}

.article-body .container {
    display: flex;
    width: 100%;
}

    .article-body .container .primary {
        width: 240px;
        padding-right: 20px;
    }

.article-body .secondary {
    flex: 1;
}

    .article-body .secondary .article-image {
        display: none;        
    }

        .article-body .secondary .article-image img {
            width: 100%;
            height: auto;
        }


@media only screen and (max-width:1025px) {

    .article-hero {
        flex-direction: column;
    }

        .article-hero .image {
            display: none;
        }

        .article-hero .content {
            text-align: center;
        }

            .article-hero .content .meta {
                display: flex;
                justify-content: center;
            }

            .article-hero .content h1 {
                width: 100%;
                margin: 20px 0;
                max-width: unset;
            }

    .article-body .secondary .article-image {
        display: block;
    }
}

@media only screen and (max-width:768px) {
    .article-body .container {
        max-width: unset;
    }

    .article-body .container {
        flex-direction: column-reverse;
    }

        .article-body .container .primary {
            width: unset;
            padding-right: 0;
        }

        .article-body .container .secondary {
            text-align: justify;
        }
}


span.star-icon {
    width: 34px;
    height: 34px;
    fill: red;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='30'%3E%3Cpath d='M31.77 11.857H19.74L15.99.5l-3.782 11.357H0l9.885 6.903-3.692 11.21 9.736-7.05 9.796 6.962-3.722-11.18 9.766-6.845z' fill='white' /%3E%3C/svg%3E");
    background-size: contain;
    background-position: center center;
}

span.inline-icon {
    margin-right: 10px;
}
