.section {
    padding: 1rem;
    overflow: hidden
}

.section__header {
    display: flex;
    align-items: center;
    gap: 1rem
}

.section__header>h1, .section__header>h2, .section__header>h3 {
    margin: 0;
    padding: 0
}

.section__inner {
    margin: 0 auto;
    width: 100%;
    max-width: var(--content-width)
}

.section.popular {
    background-color: var(--color-primary)
}

.section-title {
    font-size: 1.5rem;
    letter-spacing: normal;
    margin: 0;
    padding: 0
}

.related-articles {
    display: flex;
    align-items: center;
    box-shadow: var(--header-shadow);
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 1rem;
    background-repeat: no-repeat;
    background-position: 100%
}

.related-articles p {
    width: calc(100% - 32px)
}

.related-articles:after {
    display: none;
    content: "";
    width: 32px;
    height: 32px;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg%20fill=%22rgb(6,%200,%20238)%22%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%2024%2024%22%3E%3Ctitle%3Earrow-right-bold%3C/title%3E%3Cpath%20d=%22M4%2015V9h8V4.16L19.84%2012%2012%2019.84V15H4z%22/%3E%3C/svg%3E")
}

.related-articles:hover:after {
    display: inline-block
}

.mdl-color-text--white svg * {
    fill: var(--color-light)
}

.section.trending .mdl-card {
    height: 100%
}

.section.trending .mdl-card .mdl-card__actions {
    position: absolute;
    bottom: 0
}

.section.trending .mdl-card .card-spacer {
    min-height: 53px
}

.popular--card>.mdl-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-radius: 4px;
    overflow: hidden
}

.popular-cell--2, .popular-cell--3, .popular-cell--4, .popular-cell--5 {
    display: none
}

.home-slogan {
    position: relative;
    background-size: cover;
    background-position: 50%;
    padding: 5rem 1rem;
    text-align: center;
    color: var(--font-color-light);
}

.home-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mdl-primary);
    opacity: .5;
    border-bottom: 2px var(--color-light)solid;
    border-top: 3px var(--color-light)solid;
    z-index: 0 !important
}

.home-slogan p {
    font-size: 1.4rem;
    line-height: 3rem;
    font-weight: 300;
    margin-bottom: 0;
    position: relative;
    z-index: 1
}

.slogan-highlight {
    color: var(--font-color-light);
    font-weight: 800
}

@media(max-width:450px) {
    .home-slogan {
        padding: 2rem 1rem
    }
}

@media(min-width:760px) {
    .home-slogan p {
        font-size: 2rem
    }
}

@media screen and (min-width:960px) {
    .popular-cell--2 {
        display: block
    }
}

@media screen and (min-width:1280px) {
    .popular-cell--3 {
        display: block
    }
}

@media screen and (min-width:1920px) {
    .popular-cell--4 {
        display: block
    }
}

@media screen and (min-width:2560px) {
    .popular-cell--5 {
        display: block
    }
}