﻿@charset "utf-8";

.memberMain {
    padding-top: 50px;
    width: 100%;
    height: 500px;
    background: url(../../images/member/main/visual.jpg) center no-repeat;
    background-size: cover;
    box-sizing: border-box;
}

.memberMain .memberInner {
    display: flex;
    gap: 80px;
    align-items: start;
    margin: 0 auto;
    padding-inline: 20px;
    position: relative;
    width: calc(100% - 40px);
    max-width: 1400px;
    box-sizing: initial;
}

.memberMain .pic img {
    display: block;
    max-width: 100%;
    height: auto;
}

.memberMain .desc {
    display: flex;
    align-items: start;
    flex-direction: column;
    background: url(../../images/member/main/profile_bg.jpg) no-repeat center center;
    background-size:100% 100%;
    border-radius:50px 50px 100px 50px;
    padding: 70px 70px;
    letter-spacing: 0;
    box-sizing: border-box;
    position:relative;
}
.memberMain .desc::before {
    content:'YESAN COUNTY COUNCIL';
    position:absolute;
    top:100px;
    color:#184d90;
    font-size:12px;
    left:calc(100% - 93px);
    width:200px;
    transform:rotate(90deg);
    display:block;
}
.memberMain .desc p {
    font-size: 18px;
    font-weight: 400;
}
.memberMain .desc > p {
    font-size:28px;
    color: #b4c3ff;
}

.memberMain .desc h4 {
    font-size: 33px;
    font-weight: 500;
    color: #fff;
    word-break: keep-all;
    margin-top: 6px;
}

.memberMain .desc .name {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    word-break: keep-all;
}

.memberMain .info {
    margin-top: 30px;
    width: 580px;
}

.memberMain .info li {
    display: flex;
    gap: 60px;
    align-items: center;
    width: 100%;
    height: 41px;
    font-size: 20px;
    color: #fff;
}

.memberMain .info li>div {
    display: flex;
    gap: 20px;
    align-items: center;
    min-width: 120px;
}

.memberMain .info li>div .ico {
    margin-top: 0px;
}

.memberMain .info li>div .ico img {
    vertical-align: top;
}

.memberMain p.label {
    display: inline-flex;
    align-items: start;
    justify-content: space-between;
    width: 70px;
    font-weight: 600;
}

.memberMain .info li p:nth-of-type(2) {
    font-weight: 500;
}
.memberMain .btn_p {
    border-radius:10px;
    height:47px;
    display:flex;
    justify-content:center;
    margin:30px auto 0;
    line-height:47px;
    padding:0px 40px;
    font-size:18px;
    color:#1a3c67;
    font-weight:600;
    align-items:center;
    background:#d8e0fc;
}
.memberMain .btn_p::before {
    width:18px;
    height:18px;
    background:url(../../images/member/main/ico_user.png) no-repeat center center;
    content:'';
    display:block;
    margin-right:10px;
}

.memberMain .btn_p:hover{
    background:#c9d3f7;
}

.memberMain .sns_wrap {
    display: flex;
    gap: 10px;
    border-bottom: none;
}

.memberMain .sns_wrap li {
    flex: 1;
    border-bottom: none;
    width: 32px;
    height: 32px;
    border-radius: 100%;
}

.memberMain .sns_wrap li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 0;
}

/* sns 없을 경우 li에 off */
.memberMain .sns_wrap li.off {
    background-color: #dddddd40;
}

.memberMain .sns_wrap li.off.insta {
    /* 이미지만 남김 */
    background-color: #dddddd40;
    background-image: url(../../images/member/main/ico_insta.png);
}

.memberMain .sns_wrap .fb {
    background: url(../../images/member/main/ico_fb.png) center no-repeat;
    background-color: #153d9b;
}

.memberMain .sns_wrap .tw {
    background: url(../../images/member/main/ico_tw.png) center no-repeat;
    background-color: #282828;
    background-position-x: 9px;
}

.memberMain .sns_wrap .kko {
    background: url(../../images/member/main/ico_kko.png) center no-repeat;
    background-color: #f0c507;
}

