
.main-slider{
    position: relative;
    width: 100%;
    margin-top:9.8rem;
}
@media screen and (max-width:960px) {
    .main-slider {margin-top:6rem;}
}
.visual-title {
    display:block;
    position:relative;
    color: var(--text-basic);
    text-align: center;
    font-size: 6rem;
    font-weight: 700;
    word-break:keep-all;
}
@media screen and (max-width:960px) {
    .visual-title {font-size:4.4rem;}
    .visual-title img {width:5rem;}
}
@media screen and (max-width:640px) {
    .visual-title {font-size:2.8rem;}
    .visual-title img {width:4rem;}
}

.visual-title span {display:block;}
.desc_visual {
    margin-top:1.1rem;
    color: var(--text-basic);
    text-align: center;
    font-size: 2.8rem;
    font-weight: 400;
}
@media screen and (max-width:960px) {
    .desc_visual {font-size:1.6rem;}
}
.visual-controls {
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:7.7rem;
}
@media screen and (max-width:960px) {
    .visual-controls {margin-top:4rem;}
}
@media screen and (max-width:640px) {
    .visual-controls {margin-top:2rem;}
    .visual-controls .svg-icon {
        width:2rem;
        height:2rem;
    }
}
.visual-controls .swiper-pagination {
    position:relative;
    top:auto;
    left:auto;
    bottom:auto;
    margin:0 2rem;
}
.visual-controls .swiper-pagination .swiper-pagination-bullet {
    width:1rem;
    height:1rem;
    background-color:#D9D9D9;
    opacity:1;
    margin:0 0.5rem;
}
@media screen and (max-width:640px) {
    .visual-controls .swiper-pagination .swiper-pagination-bullet {
        width:0.8rem;
        height:0.8rem;
        margin:0 0.4rem;
    }
}
.visual-controls .swiper-pagination .swiper-pagination-bullet:first-child {
    margin-left:0;
}
.visual-controls .swiper-pagination .swiper-pagination-bullet:last-child {
    margin-right:0;
}
.visual-controls .swiper-pagination .swiper-pagination-bullet-active {
    background-color:var(--color-primary);
}
.visual-btn-box {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:1.6rem;
    margin-top:4.4rem;
    text-align:center;
}
@media screen and (max-width:640px) {
    .visual-btn-box {margin-top:2.5rem;}
}
.visual-btn {
    display: inline-flex;
    height: 5.6rem;
    padding: 1.6rem 2.4rem;
    justify-content: center;
    align-items: center;
    border-radius: 5rem;
    background: var(--color-primary);
    color: #FFF;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}
@media screen and (max-width:768px) {
    .visual-btn {
        height:5.2rem;
        font-size:1.6rem;
        padding:1.2rem 2rem;
    }
}
@media screen and (max-width:640px) {
    .visual-btn {
        height:4.8rem;
        font-size:1.4rem;
        padding:0.8rem 2rem;
    }
}

/* 청년정책 꿀팁 배너 */
.main-tips {
    position: relative;
    padding: 5rem 0;
    background-color:var(--navy-blue);
    overflow: hidden;
}
.main-tips__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content:center;
    width: 100%;
    gap:5.8rem;
}
@media screen and (max-width: 1030px) {
    .main-tips__inner {
        flex-direction: column;
        text-align: center;
    }
}
.main-tips__content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.main-tips__title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
}
@media screen and (max-width: 1030px) {
    .main-tips__title {
        justify-content: center;
    }
}
@media screen and (max-width:960px) {
    .main-tips__title {
        font-size: 2.2rem;
    }
}
.main-tips__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    background-color: rgba(135, 206, 235, 0.9);
    flex-shrink: 0;
}
.main-tips__title-icon img {
    width: 1.8rem;
    height: 1.8rem;
}
.main-tips__desc {
    margin-top: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.5px;
}
@media screen and (max-width: 720px) {
    .main-tips__desc {
        font-size: 2rem;
    }
}
.main-tips__btn-box {
    margin-top: 2.5rem;
}
.main-tips__btn {
    display: inline-block;
    padding: 1.2rem 4rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background-color: var(--color-primary);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.main-tips__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 720px) {
    .main-tips__btn {
        font-size: 1.6rem;
        padding: 1rem 3rem;
    }
}
.main-tips__visual {
    position: relative;
    width:198px;
    height: auto;
    z-index: 2;
    flex-shrink: 0;
}
@media screen and (max-width: 1030px) {
    .main-tips__visual {
        width: 200px;
    }
}
@media screen and (max-width: 720px) {
    .main-tips__visual {
        width: 150px;
    }
}
.main-tips__visual img {
    width: 100%;
    height: auto;
    display: block;
}

/* 메인 섹션 공통 */
.main-section {
    margin-top: 9.2rem;
}
.main-title {
    position: relative;
    font-size: 3rem;
    color: #000;
    text-align: center;
}
.main-title-text {
    margin-top:0.8rem;
    color: #000;
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
}

