.collapsible-content {
    position: relative;
    display: block;
    overflow: hidden;

    & .inner {
        position: relative;
        /* overflow: hidden; */
        padding: 0.3rem 0 0.3rem 0;

        & .open-close-section {
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            cursor: pointer;
            z-index: 1;
            user-select: none;
        }

        & .collapse-wrap {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 0.6rem;
            position: relative;
            /* overflow: hidden; */
            height: auto;
        }

        &:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0.01rem;
            background-color: rgba(0, 0, 0, 0.2);
        }

        &:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0.01rem;
            background-color: rgba(0, 0, 0, 0.2);
        }

        &.remove-top-border {
            &:before {
                display: none;
            }
        }

        &.remove-bottom-border {
            &:after {
                display: none;
            }
        }

        & .collapse-btn {
            position: absolute;
            top: 0.3rem;
            right: 0;
            width: 0.3rem;
            height: 0.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 0.1rem;
            background-color: var(--color-white);

            & svg {
                width: 0.18rem;
                height: 0.18rem;
            }
        }

        & .left-wrap {
            max-width: 5.65rem;
            min-height: 0.38rem;
        }

        & .right-wrap {
            width: 7.5rem;
            margin-left: auto;
            margin-right: 0;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        & .full-wrap {
            width: 100%;
        }

        & .subtitle {
            width: 6.7rem;
        }

        & .text {
            width: 6.7rem;
        }

        .text > *:last-child {
            margin-bottom: 0;
        }

        & .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) {
        & .inner {
            flex-direction: column;
            justify-content: flex-start;
            gap: 0.2rem;

            & .collapse-wrap {
                gap: 0.3rem;
            }

            & .left-wrap {
                max-width: 100%;
                min-height: 0.26rem;
            }

            & .right-wrap {
                width: 100%;
                padding-right: 0;
                margin: 0;
                gap: 0.2rem;
            }

            & .subtitle {
                width: 100%;
            }

            & .text {
                width: 100%;

                & blockquote {
                    & p {
                        font-size: 0.26rem;
                    }

                    &::after {
                        display: none;
                    }
                }
            }

            & .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%;
                    }
                }
            }
        }
    }
}

.image-slider-collapsible {
    display: block;
    position: relative;
    margin-top: 0.6rem;

    & .slider {
        position: relative;
        overflow: visible;
        width: 100%;
        /* margin-left: auto;
        margin-right: 0.8rem; */
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        cursor: pointer;

        & .splide__track {
            overflow: visible;
            position: relative;
            left: -0.6rem;
        }

        .slide {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        & .image-wrap {
            width: 100%;
            height: 3.71rem;
            position: relative;
            border-radius: 0.2rem;
            overflow: hidden;

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        & .slider-nav {
            width: 100%;
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
            align-items: center;
            margin-top: 0.1rem;

            & .arrows {
                display: flex;
                flex-direction: row;
                gap: 0.1rem;

                & .arrow-prev,
                .arrow-next {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 0.18rem;
                    height: 0.18rem;
                    cursor: pointer;
                    svg {
                        width: 0.18rem;
                        height: 0.18rem;
                    }
                }
            }
        }
    }

    @media screen and (max-width: 768px) {
        & .slider {
            width: 100%;
            margin-right: 0;
            gap: 0.1rem;

            & .image-wrap {
                height: 1.54rem;
                position: relative;
                border-radius: 0.08rem;
                overflow: hidden;
                margin-left: 0.15rem;
            }

            & .slider-nav {
                padding-right: 0.15rem;
                width: 100%;
            }
        }
    }
}

.full-image-section-collapsible {
    margin: 0.6rem 0;
    position: relative;
    display: block;

    & .image-wrap {
        width: 100%;
        height: 7.61rem;
        position: relative;
        border-radius: 0.2rem;
        overflow: hidden;

        & img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            vertical-align: middle;
        }
    }

    & .img-desc {
        margin-top: 0.1rem;
        display: block;
        position: relative;
    }

    @media screen and (max-width: 768px) {
        margin: 0.6rem 0;

        & .image-wrap {
            height: 1.9rem;
        }
    }
}