.memberMain .sns_wrap .insta {
    background-image:
        url(../../images/member/main/ico_insta.png),
        linear-gradient(-139deg, rgb(165, 25, 213), rgb(233, 0, 133) 35%, rgb(247, 38, 71) 67%, rgb(247, 141, 1));
    background-repeat: no-repeat;
    background-position: center;
}


.memberMain .sns_wrap .yt {
    background: url(../../images/member/main/ico_yt.png) center no-repeat;
    background-color: #ff0000;
    background-size: 35%;
    background-position-x: 12px;
}

.memberMain .sns_wrap .bl {
    background: url(../../images/member/main/ico_bl.png) center no-repeat;
    background-color: #03c75a;
}

/* sec 1 반응형 */
@media screen and (max-width: 1440px) {
    .memberMain .memberInner {
        gap: 50px;
    }

    .memberMain .memberInner .pic {
        width: 45%;
    }

    .memberMain .desc h4 {
        font-size: 25px;
    }

    .memberMain .desc .name {
        font-size: 36px;
    }
}

@media screen and (max-width : 1280px) {
    .memberMain .memberInner {
        padding-inline: 0;
        max-width: initial;
    }

    .memberMain .pic {
        flex-basis: 50%;
    }

    .memberMain .desc {
        flex-basis: 45%;
        padding: 50px 30px 50px 50px;
    }
    .memberMain .desc > p {
        font-size: 22px;
    }

    .memberMain .info {
        width: 100%;
    }

    .memberMain .info li {
        gap: 20px;
    }

    .memberMain .info li>div {
        gap: 10px;
    }

    .memberMain p.label {
        width: 60px;
    }
}

@media screen and (max-width : 1024px) {
    .memberMain {
        height: auto;
    }

    .memberMain .memberInner {
        gap: 2rem;
        align-items: center;
        flex-direction: column;
        margin: 0 auto;
        padding-inline: 20px;
        width: calc(100% - 40px);
    }

    .memberMain .pic {
        flex-basis: initial;
        border-top-left-radius: 2rem;
        border-bottom-right-radius: 2rem;
        overflow: hidden;
        height: 300px;
    }

    .memberMain .pic img {
        height: 100%;
        object-fit: cover;
border-radius:30px;
    }

    .memberMain .desc {
        padding-bottom: 3rem;
        width: 100%;
        padding: 30px;
        border-radius: 30px 30px 50px 30px;
    }

    .memberMain .info {
        margin-top: 22px;
    }
}

@media screen and (max-width: 568px) {
    .memberMain .memberInner .pic {
        width: calc(100% - 40px);
    }

    .memberMain .desc h4 {
        font-size: 24px;
    }

    .memberMain .desc .name {
        font-size: 28px !important;
    }

    .memberMain .info li {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        margin-bottom: 20px;
    }

    .memberMain .info li>div {
    font-size: 16px;
    gap: 0px;
    }

    .memberMain .desc p {
        font-size: 15px;
        color: #d4ddff;
    }

    .memberMain p.label {
        font-size: 16px;
        width: 50px;
        color:#fff;
        font-weight:500;
    }
}


/* sec 1 memberMain end */

.btnsWrap {
    padding: 100px 0px 0px;
}
.btnsWrap .btnsInner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding:0px 20px;
    box-sizing:border-box;
}
.dot_tit {
    width:23%;
}
.dot_tit span {
    color: #2c2c2c;
    font-size: 32px;
    letter-spacing: 0;
    margin-right: 5px;
}
.dot_tit span i {
    font-style: normal;
    display: inline-block;
    position: relative;
}
.dot_tit span i::before{
    content:'';
    width:5px;
    background:#184d90;
    position:absolute;
    display:block;
    border-radius:50px;
    top:-8px;
    left:50%;
    transform:translateX(-50%);
    height:5px;
}
.dot_tit b {
    font-size: 32px;
}
.btnsWrap .btnsInner .btn_list {
    width:77%;
}
.btnsWrap .btnsInner .btn_list ul {
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    width:100%;
    gap:10px;
}
.btnsWrap .btnsInner .btn_list ul li {
    width:calc(25% - 10px);
}
.btnsWrap .btnsInner .btn_list ul li a{
    border:solid 1px #dedede;
    height:80px;
    display:flex;
    box-sizing:border-box;
    align-items:center;
    transition:all 0.3s;
}
.btnsWrap .btnsInner .btn_list ul li a:hover {
    box-shadow:0 0 20px 0px rgba(0,0,0,0.1);
}
.btnsWrap .btnsInner .btn_list ul li a.btn01{}
.btnsWrap .btnsInner .btn_list ul li a.btn02{}
.btnsWrap .btnsInner .btn_list ul li a.btn03{}
.btnsWrap .btnsInner .btn_list ul li a.btn04{}
.btnsWrap .btnsInner .btn_list ul li a .img {
    background:#f5f5f5;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    width:78px;
}
.btnsWrap .btnsInner .btn_list ul li a img {
    
}
.btnsWrap .btnsInner .btn_list ul li a strong {
    font-size:20px;
    color:#2c2c2c;
    display:block;
    width:calc(100% - 78px);
    text-align:center;
}
@media all and (max-width:1440px) {
    .dot_tit span {
        font-size: 26px;
    }
    .dot_tit b {
        font-size:26px;
    }
    .dot_tit {
        width:20%;
    }
    .btnsWrap .btnsInner .btn_list {
        width:80%;
    }
}