/* SNS 섹션 */
.main-sns {
    position: relative;
}
.main-sns__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4.4rem;
}
@media screen and (max-width:960px) {
    .main-sns__list {
        grid-template-columns: 1fr;
    }
}
.main-sns__box {
    display:flex;
    flex-direction:column;
    gap:2rem;
}
.main-sns__item {
    border-radius: 3rem;
    background-color: #F7F8F9;
    transition: all 0.3s ease;
}
.main-sns__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.main-sns__link {
    display: block;
    width: 100%;
    height: 100%;
}
.main-sns__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 3.4rem;
}
@media screen and (max-width: 960px) {
    .main-sns__inner {
        padding: 2rem;
    }
}
.main-sns__visual {
    flex: none;
    width: 5.4rem;
    height: 5.4rem;
}
.main-sns__visual img,
.main-sns__visual svg {
    width: 100%;
    height: 100%;
}
.main-sns__content {
    margin-left: 2rem;
    color: var(--text-basic);
    font-size: 2.4rem;
    font-weight: 700;
}
@media screen and (max-width: 960px) {
    .main-sns__content {
        font-size: 1.8rem;
    }
}
.main-sns__arrow {
    width: 2.5rem;
    margin-left: auto;
}
.main-sns__arrow img,
.main-sns__arrow svg {
    width: 100%;
}

