.most-hits-headline {
    font-size: 30px;
}

.most-hits-container {
    background-color: #F0F0F0;
    padding: 24px;
}

.most-hits-article-wrapper {
    display: flex;
}

.most-hit-article {
    display: flex;
    width: 33%;
}

.most-hit-article:after {
    content: '';
    background-color: white;
    transform: translateY(-20%);
    height: 120%;
    width: 7px;
    margin-right: 30px;
}

.most-hit-article:last-child:after {
    display: none;
}

.most-hit-article > div {
    display: inline;
    width: 100%;
}

/* index */
.most-hit-article > span {
    font-size: 34px;
    font-family: 'FiraSansNorm', serif;
    margin-right: 8px;
}

.most-hit-subtitle {
    color: #649739;
    font-size: 16px;
    margin: 5px 0;
}

.most-hit-title {
    color: black;
    font-family: 'FiraSansMedi', serif;
    font-size: 18px;
    padding-right: 15px;
}

@media (max-width: 639px) {
    .most-hits-headline {
        font-size: 30px;
        padding-top: 1rem;
        margin-bottom: 0;
    }

    .most-hits-article-wrapper {
        flex-direction: column;
    }

    .most-hit-article {
        margin: 20px 0;
        width: 100%;
        position: relative;
    }

    .most-hit-title {
        padding-bottom: 20px;
    }

    .most-hit-article:after {
        position: absolute;
        top: 120%;
        transform: translateY(0);
        height: 5px;
        width: 100%;
        margin-right: 0;
    }
}