@media all and (max-width:1080px) {
    .btnsWrap .btnsInner {
        flex-direction:column;
    }
    .dot_tit {
        width:100%;
        margin-bottom:20px;
    }
    .btnsWrap .btnsInner .btn_list {
        width:100%;
    }
}
@media all and (max-width:768px) {
    .btnsWrap .btnsInner .btn_list ul li {
        width:calc(50% - 5px);
    }
    .btnsWrap .btnsInner .btn_list ul li a {
        height:50px;
        line-height:48px;
    }
    .btnsWrap .btnsInner .btn_list ul li a .img {
        width:48px;
        height:48px;
    }
    .btnsWrap .btnsInner .btn_list ul li a .img img {
        width: 70%;
    }
    .btnsWrap .btnsInner .btn_list ul li a strong {
        font-size:16px;
        width:calc(100% - 48px);
    }
}

.newsWrap {
    padding-bottom: 80px;
    width: 100%;
}

.newsWrap .newsWrapInner {
    display: flex;
    gap: 48px;
    align-items: start;
    margin: 0 auto;
    padding-inline: 20px;
    padding-top: 80px;
    width: calc(100% - 40px);
    max-width: 1400px;
}

.newsWrap .newsItem {
    flex: 1;
    width: 466px;
}

.newsWrap .newsItem .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    width: 100%;
    margin-bottom: 16px;
}

.newsWrap .newsItem .top h4 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    text-wrap: nowrap;
}

.newsWrap .newsItem .top>img {
    padding-inline: 24px 16px;
}

.newsWrap .newsItem .top span {
    display: block;
    width: 140px;
    height: 1px;
    background-color: #d7d7d7;
}

.newsWrap .newsItem .control {
    padding-left: 16px;
}

/* .newsWrap .newsItem .cont {
    padding-inline: 30px;
    padding-block: 33px;
    height: 310px;
    border: 1px solid #b2a9c3;
    border-radius: 12px;
    overflow: hidden;
} */
.newsWrap .newsItem .cont{z-index:1;position:relative;padding: 30px;font-weight:400;box-sizing:border-box;background:url(../../images/member/common/bg_pattern.png) repeat;min-height: 300px;}
.newsWrap .newsItem .cont:before{z-index:-1;content:'';display:block;position:absolute;top:10px;left:10px;width:calc(100% - 20px);height:calc(100% - 20px);background:#fff;}


.newsWrap .newsItem .media {
    display: flex;
    gap: 30px;
    align-items: start;
    margin-bottom: 20px;
}

.newsWrap .media .vid {
    overflow: hidden;
    position: relative;
    width: 217px;
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    background:#efefef;
}

.newsWrap .media .vid img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.newsWrap .media .playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.newsWrap .media .desc {
    width: calc(100% - 247px);
}

.newsWrap .media .desc h4 {
    padding-block: 16px 12px;
    border-bottom: 1px dashed #e1e1e1;
    font-size: 25px;
    font-weight: 700;
    color: #333;
}

.newsWrap .media .desc ul {
    padding-top: 13px;
}

.newsWrap .media .desc ul li {
    font-size: 20px;
    font-weight: 400;
    color: #333;
}

.newsWrap .cont .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 20px;
    width: calc(100% - 40px);
    height: 62px;
    margin-top: auto;
}