.main-directions {
    position:relative;
    width:100%;
}
.main-directions__ca {
    position:relative;
    margin-top:4.4rem;
}
.main-directions__ca ul {
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:2rem;
}
@media screen and (max-width:480px) {
    .main-directions__ca ul {
        grid-template-columns:repeat(2, 1fr);
    }
}
.main-directions__ca__btn {
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    width:100%;
    height:5.2rem;
    border-radius: 0.5rem !important;    
    background-color:#F7F8F9;
    color: var(--sub-text2, #B2BEC3);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
}
.main-directions__ca__btn.active {    
    color: var(--white, #FFF);
    background: var(--primary-color, #54C2F0);    
    border-color: var(--primary-color, #54C2F0);
}

.main-directions__map {
    position:relative;
    width:100%;
    margin-top:4.4rem;
}
#direction_map {
    position:relative;
    width:100%;
    height:40rem;
}
.main-directions__map iframe {
    width:100%;
    height:100%;
}
.main-directions__info {
    display:flex;
    flex-direction:row;
    justify-content:center;
    margin-top:4rem;
    font-size:1.7rem;
    gap:5.8rem;
    color:var(--text-basic);
}
@media screen and (max-width:957px) {
    .main-directions__info {
        display:grid;
        grid-template-columns:repeat(2, 1fr);
        gap:2rem;
    }
}
@media screen and (max-width:700px) {
    .main-directions__info {
        display:grid;
        grid-template-columns:1fr;
        gap: 2rem;
    }
}

.main-directions__info__item {
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:1.1rem;
}

.main-directions__info__item .icon {
    flex:none;
    display:inline-block;
    width:2rem;
    height:2rem;
}
.main-directions__info__item .icon img {
    width:100%;
    height:100%;
}

.wrap-card {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4.4rem;
}
.card-bridge {
    position:relative;
    display:flex;
    min-height:12rem;
    height:38rem;
    overflow:hidden;
    border-radius: 3rem;
    background-size:cover;
    background-position:50% 50%;
    background-color:#F7F8F9;
}
.card-bridge.height-auto {height: auto;}
.card-bridge--inslider::after {
    content: "";
    position: absolute;
    top: 0;
    right:0;
    width:50%;
    height: 100%;
    background:#00B8F6;
}
.card-bridge--inslider.bg2::after {    
    background:#55B6D7;
}


@media screen and (max-width:960px) {
    .card-bridge--inslider::after {
        width:100%;
        height:50%;
        top:auto;
        bottom:0;
    }
}

.card-bridge--recruiting {background-color:#4DA3D4;}
.card-bridge--freelancer {background-color:#ACEAFF;}
.card-bridge--space {background-color:#00B8F6;}
.card-bridge--community {background-color:#55B6D7;}
.card-bridge--group {background-color:#00B8F6;}
.card-bridge--local-company {background-color:#ACEAFF;}
@media screen and (max-width:960px) {
    .card-bridge {height:19rem;}
    .card-bridge--space,
    .card-bridge--recruiting,
    .card-bridge--freelancer,
    .card-bridge--community,
    .card-bridge--group,
    .card-bridge--local-company {height:37rem;}
    .card-bridge--inslider {height:35rem;}
}
@media screen and (max-width:600px) {
    .card-bridge--recruiting {height:40rem;}
    .card-bridge--space {height:43rem;}
    .card-bridge--freelancer {height:42rem;}
    .card-bridge--group {height:33rem;}
    .card-bridge--community {height:35rem;}
    .card-bridge--local-company {height:43rem;}
    .card-bridge--inslider {height:42rem;}
}
.card-bridge.grid-100 {width:100%;}
.card-bridge.wd-636 {
    flex:1;
    width:63.6rem;
    min-width:40%;
}
@media screen and (max-width:1106px) {
    .card-bridge.wd-636 {
        flex:auto;
        width:100%;
    }
}
.card-bridge.wd-444 {width:44.4rem;}
.card-bridge.wd-540 {width:54rem;}
@media screen and (max-width:1132px) {
    .card-bridge.wd-540 {width:53rem;}
}
@media screen and (max-width:1106px) {
    .card-bridge.wd-444 {width:100%;}
    .card-bridge.wd-540 {width:100%;}   
} 
.card-bridge__head {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:312px;
}
.card-bridge__inner {
    position:relative;
    z-index:1;
    width:100%;
    height:100%;
    padding:5rem;
}
.card-bridge__inner.right {text-align:right;}
.card-bridge__inner.flex-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (max-width:600px) {
    .card-bridge__inner.flex-column {justify-content: flex-start;}
}
@media screen and (max-width:960px) {
    .card-bridge__inner {
        padding: 2rem;
    }
    .card-bridge__inner.right {text-align:left;}
}
.card-slide {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:2;
}
@media screen and (max-width:600px) {
    .card-slide {
        top:auto;
        left:50% !important;
        transform:translateX(-50%) !important;
    }
    .card-visual {
        width:100% !important;
        text-align:center;
        padding:0 2rem;
        left:auto !important;
        right:auto !important;
    }
}
.card-slide__recruiting {
    width:27.1rem;
    top:auto;
    right:16.7rem;
    left:auto;
    bottom:0;
    padding-top:5rem;
}
@media screen and (max-width:960px) {
    .card-slide__recruiting {
        width:22rem;
        height: auto;
        right:3rem;
        left:auto;   
        padding-top:0;
        bottom:0;    
        top:auto; 
    }
}

.card-slide__recruiting img {
    border-radius:1rem 1rem 0 0;
}
.card-slide__recruiting .s_img {padding-top: 121.772%;}
.card-slide__freelancer {
    width:26.5rem;
    height:auto;
    left:3.8rem;
    top:auto;
    bottom:-1px;
}
@media screen and (max-width:960px) {
    .card-slide__freelancer{
        width:22rem;
        height: auto;
        right:3rem;
        left:auto;   
        padding-top:0;
        bottom:0;    
        top:auto; 
    }
}
.card-slide__freelancer .card-slide-next,
.card-slide__freelancer .card-slide-prev {
    top:50%;
}
.freelancer-slide {
    position:relative;
    width:100%;
    height:100%;
    border-radius:1rem 1rem 0 0;
    background-color:#fff;
    padding:1.6rem;
}
.freelancer-slide .category {
    color:var(--text-basic);
    font-family: "Pretendard GOV";
    font-size: 1.3rem;
    font-weight: 700;
}
.freelancer-slide .body {margin-top:0.8rem;}
.freelancer-slide .s_img {padding-top:63%;}
.freelancer-slide .desc {margin-top:1.2rem;}
.freelancer-slide .name {
    color: var(--color-primary);
    font-size: 1.3rem;
    font-weight: 700;
}
.freelancer-slide .info {
    margin-top:0.4rem;
    color: var(--sub-text1);
    font-size: 1.2rem;
    overflow:hidden;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    display:-webkit-box;
    text-overflow:ellipsis;
    min-height:4.2rem;
}
.freelancer-slide .bottom {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    margin-top:1.2rem;
    justify-content:space-between;
}
.freelancer-slide .bottom .rank {
    display: flex;
    align-items: center;
    color: var(--sub-text1);
    font-size: 1.2rem;
}
.freelancer-slide .bottom .price {
    color: var(--text-basic);
    font-size: 1.4rem;
}
.card-space {
    position:absolute;
    bottom:0;
    right:5rem;
    width:22.9rem;
    background-color:#fff;
    z-index:2;
    border-radius:1rem 1rem 0 0;
}
.card-space.right {
    width:27rem;
    right:50%;
    margin-right:-42rem;
}
@media screen and (max-width:960px) {
    .card-space {
        width:22rem;
        right:3rem;
    }
    .card-space.right {
        width:22rem;
        margin-right:-36rem;
    }
}
@media screen and (max-width:780px) {
    .card-space.right {margin-right:-33rem;}
}
@media screen and (max-width:768px) {
    .card-space.right {
        right:4rem;
        margin-right:0;
    }
}
@media screen and (max-width:600px) {
    .card-space.right {right:auto;}
}
@media screen and (max-width:600px) {
    .card-space {
        right:auto;
        left:50% !important;
        transform:translateX(-50%);
    }
}

.card-space__link {
    display:block;
    width:100%;
    height:100%;
}
.card-space__image {
    position:relative;
    border-radius:1rem 1rem 0 0;
    overflow:hidden;
}
.card-space__image .s_img {
    padding-top:90%;
    border-radius:1rem 1rem 0 0;
}
.card-space__label {
    position:absolute;
    top:0;
    left:0;
    z-index:3;
    width:6rem;
    height: 6rem;
    aspect-ratio: 1/1;
}
.card-space__label img {
    width:100%;
    height:100%;
}
.card-space__desc {
    padding:1.6rem;
    text-align:center;
}
.card-space__subject {
    font-size: 1.3rem;
    font-weight: 700;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.card-space__text1 {
    margin-top:0.8rem;
    color: var(--sub-text1);
    font-size: 1.2rem;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.card-community {
    position:absolute;
    bottom:3.5rem;
    width:100%;
    text-align:center;
    z-index:0;
}
.card-community img {max-width:100%;}

.card-slide__community {
    width:23.6rem;   
    height:auto;
    right:4rem;
    top:auto;
    bottom:0;
    left:auto;
}
.card-slide__community.right {
    width:27rem;
    right:50%;
    height:auto;
    margin-right:-42rem;
} 
.card-slide__community.right .community-slide {
    height:auto;
}
@media screen and (max-width:1106px) {    
    .card-community {
        width:auto;
        padding:0 5rem;
        right:0;
    }
    .card-slide__community.right {
        width:22rem;
        margin-right:-36rem;
    }
}
@media screen and (max-width:960px) {
    .card-community {padding:0 2rem;}   
}
@media screen and (max-width:780px) {
    .card-slide__community.right {margin-right:-33rem;}
}
@media screen and (max-width:768px) {
    .card-slide__community.right {
        right:4rem;
        margin-right:0;
    }
}
@media screen and (max-width:600px) {
    .card-slide__community.right {right:auto;}
}

.community-slide {
    position:relative;
    width:100%;
    height:22rem;
    border-radius:1rem 1rem 0 0;
    background-color:#fff;
    overflow:hidden;
}
.community-slide .s_img {padding-top:90%;}
.community-slide__desc {
    min-height:8rem;
    margin-top:0.8rem;
    padding:1.6rem;
    text-align:center;
}
.community-slide__image {position:relative;}
.community-slide__label {
    position:absolute;
    top:0;
    left:0;
    z-index:3;
    width:6rem;
    height:6rem;
}
.community-slide__label img {
    width:100%;
    height:100%;
}
.community-slide__subject {
    font-size:1.3rem;
    font-weight:700;
    color:var(--text-basic);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.community-slide__text {
    margin-top:0.8rem;
    font-size:1.2rem;
    color:var(--suib-text1);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.card-slide__community .card-slide-prev,
.card-slide__community .card-slide-next {
    top:50%;
}

.card-group {
    position:absolute;
    bottom:2.8rem;
    right:5rem;
    z-index:0;
}
.card-group img {max-width:100%;}
@media screen and (max-width:1106px) {    
    .card-group {
        width:auto;
        padding:0 5rem;
        right:0;
    }
}
@media screen and (max-width:960px) {
    .card-group {padding:0 2rem;}
}
@media screen and (max-width:608px) {    
    .card-group {
        width:auto;
        right:0;
    }
}
.card-slide__group {
    width:23.6rem;   
    height:auto;
    right:4rem;
    top:auto;
    bottom:0;
    left:auto;
}
.group-slide {
    position:relative;
    width:100%;
    height:20rem;
    border-radius:1rem 1rem 0 0;
    background-color:#fff;
    overflow:hidden;
}
.group-slide .s_img {padding-top:60%;}
.group-slide__desc {
    margin-top:1.2rem;
    padding-left:2rem;
    padding-right:2rem;
    text-align:center;
}
.group-slide__image {position:relative;}
.group-slide__label {
    position:absolute;
    top:0;
    left:0;
    z-index:3;
    width:4.5rem;
    height:4.5rem;
}
.group-slide__label img {
    width:100%;
    height:100%;
}
.group-slide__subject {
    font-size:1.3rem;
    font-weight:700;
    color:var(--text-basic);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.group-slide__text {
    margin-top:0.4rem;
    font-size:1.2rem;
    color:var(--sub-text1);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.card-slide__group .card-slide-prev,
.card-slide__group .card-slide-next {
    top:50%;
}

.card-local-company {
    position:absolute;
    right:3.4rem;
    bottom:2.3rem; 
    z-index:0;
}
@media screen and (max-width:960px) {
    .card-local-company {
        padding:0 2rem;
        right:0;
    }
}

.card-slide__local-company {
    width:22.9rem;   
    height:auto;
    right:5rem;
    top:auto;
    bottom:0;
    left:auto;
}
.local-company-slide {
    position:relative;
    width:100%;
    height:29.5rem;
    border-radius:1rem 1rem 0 0;
    background-color:#fff;
    overflow:hidden;
}
.local-company-slide .s_img {padding-top:93%;}
.local-company-slide__desc {
    margin-top:0.8rem;
    padding-left:2rem;
    padding-right:2rem;
    text-align:center;
}
.local-company-slide__image {position:relative;}
.local-company-slide__label {
    position:absolute;
    top:0;
    left:0;
    z-index:3;
    width:4.3rem;
    height:4.3rem;
}
.local-company-slide__label img {
    width:100%;
    height:100%;
}
.local-company-slide__subject {
    font-size:1.2rem;
    font-weight:700;
    color:var(--text-basic);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.local-company-slide__text {
    margin-top:0.8rem;
    font-size:1.2rem;
    color:var(--sub-text1);
    overflow:hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
.local-company-address {
    display: inline-block;
    position: relative;
    padding-left: 1.7rem;
    line-height: 1.5rem;
}
.local-company-address::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.2rem;
    height: 1.5rem;
    background: url(../../new_imgs/icon/ico_map.svg) no-repeat 0 0;
    background-size: 1.2rem 1.5rem;
}

.card-slide__local-company .card-slide-prev,
.card-slide__local-company .card-slide-next {
    top:50%;
}

.card-center-image {
    position:absolute;
    right:14.5rem;
    bottom:4.2rem;
    z-index:0;
}
.card-bridge--daegu-center {background-color:#FCDDEC;}
@media screen and (max-width:1106px) {
    .card-bridge--daegu-center {
        height:34rem;
    }
    .card-center-image {
        right:5rem;
        bottom:2.2rem;
        z-index:0;
    }
}
@media screen and (max-width:960px) {   
    .card-center-image {
        right:0;
        padding:0 2rem;
    }
}
@media screen and (max-width:600px) {  
    .card-bridge--daegu-center {
        height:33rem;
    }      
    .card-center-image img {max-width:80%;}
}
.card-slide__daegu-center {
    top:auto;
    left:auto;
    bottom:0;
    right:11.1rem;
    width:36.8rem;   
    height:auto;
}
.card-slide__daegu-center.small {
    width:28rem;
    right:auto;
    left:50%;
    transform:translateX(-50%);
}
@media screen and (max-width:1106px) {
    .card-slide__daegu-center.small {
        right:11.1rem;
        left:auto;
        transform:none;
    }
}
@media screen and (max-width:960px) {
    .card-slide__daegu-center {
        width:28rem;
        right:5rem;
    }
    .card-slide__daegu-center.small {
        width:22rem;
        right:3rem;
    }
}
.card-slide__daegu-center .card-slide-prev,
.card-slide__daegu-center .card-slide-next {
    top:50%;
}

.daegu-center-slide {
    position:relative;
    width:100%;
    height:30.8rem;
}
.card-slide__daegu-center.small .daegu-center-slide {
    height:23rem;
}
@media screen and (max-width:960px) {
    .daegu-center-slide {
        height:22rem;
    }
}

.daegu-center-slide__image {
    position:relative;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:50% 50%;
    background-repeat:no-repeat;
    border-radius:1rem 1rem 0 0;
}
.daegu-center-slide__desc {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:6rem 1rem 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 7.01%, rgba(255, 255, 255, 0.20) 70.98%, rgba(255, 255, 255, 0.00) 98.4%);
    color:#fff;
    font-size:1.4rem;
    text-align:center;
    z-index:2;
}
.card-basic-center-image {
    position:absolute;
    right:5rem;
    bottom:4.8rem;
    z-index:0;
}
.card-bridge--basic-center {background-color:#EC81AB;}
.card-bridge--basic-center.bg1 {background-color:#FCDDEC;}
@media screen and (max-width:1106px) {
    .card-basic-center-image{bottom:2rem;}
}
@media screen and (max-width:960px) {
    .card-bridge--basic-center {height:34rem;}
    .card-basic-center-image {
        right:0;
        padding:0 2rem;
    }
}
@media screen and (max-width:600px) {
    .card-bridge--basic-center {height:35rem;}
    .card-basic-center-image img {max-width:90%;}
    .card-bridge--basic-center.bg1 {height:30.5rem;}
}

.card-center-list {
    position:absolute;
    top:15rem;
    left:5rem;
    width:43.9rem;
    gap:1.2rem;
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(12.5rem, 1fr));
    z-index:2;
} 
@media screen and (max-width:1106px) {
    .card-center-list {
        width:100%;
        grid-template-columns:1fr 1fr 1fr;
        left:auto;
        padding:0 5rem;
    }
}
@media screen and (max-width: 960px) {
    .card-center-list {
        top:10rem;
        padding:0 2rem;
    }
}
.card-center-list li a {
    display: flex;
    width:100%;
    height: 5.3rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;    
    background: #FFF;
    color: var(--color-secondary);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 400;
}
.card-center-list li a:hover {
    background-color:var(--color-secondary);
    color:#fff;
}

.card-slide__basic-center {
    top:auto;
    left:auto;
    bottom:0;
    right:5rem;
    width:28rem;   
    height:auto;
}
.card-slide__basic-center .card-slide-prev,
.card-slide__basic-center .card-slide-next {
    top:50%;
}

.basic-center-slide {
    position:relative;
    width:100%;
    height:22.9rem;
}
.basic-center-slide__image {
    position:relative;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:50% 50%;
    background-repeat:no-repeat;
    border-radius:1rem 1rem 0 0;
}
.basic-center-slide__desc {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:6rem 1rem 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 7.01%, rgba(255, 255, 255, 0.20) 70.98%, rgba(255, 255, 255, 0.00) 98.4%);
    color:#fff;
    font-size:1.4rem;
    text-align:center;
    z-index:2;
}

.card-reporter-image {
    position:absolute;
    right:5rem;
    bottom:3.6rem;
    z-index:0;
}
.card-bridge--reporter {background-color:#F6B4D0;}
@media screen and (max-width:1106px) {
    .card-bridge--reporter {height:24rem;}
    .card-reporter-image {
        right:5rem;
        bottom:4rem;
    }
}
@media screen and (max-width:960px) {
    .card-reporter-image {
        right:0;
        padding:0 2rem;
    }
}
@media screen and (max-width:600px) {
    .card-bridge--reporter {height:33rem;}
    .card-reporter-image {bottom:2rem;}
}

.card-issus-image {
    position:absolute;
    right:5.2rem;
    bottom:3.8rem;
    z-index:0;
}
.card-bridge--issus {background-color:#F6B4D0;}
@media screen and (max-width:1106px) {
    .card-bridge--issus {height:27rem;}
    .card-issus-image {
        right:5rem;
        bottom:2.5rem;
    }
}
@media screen and (max-width:960px) { 
    .card-issus-image {
        right:0;
        padding:0 2rem;
    }
}
@media screen and (max-width:600px) {
    .card-bridge--issus {height:39rem;}
    .card-issus-image {bottom:2rem;}
}

.card-network-image {
    position:absolute;
    right:5rem;
    bottom:10.6rem;
    z-index:0;
}
.card-bridge--network {background-color:#FCDDEC;}
@media screen and (max-width:1106px) {
    .card-bridge--network {height:24rem;}
    .card-network-image {
        right:5rem;
        bottom:9rem;
    }
}
@media screen and (max-width:640px) {
    .card-bridge--network {height:21rem;}
    .card-network-image {
        bottom:2rem;
        padding-left:2rem;
    }
}


.card-week-image {
    position:absolute;
    left:50%;
    bottom:3.4rem;
    z-index:0;
}
.card-bridge--week {background-color:#EC81AB;}
.card-bridge--week.mt-20 {margin-top:2rem;}
@media screen and (max-width:1106px) {
    .card-bridge--week {height:37rem;}
    .card-week-image {
        left:auto;
        right:5rem;
    }
}
@media screen and (max-width:640px) {
    .card-bridge--week {height:51rem;}
    .card-week-image {
        left:auto;
        right:2rem;
        padding-left:2rem;
    }
}

.card-title {
    color: var(--text-basic);
    font-size: 4rem;
    font-weight: 700;
}
@media screen and (max-width:960px) {
    .card-title {font-size:2.4rem;}
}
.card-title.size30 {font-size:3rem;}
@media screen and (max-width:960px) {
    .card-title.size30 {font-size:2.4rem;}
}
.card-desc {
    margin-top:0.8rem;
    color: var(--text-basic);
    font-size: 2.8rem;
}
@media screen and (max-width:960px) {
    .card-desc {font-size:1.6rem;}
}
.card-desc.size24 {font-size:2.4rem;}
@media screen and (max-width:960px) {
    .card-desc.size24 {font-size:1.6rem;}
}
.card-link {
    display:block;
    width:100%;
    height:100%;
}
.card-slide-prev,
.card-slide-next { 
    position:absolute;
    top:calc(50% + 5rem);
    transform:translateY(-50%);
    width:4rem;
    height:4rem;
    border:none;
    background:none;
    cursor:pointer;
    z-index:10;
}
.card-slide__space .card-slide-prev, 
.card-slide__space .card-slide-next {top:50%;}

@media screen and (max-width:960px) {
    .card-slide-prev,
    .card-slide-next {
        top:50%;
        width:2rem;
        height:2rem;
    }
}
.card-slide-prev .svg-icon,
.card-slide-next .svg-icon {
    width: 100%;
    height: 100%;
}
.card-slide-prev {left:-4.2rem;}
@media screen and (max-width:960px) {
    .card-slide-prev {left:-2rem;}
}
.card-slide-next {right:-4.2rem;}
@media screen and (max-width:960px) {
    .card-slide-next {right:-2rem;}
}
.slide-btn {
    width:4rem;
    height:4rem;
}
@media screen and (max-width:960px) {
    .slide-btn {
        width:2rem;
        height:2rem;
    }
}
.slide-btn .svg-icon {
    width: 100%;
    height: 100%;
}

.main-youth-slider {
    position: relative;
    width: 100%;
    margin-top:2rem;
}
@media screen and (max-width:1132px) {
    .main-youth-slider {padding:0 1.6rem;}
}
.main-youth-slider > .swiper-container .swiper-slide {width:1100px;max-width:100%;}
.main-youth-slider-btns {
    display: flex;
    justify-content:flex-end;
    margin-top:2rem;
    gap:4rem;
}

.main-story {
    position:relative;
    width:100%;
    height:32rem;
    margin-top:2rem;    
}
@media screen and (max-width:1160px) {
    .main-story {height:30rem;}
}
@media screen and (max-width:960px) {
    .main-story {height:28rem;}
}
@media screen and (max-width:600px) {
    .main-story {
        height: auto;
        overflow:hidden;
    }
}
.main-story-wrap {    
    display: flex;
    overflow: visible;
    align-items: stretch;
    justify-content: space-between;
    /*position: absolute;
    top: 50%;
    left: 0;
    padding: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
}
@media screen and (max-width:600px) {
    .main-story-wrap {flex-direction:column;}
}
/*
@media screen and (min-width:1160px) {
    .main-story-wrap {
        right: calc(50% - 1100px / 2);
        left: calc(50% - 1100px / 2);
        padding: 0;
        width: auto;
    }
}
@media screen and (max-width: 1160px) {
    .main-story-wrap {
        padding: 0 1.6rem;
        right: max(1.6rem, calc(50% - 1100px / 2));
        left: max(1.6rem, calc(50% - 1100px / 2));
        width: auto;
        overflow:hidden;
    }
}
@media screen and (max-width:600px) {
    .main-story-wrap {
        position:relative;
        flex-direction: column;
        transform: none;
        width: 100%;
        right:auto;
        left:auto;
    }
}
*/
.main-story-head {
    position: relative;
    z-index: 1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    flex:0 0 34.5rem;
    width:34.5rem;
    min-width: 0;
    height:32rem;
    padding-top:3.6rem;
}
.main-story-head.wd-60 {
    flex:0 0 29rem;
    width:29rem;
}
@media screen and (max-width:1160px) {
    .main-story-head,
    .main-story-head.wd-60 {
        flex-basis:26rem;
        width:26rem;
        height:30rem;
        padding-top:3rem;
    }
}
@media screen and (max-width:960px) {
    .main-story-head,
    .main-story-head.wd-60 {
        flex-basis:22rem;
        width:22rem;
        height:28rem;
        padding-top:2.4rem;
    }
}
@media screen and (max-width:600px) {
    .main-story-head,
    .main-story-head.wd-60 {
        flex:0 0 100%;
        width: 100%;
        height: auto;
        padding-top:0;
    }
}
.main-story__btns {
    display: flex;
    justify-content: flex-start;
    gap:2.4rem; /* 버튼 간 간격 */
}
@media screen and (max-width:960px) {
    .main-story__btns {gap:1.6rem;}
}
.main-story__btns .slide-btn {
    transition: opacity 0.2s ease;
}
.main-story__btns .slide-btn:disabled {
    opacity:0.3;
    cursor:default;
}
@media screen and (max-width:600px) {
    .main-story__btns {margin-top:2rem;}
}
.main-story__title {
    position:relative;
    color: var(--text-basic);
    font-size: 3.2rem;
    font-weight: 700;
}
@media screen and (max-width:960px) {
    .main-story__title {
        font-size:2.8rem;
    }
}
@media screen and (max-width:600px) {
    .main-story__title {
        font-size:2.6rem;
    }
}
.main-story-wrap .main-story-list,
.main-story-wrap .swiper-container {
    flex: 1 1 0;
    min-width: 0;
    overflow:visible;
    z-index: 0;
    margin-right: 0;
    width: auto;
    box-sizing:border-box;
}
.main-story-wrap .swiper-container .swiper-slide {width:auto;}
@media screen and (max-width:600px) {
    .main-story-wrap .main-story-list,
    .main-story-wrap .swiper-container {
        flex: 0 0 100%;
        width: 100%;
        padding-top:2rem;
    }
}
.main-story-list-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    touch-action: pan-y;
    will-change: transform;
    transition: transform 0.35s ease;
    box-sizing: content-box;
    gap:1.6rem;
}
.main-story-list-wrap.is-dragging {
    transition:none;
    cursor:grabbing;
}
@media screen and (max-width:1160px) {
    .main-story-list-wrap {gap:1.2rem;}
}
.main-story-item {    
    width:30rem;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.main-story-item.is-active {
    width:37rem;
}
@media screen and (max-width:1160px) {
    .main-story-item,
    .main-story-item.is-active {
        flex:0 0 calc((100% - 2.4rem) / 3);
        width:calc((100% - 2.4rem) / 3);
    }
}
@media screen and (max-width:960px) {
    .main-story-item {
        flex:0 0 calc((100% - 1.2rem) * 0.4);
        width:calc((100% - 1.2rem) * 0.4);
    }
    .main-story-item.is-active {
        flex-basis:calc((100% - 1.2rem) * 0.6);
        width:calc((100% - 1.2rem) * 0.6);
    }
}
@media screen and (max-width:600px) {
    .main-story-wrap .main-story-list {
        height:28rem;
        padding-top:2rem;
    }
    .main-story-list-wrap {
        height:28rem;
        --drag-offset:0px;
    }
    .main-story-item {
        position:absolute;
        top:0;
        left:50%;
        z-index:1;
        flex:0 0 70%;
        width:70%;
        transform:scale(0.8);
        transform:translateX(calc(-145% + var(--drag-offset))) scale(0.8);
        transform-origin:center center;
        will-change:transform;
    }
    .main-story-item.is-before {
        transform:translateX(calc(-145% + var(--drag-offset))) scale(0.8);
    }
    .main-story-item.is-active {
        flex-basis:70%;
        width:70%;
        z-index:2;
        transform:translateX(calc(-50% + var(--drag-offset))) scale(1);
        transform-origin:center center;
    }
    .main-story-item.is-after {
        transform:translateX(calc(45% + var(--drag-offset))) scale(0.8);
    }
}
.main-story-item.is-hidden {
    opacity:0;
}
.main-story-wrap .swiper-slide {height:auto;}
.main-story-wrap .story-link {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:3.2rem;
    width:100%;
    height:32rem;
    box-sizing:border-box;
    border-radius:3rem;
    opacity: 1;
    transition: width 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width:1160px) {
    .main-story-wrap .story-link {
        height:30rem;
        padding:2.4rem;
    }
}
@media screen and (max-width:960px) {
    .main-story-wrap .story-link {
        height:28rem;
        padding:2rem;
    }
}
.main-story-wrap .story-link .card-title.size30 {
    font-size:2.2rem;
}
.main-story-wrap .story-link .card-desc.size24 {
    margin-top:0.8rem;
    font-size:1.6rem;
    line-height:1.45;
}
.main-story-wrap .story-visual img {
    max-height:13rem;
}
@media screen and (max-width:600px) {
    .main-story-wrap .story-link {
        width:100%;
        padding: 2rem;
    }
    .main-story-wrap .story-link .card-title.size30 {
        font-size:2rem;
    }
    .main-story-wrap .story-link .card-desc.size24 {
        margin-top:0.8rem;
        font-size:1.6rem;
    }
    .main-story-wrap .story-visual img {
        max-height:14rem;
    }
}
.main-story-wrap .main-story-item.is-active .story-link,
.main-story-wrap .swiper-slide-active .story-link {
    width:100%;
}
@media screen and (max-width:600px) {
    .main-story-wrap .main-story-item.is-active .story-link,
    .main-story-wrap .swiper-slide-active .story-link {
        width:100%;
        padding: 2rem;
    }
}


.main-story-wrap .swiper-slide-duplicate-active .story-link,
.main-story-wrap .swiper-slide-duplicate-next .story-link,
.main-story-wrap .swiper-slide-prev .story-link {    
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:600px) {
    .main-story-wrap .swiper-slide-duplicate-active .story-link,
    .main-story-wrap .swiper-slide-duplicate-next .story-link,
    .main-story-wrap .swiper-slide-prev .story-link {
        opacity:1;
        pointer-events:all;
    }
}

.main-story-wrap .story-link.bg1 {background-color:#F6B4D0;}
.main-story-wrap .story-link.bg2 {background-color:#FCDDEC;}
.main-story-wrap .story-link.bg3 {background-color:#F295B9;}
.story-visual {text-align:right;}
.story-visual img {max-width:100%;}
.story-visual.report img {max-width:160px;}

.main-week-btns {
    position:absolute;
    bottom:5rem;
    left:5rem;
    display: flex;
    gap:4rem; /* 버튼 간 간격 */
    z-index:2;
}
@media screen and (max-width:960px) {
    .main-week-btns {
        bottom: 2rem;        
    }
}
@media screen and (max-width:600px) {
    .main-week-btns {
        width:100%;
        left:0;
        justify-content:center;
        padding-left:2rem;
        padding-right:2rem;
    }
}

.main-week-slider {
    position:absolute;
    top:50%;
    right:5rem;
    width:69.6rem;
    max-width:calc(100% - 10rem);
    transform:translateY(-50%);
    z-index:2;
}
@media screen and (max-width:960px) {
    .main-week-slider {
        right: 2rem;
    }
}
@media screen and (max-width:880px) {
    .main-week-slider {
        width:80%;
        top:2rem;
        transform:translateY(0);
    }
}
@media screen and (max-width:600px) {
    .main-week-slider {
        width:100%;
        top:12rem;
        right:auto;
        max-width:100%;
        padding-left:2rem;
        padding-right:2rem;
        transform:translateY(0);
    }
}
@media screen and (max-width:880px) {
    .card-bridge--week .card-bridge__head {height:34vw;}
}
@media screen and (max-width:600px) {
    .card-bridge--week .card-bridge__head {height:90vw;}
}
@media screen and (max-width:532px) {
    .card-bridge--week .card-bridge__head {height:89vw;}
}


/*
@media (max-width:960px) {
    .main-week-slider {
        right:auto;
        left:auto;
        top:0;
        transform:translateY(0);
        width:100%;
        max-width:100%;
        padding-left:2rem;
        padding-right:2rem;
    }
    .card-bridge--week.height-auto {height:50rem;}
}*/
.main-week-slider .swiper-container {overflow:hidden;}
.main-week-slider .swiper-slide img {width:100%;max-width:100%;border-radius:1rem;}