
/*갤러리 리스트*/
#pc_gall{
    main.gallery-list-page {
        /*background-color: #F8F9FB;*/
        background: linear-gradient(#fff, #DEECFF);
        line-height: 1.4;
        padding-top: 147px;
    }
    section.gallery-list {
        padding: 90px 0;
        .gallery-list-header {
            position: relative;
            .gallery-list-title {
                .portfolio-hero-sub {
                    font-size: 20px;
                    display: block;
                }
                h2 {
                    font-weight: 700;
                    font-size: 42px;
                    color: #222;
                    letter-spacing: -0.01em;
                }
            }
        }
        .gallery-list-content {
            margin-top: 40px;
            .gallery-card-grid {
                font-size: 0;
                margin: 0 -20px;
            }
            .gallery-card {
                width: 33.3%;
                padding: 20px;
                display: inline-block;
                vertical-align: top;
                &:nth-child(n+4) {
                    margin-top: 20px;
                }
            }
            .gallery-card-link {
                display: block;
                position: relative;
                border-radius: 10px;
            }
            .gallery-card-thumb {
                position: relative;
                border-radius: 10px 10px 0 0;
                overflow: hidden;
                &::after {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    background-color: rgba(0, 0, 0, 0.12);
                    z-index: 10;
                }
                
                img {
                    width: 100%;
                    height: 270px;
                }
            }
            .gallery-card-content {
                position: relative;
                align-content: center;
                padding: 0 30px;
                box-sizing: border-box;
                background-color: transparent;
                .gallery-card-info {
                    padding-top: 10px;
                    .gallery-card-title {
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 1;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        font-size: 20px;
                        font-weight: 600;
                        letter-spacing: -0.01em;
                    }
                }
                .gallery-card-arrow {
                    opacity: 0;
                    position: absolute;
                    right: 30px;
                    bottom: 10px;
                    background-color: #5790EC;
                    background-image: url("/home/images/icon-plus-w.svg");
                    background-repeat: no-repeat;
                    background-position: center center;
                    background-size: 16px auto;
                    display: block;
                    width: 48px;
                    height: 48px;
                    border-radius: 50%;
                    cursor: pointer;
                    z-index: 100;
                }
            }
        }
    }
    
}

/*갤러리 상세화면*/
#pc_gall_detail{
    main {
    padding-top: 147px;

    .portDetail {
        /*background: #f9f9f9;*/
        /*padding: 0 0 100px 0;*/

        .top {
            width: 100%;

            .inner {
                position: relative;
                padding: 90px 0;

                .date{
                    color: #666;
                    padding-bottom: 10px;
                }
            }
            .txt{
                h3{
                    font-weight: 700;
                    font-size: 42px;
                    color: #222;
                    letter-spacing: -0.01em;                    
                }
            }
        }

        .cont {

            .gallery {
                background: #fff;
                border: 1px solid #ccc;
                border-radius: 10px;
                padding: 100px;
                margin: 0 0 90px 0;
                text-align:center;

                img{
                 margin: 50px auto;
                }
            }

            .txt {
                p {
                    font-size: 24px;
                    
                }

            }

        }


        .list {
            width: 150px;
            height: 60px;
            background: #555;
            border: 1px solid #ccc;
            font-size: 24px;
            font-weight: 500;
            color: #fff;
            border-radius: 5px;
            cursor: pointer;
            margin: 80px auto 0;
            display: flex;
            justify-content: center;
            align-items: center;

            a:visited {
                color: inherit;
            }
        }
    }

    }   
}