.ros__auther_info {
    max-width: var(--premary_width);
    height: 30rem;
    background: #e6e6e6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    box-shadow: 9px 9px 8px #dcdbdb;
    position: relative;

    & * {
        font-family: "Inria Sans", sans-serif;
    }

    /*  */
    &.Auth__Style_2 {
        & .Top__Top {
            display: flex;
            flex-direction: row;
            padding: 0 5rem;
            gap: 1rem;

            & .top__ {
                border-right: 1px solid #bbb5b5;
                padding-right: 2rem;
            }

            & .middle__ {
                text-align: left;
            }
        }
    }

    /*  */
    .Top__Top {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;

        & .top__ {
            display: flex;
            gap: 2rem;
            align-items: center;

            & img {
                border-radius: 100%;
                border: 5px solid #bbb5b5;
                padding: 1px;
                max-width: 10rem;
                max-height: 10rem;
                height: 10rem;
                width: 10rem;
            }

            & div {
                display: flex;
                flex-direction: column;
                gap: 0px;
                align-items: flex-start;
                font-weight: bold;

                & p:first-child {}

                & p:last-child {
                    font-size: 27px;

                    & span {
                        color: #b54dc7;
                    }
                }
            }
        }
    }

    /*  */
    & .middle__ {
        width: 70%;
        text-align: center;
        font-size: 14px;
    }

    /*  */
    & .bottom__ {
        & ul.social {
            height: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;

            & li {
                height: 100%;
                width: 32px;
                border-radius: 5px;
                border: 2px solid #bbb5b5;
                display: flex;
                align-items: center;
                justify-content: center;

                & a {
                    display: contents;

                    & svg {
                        fill: #666666;
                    }
                }
            }
        }
    }

    /*  */
    .postCount {
        position: absolute;
        border: 2px solid #bbb5b5;
        padding: 9px 10px 10px;
        border-radius: 100px;
        font-weight: bold;
        font-size: 13px;
        font-family: monospace;
        background: #e2e2e2;
        top: 10px;
        right: 10px;
    }
}

/* Responsive Columns */
@media ((min-width: 400px) and (max-width: 576px)) {
    & .ros__auther_info {
        height: auto !important;
        padding: 3rem 1rem;
        margin: 3rem 7px;

        & .Top__Top {
            display: flex;
            flex-direction: column !important;
            gap: 1rem !important;
            padding: 0 !important;

            & .top__ {
                border: none !important;
                border-bottom: 1px solid #bbb5b5 !important;
                padding: 0 !important;
                padding-bottom: 1rem !important; 
            }

            & .middle__ {
                width: 100% !important;
                text-align: center !important;
            }
        }
    }
}