.newsWrap .cont .bottom p {
    font-size: 17px;
    font-weight: 400;
    color: #333;
}

.newsWrap .cont .bottom .icon {
    width: 102px;
    height: 40px;
    background-color: #336699;
    border-radius: 5px;
}

.newsWrap .cont .bottom .icon a {
    display: block;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

.newsWrap #bill {
    width: 466px;
}

.newsWrap #bill .cont {
    padding: 0;
    border: none;
    width: 100%;
}

.newsWrap #bill .cont .contInner {
    padding:15px;
    box-sizing:border-box;
}
    
.newsWrap #bill span {
    width: 242px;
}

.newsWrap #bill .contInner ul {
    display: flex;
    gap: 0;
    flex-direction: column;
}

.newsWrap #bill .contInner ul li {
    display: flex;
    gap: 13px;
    align-items: start;
    flex-direction: column;
    padding-inline: 18px;
    padding-block: 16px;
    transition: .3s;
    border-bottom: 1px dashed #e1e1e1;
}
.newsWrap #bill .contInner ul li:last-child {
    border-bottom:none;
}

.newsWrap #bill .contInner ul li a {
    display:block;
    width:100%;
}
.newsWrap #bill .contInner ul li h4 {
    margin-bottom: 15px;
    /* 줄바꿈 방지 */
    overflow: hidden;
    width: 100%;
    font-size: 19px;
    font-weight: 300;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* 말줄임표(...) 표시 */
}

.newsWrap #bill .contInner .date {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    font-size: 15px;
    color: #8a8a8a;
}

.newsWrap #bill .contInner ul li:hover {
    background:#efefef;
}

.newsWrap #bill .contInner ul li:hover h4 {
    font-weight: 500;
}


.newsWrap #cardNews {
    width: 310px;
}

.newsWrap #cardNews span {
    width: 50px;
}

.newsWrap #cardNews .cont {
    padding: 0;
    height: auto;
display:flex;
align-items:center;
}

.newsWrap #cardNews .cont *:not(img) {
    height: 100%;
}

.newsWrap #cardNews .media {
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.newsWrap #cardNews .media a {
	display:flex;
justify-content:center;
align-items:center;
}

.newsWrap #cardNews .media img {
    width: calc(100% - 40px);
border-radius:15px;
    height: 100%;
}

@media screen and (max-width : 1440px) {
    .newsWrap .newsWrapInner {
        gap: 50px 32px;
        flex-wrap: wrap;
    }

    .newsWrap .newsItem {
        width: 50%;
    }

    .newsWrap .newsItem .top h4 {
        font-size: 26px;
    }

    .newsWrap #bill {
        flex: none;
        width: 100%;
        order: 3;
    }

    .newsWrap #bill .contInner ul li {
        width: 100%;
        box-sizing: border-box;
    }

    .newsWrap .newsItem .top span {
        flex-basis: 45%;
        width: initial;
    }

    .newsWrap #cardNews span {
        flex-basis: 40%;
    }

    .newsWrap #bill span {
        flex-basis: 80%;
    }
}

@media screen and (max-width: 1280px) {
    .newsWrap {
        background-position: initial;
    }
}

@media screen and (max-width : 1150px) {
    .newsWrap .newsItem .top>img {
        display: none;
    }
}

@media screen and (max-width : 960px) {
    .newsWrap {
        height: auto;
    }

    .newsWrap .newsItem .media {
        gap: 1rem;
        flex-direction: column;
    }

    .newsWrap .media .desc {
        width: 100%;
    }

    .newsWrap .newsItem .cont,
    .newsWrap #cardNews .cont {
        height: auto;
    }

    .newsWrap .newsItem .top span {
        display: none;
    }
}

@media screen and (max-width : 768px) {
    .newsWrap .newsItem {
        width: 100%;
    }

    .newsWrap .newsItem .cont,
    .newsWrap #cardNews .cont {
        height: auto;
    }

    .newsWrap .newsItem .media {
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }

    .newsWrap .media .vid {
        width: 280px;
    }

    .newsWrap .media .desc {
        width: 50%;
        text-align: center;
    }

}

