.explanation {
    background-color: #fff;
    border-radius: 4px;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.06);
    margin-top: 2rem;
    font-weight: 300;
    font-family: "museo", sans-serif;
}

.explanation h3 {
    font-size: 1.625rem;
    color: #154E84;
    margin-top: 0;
}

.explanation__row {
    overflow: hidden;
    border-bottom: 1px solid #DBE4EB;
    margin-bottom: 0.9rem;
    padding-bottom: 1.25rem;
}

.explanation__headtext {
    color: #154E84;
    font-size: 1.625rem;
}

.explanation__subtext {
    color: #154E84;
}

.explanation__price {
    font-size: 1.875rem;
    font-weight: 500;
    color: #649A2B;
}

.explanation__text .explanation__price {
    font-size: 1.5rem;
    margin-top: 1rem;
}

.explanation__text {
    margin: 2rem 0 -1rem;
}

.explanation__text-row {
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
}

@media only screen and (max-width: 980px) {
    .explanation {
        font-size: 1rem;
    }

    .explanation__row h3, .explanation__headtext {
        font-size: 1.25rem;
    }

    .explanation__price {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 600px) {
    .explanation__row + .explanation__row h3 {
        display: none;
    }

    .explanation__price {
        text-align: center;
    }
}

@media only screen and (max-width: 600px) {
    .explanation {
        padding: 20px;
    }

    .explanation__row .l-cell50 {
        width: 100%;
    }

    .explanation__row .l-cell25 {
        width: 50%;
    }

    .explanation__price {
        margin-top: 1rem;
    }

    .explanation__text .explanation__price {
        padding: 0;
        text-align: left;
        width: auto;
    }

    .explanation__price h3 {
        font-size: 1rem;
    }

    .explanation__text-row {
        flex-direction: column;
        align-items: flex-start;
    }
}