:root {
    --vh: 100%;
}

/* About Page */
    .section-about-01 {
        padding: var(--COMMON-PADDING-150) var(--COMMON-PADDING) 0;

        .content {
            display: flex;
            flex-direction: column;
            gap: min(30vw, 100px);

            strong {
                font-size: min(4vw, 18px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                line-height: 1.5;
            }

            p {
                font-size: min(3vw, 14px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                line-height: 2;
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 200px var(--COMMON-PADDING-20) 100px;

            .content {
                gap: 130px;

                strong {
                    font-size: 20px;
                }

                p {
                    font-size: 16px;

                    &:last-of-type {
                        font-size: 14px;
                    }
                }
            }
        }
    }

/* Contact Page */
    .section-contact-01 {
        padding: var(--COMMON-PADDING-150) var(--COMMON-PADDING) 0;

        .content {
            display: flex;
            flex-direction: column;
            gap: min(30vw, 100px);

            strong {
                font-size: min(8vw, 30px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                line-height: 1;
            }

            p {
                font-size: min(3vw, 14px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                line-height: 2;
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 200px var(--COMMON-PADDING-20) 100px;

            .content {
                gap: 130px;

                strong {
                    font-size: 50px;
                }
            }
        }
    }

/* Board List Page */
    .section-board-list {
        position: relative;
        width: 100%;
        padding: 120px 0 0 !important;
        margin: 0;

        .section-marquee {
            padding-bottom: 30px;
            margin-bottom: 100px;
            border-bottom: 1px solid #444;

            [data-content=marquee] {
                position: relative;
                display: grid;
                width: 100%;
                height: 50px;
                user-select: none;
                overflow: hidden;

                .marquee-content {
                    position: absolute;
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    width: max-content;
                    height: 100%;
                    animation: move-left 8s linear infinite;

                    .marquee-item {
                        display: flex;
                        align-items: center;
                        gap: 15px;
                        width: fit-content;
                        height: 100%;

                        p {
                            width: max-content;
                            font-size: 40px;
                            font-weight: var(--FONT-WEIGHT);
                            line-height: 1;
                        }

                        
                        &::after {
                            content: "*";
                            display: block;
                            font-size: 80px;
                            font-weight: var(--FONT-WEIGHT);
                            line-height: 1;
                            margin-top: 25px;
                        }
                    }
                }
            }

            @media screen and (min-width: 1024px) {
                padding-bottom: 50px;

                [data-content=marquee] {
                    height: 80px;

                    .marquee-content {
                        gap: 30px;

                        .marquee-item {
                            gap: 30px;

                            p {
                                font-size: 90px;
                            }

                            &::after {
                                font-size: 150px;
                                margin-top: 50px;
                            }
                        }
                    }
                }
            }
        }

        #form-category {
            padding: 0 var(--COMMON-PADDING);

            .div-cate {
                display: flex;
                gap: 20px;
                padding: 0 !important;
                margin: 0 !important;

                button {
                    position: relative;
                    width: fit-content;

                    font-size: min(5vw, 20px);
                    font-weight: var(--FONT-WEIGHT);
                    color: rgba(0, 0, 0, 0.85);
                    text-decoration: none;

                    border: 0;
                    border-radius: 0;
                    transition: none;

                    &:hover, &:focus {
                        color: rgba(0, 0, 0, 0.5);
                    }
                }
            }

            @media screen and (min-width: 1024px) {
                padding: 0 var(--COMMON-PADDING-20);

                .div-cate {
                    gap: 40px;

                    button {
                        font-size: 16px;
                    }
                }
            }
        }

        .section-content {
            position: relative;

            #postList {
                .gal-item {
                    padding: 0 !important;
                    padding-top: 50px !important;

                    .link {
                        position: relative;
                        display: flex;
                        flex-direction: column;
                        gap: 20px;

                        width: 100%;
                        height: 100%;

                        .thm {
                            img {
                                filter: none !important;
                            }
                        }

                        .subject {
                            position: relative;
                            top: unset;
                            left: unset;
                            right: unset;
                            bottom: unset;

                            display: flex;
                            flex-direction: column;
                            align-items: flex-start;
                            gap: 10px;

                            width: 100%;
                            height: auto;

                            padding: 0 var(--COMMON-PADDING);

                            text-shadow: none;
                            white-space: unset;
                            overflow: unset;
                            text-overflow: unset;
                            background-color: transparent;

                            .title {
                                font-size: min(5vw, 20px);
                                font-weight: 600;
                                text-align: center;
                                color: rgba(0, 0, 0, 0.85);
                                letter-spacing: normal !important;
                            }

                            .category {
                                display: flex;
                                gap: 2px;

                                b {
                                    display: inline-block;
                                    padding: 1px 0;

                                    font-family: 'Pretendard';
                                    font-size: 12px;
                                    font-weight: 400;
                                    color: rgba(0, 0, 0, 0.85);
                                    letter-spacing: normal !important;

                                    &:not(:last-of-type)::after {
                                        content: ', ';
                                    }
                                }
                            }
                        }

                        &::after {
                            content: none;
                        }
                    }
                }
            }

            .board-noresult-section {
                padding: 50px var(--COMMON-PADDING) 0;

                .board-noresult {
                    font-size: 14px;
                    font-weight: var(--FONT-WEIGHT);
                    text-align: center;
                    line-height: 1;
                    color: #999;

                    margin: 0;
                    border: 1px solid #444;
                    border-radius: 0;
                    background-color: transparent;
                }
            }

            .paging-wrap {
                display: none !important;
            }

            @media screen and (min-width: 576px) {
                padding: 0 10px;

                #postList {
                    .gal-item {
                        padding: 50px 5px 0 !important;

                        .link {
                            .subject {
                                padding: 0;

                                .category {
                                    b {
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                }

                .board-noresult-section {
                    padding: 50px 5px 0;
                }
            }

            @media screen and (min-width: 1024px) {
                padding: 0 var(--COMMON-PADDING);

                .board-noresult-section {
                    padding: 50px 5px 0;
                }
            }
        }

        .paging-wrap {
            display: none;

            .aui-paging {
                .prev, .next, .first, .last {
                    color: transparent !important;
                }
            }
        }

        .aui-flex.board-btn.wrap {
            display: flex;

            width: 100%;
            margin: 0 auto;
            padding: 50px var(--COMMON-PADDING) 0;

            .mui-button {
                width: 100%;

                font-size: min(5vw, 18px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                color: rgba(0, 0, 0, 0.85);

                border-color: #444;
                border-radius: 0;
                background-color: transparent;

                &:hover {
                    color: var(--FONT-COLOR-INVERT);
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);
                }
            }

            @media screen and (min-width: 1024px) {
                padding: 50px var(--COMMON-PADDING-20) 0;
                justify-content: flex-end;

                .mui-button {
                    width: 140px;
                    height: auto;

                    font-size: 20px;
                    font-weight: var(--FONT-WEIGHT);

                    padding: 13px 0 12px;
                    border-radius: 3px;
                }
            }
        }
    }

    .section-board-edit,
    .section-board-write {
        position: relative;
        padding: 80px 10px 0;

        .board-header {
            display: none;
        }

        .div-tbl {
            border: 0;

            .ctf-wrap {
                border: 0;
            }
        }

        .aui-flex.board-btn {
            display: flex;
            gap: 0.5rem;
            justify-content: center;

            width: 100%;
            margin: 0 auto;
            padding: 0 10px;

            .mui-button {
                width: 100%;
                font-size: min(3.5vw, 16px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                color: rgba(0, 0, 0, 0.85);

                border-color: #444;
                border-radius: 0;
                background-color: transparent;

                &:hover {
                    color: var(--FONT-COLOR-INVERT);
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);
                }
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 130px 0 0;

            .aui-flex.board-btn {
                .mui-button {
                    width: fit-content;
                    padding: 0 50px;
                }
            }
        }
    }

    .section-board-read {
        position: relative;
        padding: 80px 10px 0;

        .aui-flex.board-btn {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            justify-content: space-between;

            width: 100%;
            margin: 0 auto;
            padding: 0 10px;

            .mui-button {
                width: 100%;
                font-size: min(3.5vw, 16px);
                font-weight: var(--FONT-WEIGHT);
                text-align: center;
                color: rgba(0, 0, 0, 0.85);

                border-color: #444;
                border-radius: 0;
                background-color: transparent;

                &:hover {
                    color: var(--FONT-COLOR-INVERT);
                    border-color: transparent;
                    background-color: var(--BASE-COLOR-INVERT);
                }
            }

            .group {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
            }
        }

        @media screen and (min-width: 1024px) {
            padding: 130px 0 0;

            .aui-flex.board-btn {
                flex-direction: row;

                .mui-button {
                    width: fit-content;
                    padding: 0 50px;
                }

                .group {
                    flex-direction: row;
                    width: auto;
                    margin-left: auto;
                }
            }
        }
    }