.progress-list {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.progress-list__wrapper {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    flex-wrap: wrap;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list__wrapper {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.progress-list__header {
    width: 100%;
    padding-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list__header {
        padding-right: 2rem;
        width: auto;
    }
}

.progress-list__header h2 {
    color: #FF471C;
    font-size: 15px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list__header h2 {
        text-align: left;
    }
}

.progress-list__header hr {
    width: 30px;
    border-color: #FF471C;
    margin-left: auto;
    margin-right: auto;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list__header hr {
        margin-left: initial;
        margin-right: initial;
    }
}

.progress-list__list {
    flex: 1;
}

/* PROGRESS LIST ARTICLE */
.progress-list-article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.progress-list-article__image {
    width: 100%;
    margin-bottom: 1rem;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list-article__image {
        max-width: 370px;
        padding-right: 2rem;
    }
}

.progress-list-article__image img {
    width: 100%;
    box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.16);
}

.progress-list-article__content {
    width: 100%;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list-article__content {
        flex: 1;
    }
}

.progress-list-article__header aside {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-list-article__header aside p {
    color: #9B9B9B;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 1rem;
}

.progress-list-article__header aside hr {
    flex: 1;
    border-color: #CBCBCB;
}

.progress-list-article__header header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #CBCBCB;
}

.progress-list-article__header header h3 {
    font-size: 24px;
    line-height: 1.2;
}

/* For tablet landscape up */
@media (min-width: 900px) {
    .progress-list-article__header header h3 {
        font-size: 32px;
        line-height: 1.3;
    }
}

.progress-list-article__footer {
    max-width: 450px;
    width: 100%;
    margin-left: auto;
}

.progress-list-article__footer footer {
    display: flex;
    align-items: center;
    padding-top: 1rem;
}

.progress-list-article__footer footer .button {
    display: inline-block;
    padding: .4rem .65rem;
    background-color: #ff471c;
    border: 1px solid #ff471c;
    text-transform: uppercase;
    color: #fff;
    border-radius: 10px;
}

.progress-list-article__footer footer hr {
    flex: 1;
    border-color: #CBCBCB;
    margin-left: 1rem;
}

