.text-content {
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
    position: relative;
    display: block;

    & .inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0.6rem;

        & .left-wrap {
            max-width: 5.65rem;
        }

        & .right-wrap {
            width: 7.5rem;
            margin-left: auto;
            margin-right: 0;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        & .subtitle {
            width: 6.9rem;
        }

        & .text {
            width: 6.9rem;
        }

        & .text-wrap-list {
            margin-top: 0.1rem;
            display: flex;
            flex-direction: column;
            gap: 0.2rem;

            & .text-box {
                width: 6.9rem;
                display: flex;
                flex-direction: row;
                gap: 0.3rem;

                & span {
                    display: block;
                }

                & .item-title {
                    width: 1.5rem;
                }

                & .item-text {
                    width: 5.1rem;
                }
            }
        }

        & .text-wrap-columns {
            margin-top: 0.1rem;
            width: 6.7rem;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 0.2rem;

            & .text-box {
                width: 2.1rem;
                display: flex;
                flex-direction: column;
                gap: 0.04rem;

                & span {
                    display: block;
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        margin-top: 0.6rem;
        margin-bottom: 0.6rem;

        & .inner {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.2rem;

            & .left-wrap {
                max-width: 100%;
            }

            & .right-wrap {
                width: 100%;
                padding-right: 0;
                margin: 0;
                gap: 0.2rem;
            }

            & .subtitle {
                width: 100%;
            }

            & .text {
                width: 100%;
            }

            & .text-wrap-list {
                & .text-box {
                    width: 100%;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    gap: 0.02rem;

                    & .item-title {
                        width: 100%;
                    }

                    & .item-text {
                        width: 100%;
                    }
                }
            }

            & .text-wrap-columns {
                width: 100%;

                & .text-box {
                    width: 1.62rem;
                    gap: 0.02rem;

                    &.mobile-full {
                        width: 100%;
                    }
                }
            }
        }
    }
}
