main .section-container {
    padding-top: 3rem;

}

.return {
    background: rgb(249 250 251);
}

.return > div {
    padding: 20px;
}

.return a {
    display: flex;
    gap: 10px;
    align-items: center;
}

.return a:hover {
    color: var(--orange);
}

article .infos {
    border-bottom: var(--border);
    padding-bottom: 20px;
}

article .infos .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

article .infos h1 {
    margin: 15px 0 20px 0;
    text-wrap: balance;
}

article .details {
    display: flex;
    gap: 20px;
}

article .details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--grey);
    font-size: 14px;
}

article figure {
    margin: 20px 0;
}

article figure img {
    border-radius: var(--medium-radius);
    box-shadow: var(--medium-shadow);
}

article h2 {
    margin: 20px 0 10px 0;
    text-wrap: balance;
    text-align: left;
}

article h3 {
    margin: 15px 0 5px 0;
}

article h4 {
    margin: 10px 0 0 0;
}

article .content ol,
article .content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    text-align: justify;
}

article .content ol {
    list-style-type: decimal;
}

article .content ul {
    list-style-type: disc;
}

article .content strong {
    font-weight: 700;
}

article .content em {
    font-style: italic;
}

article .content a {
    text-decoration: underline;
}

article .content a:hover {
    color: var(--orange);
}

article li {
    line-height: 1.6;
}

article p {
    text-align: justify;
}

.cta {
    background: linear-gradient(90deg, #fdf2f8, #fff7ed);
    padding: 20px;
    border-radius: var(--medium-radius);
    box-shadow: var(--small-shadow);
    text-wrap: balance;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.cta h2 {
    margin: 0;
    text-align: center;
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        .return > div {
            padding: 25px 40px;
        }

        article {
            max-width: 900px;
            margin: 0 auto;
        }

        article .infos {
            padding-bottom: 25px;
        }

        article .infos h1 {
            margin: 20px 0 25px 0;
        }

        article .details span {
            font-size: 15px;
        }

        article figure {
            margin: 25px 0;
        }

        .cta {
            margin-top: 40px;
            padding: 25px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            .return > div {
                max-width: 1520px;
                margin: 0 auto;
                padding: 30px 60px;
            }

            article .infos {
                padding-bottom: 30px;
            }

            article .infos h1 {
                margin: 25px 0 30px 0;
            }

            article .details span {
                font-size: 16px;
            }

            article figure {
                margin: 30px 0;
            }

            .cta {
                margin-top: 50px;
                padding: 30px;
                width: 80%;
                min-width: 500px;
            }
        }