.news.single {
    main {
        .wrapper {
            display: flex;
            flex-direction: column-reverse;

            @media screen and (min-width: 1000px) {
                flex-direction: row;
                gap: 20px;
            }

            .left {
                h1 {
                    text-align: center;
                    font-family: "Annie Use Your Telescope", "sans-serif";
                    color: var(--color-bg-surface);
                    font-size: 2rem;
                    font-weight: 400;

                    @media screen and (min-width: 1000px) {
                        font-size: 3rem;
                        text-align: start;
                    }
                }

                .btn {
                    margin: 40px auto 0;

                    @media screen and (min-width: 1000px) {
                        margin: 40px 0 0;
                    }
                }
            }

            .right {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;

                p {
                    margin: 0;
                    font-size: 0.8rem;

                    @media screen and (min-width: 1000px) {
                        font-size: 1rem;
                    }

                }

                @media screen and (min-width: 1000px) {
                    position: relative;
                    top: 50px;
                    margin-bottom: 50px;
                }

                .bottom {
                    display: flex;
                    flex-direction: column;
                    align-items: center;

                    .article-category {
                        padding: 5px 10px;
                        border-radius: 10px;
                        color: var(--color-font-surface);
                        background: var(--color-bg-surface);
                        max-width: max-content;
                        margin: 0 auto;
                    }
                }

                img {
                    width: 300px;
                    height: 300px;
                    border-radius: 50%;
                    object-fit: cover;

                    @media screen and (min-width: 1000px) {
                        width: 400px;
                        height: 400px;
                    }
                }
            }

            .left, .right {
                width: calc(100% - 40px);
                padding: 20px;

                @media screen and (min-width: 1000px) {
                    width: calc(50% - 50px);
                }
            }
        }
    }
}