@media screen and (max-width : 568px) {
    .newsWrap .newsWrapInner {
        padding-top: 80px;
    }

    .newsWrap .newsItem .cont {
        height: 436px;
    }

    .newsWrap .media .vid {
        width: 200px;
    }

    .newsWrap .media .desc h4 {
        font-size: 22px;
        padding-block: 3px 10px;
    }

    .newsWrap .cont .bottom {
        flex-direction: column;
        gap: 10px;
        padding-block: 10px;
        height: 70px;
    }

    .newsWrap #cardNews {
        width: 100%;
    }

    .newsWrap #cardNews .cont {
        height: 270px;
    }

    .newsWrap .media .desc ul li {
        font-size: 16px;
    }

    .newsWrap .newsItem .media {
        flex-direction: column;
    }

    .newsWrap .media .desc {
        width: 100%;
    }

    .newsWrap #bill .cont {
        height: 320px;
    }

    .newsWrap #bill .contInner ul li h4 {
        overflow: hidden;
        overflow: hidden;
        width: calc(100% - 40px);
        font-size: 17px;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .newsWrap #bill .contInner ul li {
        padding-inline: 20px;
        width: calc(100% - 40px);
    }

    .newsWrap #bill .contInner ul li a {
        width: 100%;
    }
}

.activity {
    width: 100%;
    background: #FDEFEF;
    background: -webkit-linear-gradient(90deg,rgba(253, 239, 239, 1) 0%, rgba(238, 248, 250, 1) 100%);
    background: -moz-linear-gradient(90deg,rgba(253, 239, 239, 1) 0%, rgba(238, 248, 250, 1) 100%);
    background: linear-gradient(90deg,rgba(253, 239, 239, 1) 0%, rgba(238, 248, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
      startColorstr="#FDEFEF",
      endColorstr="#EEF8FA",
      GradientType=1
    );
    padding: 100px 0px;
}
.activity .dot_tit {
    width:100%;
}
.activity .top {
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    text-align: center;
}

.activity .top .tit p {
    font-family: 'score';
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.activity .top .tit h4 {
    font-family: 'Jalnan';
    font-size: 35px;
    color: #703ba5;
}

.activity .control {
    position: absolute;
    right: 13vw;
    bottom: 0;
}

.activity .contWrap ul {
    display: flex;
    width: 100%;
    height: 375px;
}

.activity .slider {
}

.activity .slider .slick-slide {
    padding: 20px 10px;
    filter: drop-shadow(4px 0px 10px rgba(0, 0, 0, 0.16));
    height: 100%;
}

.activity .slick-list,
.activity .slick-track {
    height: 100%;
}

.activity .slick-track div {
    height: 100%;
}


.activity .slider li {
    overflow: hidden;
    width: 370px !important;
    border-radius: 10px;
    height: 100%;
}

.activity .slider .imgBox {
    overflow: hidden;
    height: 235px
}


.activity .slider .imgBox:hover img {
    transform: scale(1.125);
    transition: .3s;
}

.activity .slider .imgBox img {
    display: block;
    width: 100%;
    transition: .3s;
}

.activity .slider .desc {
    padding-inline: 30px;
    padding-block: 23px;
    background-color: #fff;
    height: 65px;
    border-radius: 0 0 10px 10px;
}

.activity .slider .desc h5 {
    margin-bottom: 14px;
    overflow: hidden;
    width: calc(100% - 20px);
    font-size: 18px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* 말줄임표(...) 표시 */
}

.activity .slider .desc .date {
    font-size: 15px;
    font-weight: 400;
    color: #a7a7a7;
}


@media screen and (max-width: 1440px) {
    .activity .slider li {
        overflow: hidden;
        /* width: auto !important; */
        border-radius: 10px;
    }
}

@media screen and (max-width: 768px) {
    .activity .control {
        right: 20px;
    }

    .activity .slider li {
        width: 100% !important;
    }

    .activity .contWrap {
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    .activity .slick-slide img {
        width: 100%;
        height: 235px;
        object-fit: cover;
    }

    .activity .contWrap {
        margin: 0 auto;
        width: 500px;
    }
}

@media screen and (max-width: 568px) {
    .activity {
        height: auto;
    }

    .activity .top {
        margin-bottom: 80px;
    }

    .activity .top .tit p {
        font-size: 18px;
    }

    .activity .top .tit h4 {
        font-size: 30px;
    }

    .activity .control {
        bottom: -60px;
    }

    .activity .control * {
        width: 30px;
    }

    .activity .slider {
        margin-bottom: 0;
    }

    .activity .contWrap {
        width: calc(100% - 40px);
    }
}

.activityVid {
    padding-bottom: 65px;
    width: 100%;
    height: auto;
    height: 455px;
    background: url(../../images/member/main/activity_bg.png) center bottom no-repeat;
}

.activityVid .top {
    margin-top: 70px;
    margin-bottom: 24px;
    position: relative;
    width: 100%;
    text-align: center;
}

.activityVid .top .tit p {
    font-family: 'score';
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.activityVid .top .tit h4 {
    font-family: 'Jalnan';
    font-size: 35px;
    color: #232368;
}

.activityVid .control {
    position: absolute;
    right: 13vw;
    bottom: 0;
}

.activityVid .contWrap ul {
    width: 100%;
    height: 406px;
}

.activityVid .slick-list,
.activityVid .slick-track {
    height: 100%;
}

.activityVid .slick-track div {
    height: 100%;
}

.activityVid .slider .slick-slide {
    padding: 20px 10px;
    height: 100%;
    filter: drop-shadow(4px 0px 10px rgba(0, 0, 0, 0.16));
}

.activityVid .slider li {
    overflow: hidden;
    width: 370px !important;
    border-radius: 0 0 10px 10px;
    height: 100%;
}

.activityVid .slider .imgBox {
    overflow: hidden;
    height: 235px;
    border-radius: 10px 10px 0 0;
}

.activityVid .slider .imgBox:hover img {
    transition: .3s;
    transform: scale(1.125);
}

.activityVid .slider .imgBox img {
    display: block;
    width: 100%;
    height: 100%;
    transition: .3s;
}

.activityVid .slider .desc {
    padding-inline: 30px;
    padding-block: 23px;
    background-color: #fff;
    height: 65px;
    border-radius: 0 0 10px 10px;
}

.activityVid .slider .desc h5 {
    margin-bottom: 14px;
    overflow: hidden;
    width: calc(100% - 20px);
    font-size: 18px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* 말줄임표(...) 표시 */
}

.activityVid .slider .desc .date {
    font-size: 15px;
    font-weight: 400;
    color: #a7a7a7;
}


.activityVid .slider .desc {
    padding-inline: 30px;
    padding-block: 23px;
    background-color: #fff;
}

.activityVid .slider .desc h5 {
    margin-bottom: 14px;
    overflow: hidden;
    width: calc(100% - 20px);
    font-size: 18px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* 말줄임표(...) 표시 */
}

.activityVid .slider .desc .date {
    font-size: 15px;
    font-weight: 400;
    color: #a7a7a7;
}

@media screen and (max-width: 1440px) {
    .activityVid .slider li {
        overflow: hidden;
        /* width: auto !important; */
        border-radius: 10px;
    }
}

@media screen and (max-width: 768px) {
    .activityVid .control {
        right: 20px;
    }

    .activityVid .slider li {
        width: 100% !important;
    }

    .activityVid .contWrap {
        margin: 0 auto;
        width: 500px;
    }

    .activityVid .slick-slide img {
        width: 100%;
        height: 235px;
        object-fit: cover;
    }
}

@media screen and (max-width: 568px) {
    .activityVid {
        height: auto;
    }

    .activityVid .top {
        margin-bottom: 80px;
    }

    .activityVid .top .tit p {
        font-size: 18px;
    }

    .activityVid .top .tit h4 {
        font-size: 30px;
    }

    .activityVid .control {
        bottom: -60px;
    }

    .activityVid .control * {
        width: 30px;
    }

    .activityVid .contWrap {
        width: calc(100% - 40px);
    }
}


/* member common */

.blur {
    box-shadow: 0 0 10px 0 rgba(188, 159, 165, 0.2);
}

.no-data {
    background:none !important;
    text-shadow: none !important;
}