/* LAN 공사 사례 슬라이더 스타일 */
.nit_lan-cases {
    padding: 50px 0;
    background: #fff;
}

.nit_lan-cases-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nit_lan-cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.nit_lan-cases-header .header-content {
    flex: 0 0 auto;
}

.nit_lan-cases-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    position: relative;
    padding-left: 15px;
    white-space: nowrap;
}

.nit_lan-cases-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #0066cc;
    border-radius: 2px;
}

.nit_lan-cases-header .header-divider {
    flex: 0 0 1px;
    height: 40px;
    background: #e0e2e7;
    margin: 0 30px;
}

.nit_lan-cases-header .header-description {
    flex: 1;
    padding-right: 30px;
}

.nit_lan-cases-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.nit_lan-cases-header .header-action {
    flex: 0 0 auto;
}

.nit_btn-more {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #0066cc;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nit_btn-more span {
    margin-right: 8px;
}

.nit_btn-more i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.nit_btn-more:hover {
    background-color: #004c99;
    transform: translateY(-2px);
}

.nit_btn-more:hover i {
    transform: translateX(4px);
}

.nit_lan-cases-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.nit_lan-cases-slider .swiper {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
}

.swiper-wrapper {
    margin: 0;
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    width: calc(25% - 15px) !important;
    height: auto;
    margin-right: 15px;
}

.swiper-slide:last-child {
    margin-right: 0;
}

.case-item {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-content {
    padding: 15px;
    background: #fff;
    border-top: 1px solid #eef2f7;
}

.case-content h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 8px;
}

.case-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #0056b3;
    opacity: 0.7;
}

/* Swiper 네비게이션 스타일 */
.swiper-button-next {
    display: none;
}

.swiper-button-prev {
    display: none;
}

.swiper-pagination {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 50px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    margin: 0 5px;
}

.swiper-pagination-bullet-active {
    background: #0056b3;
}

/* 반응형 스타일 */
@media(max-width: 1400px) {
    .swiper-slide {
        width: calc(25% - 16px) !important;
    }
	
    .nit_consult-left, .nit_consult-right {
        width: 100%;
        flex: unset;
		padding: 0px 10px;
    }	
	
	
	
}
@media (max-width: 1168px) {
.case-content h3 {
    font-size: 12px;
}
}


@media(max-width: 1024px) {
    .swiper-slide {
        width: calc(30%) !important;
    }

    .nit_lan-cases-header {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nit_lan-cases-header .header-content {
        flex: 0 0 100%;
    }

    .nit_lan-cases-header .header-divider {
        display: none;
    }

    .nit_lan-cases-header .header-description {
        flex: 1;
        padding-right: 20px;
    }

    .nit_lan-cases-header .header-action {
        flex: 0 0 auto;
    }
}

@media(max-width: 768px) {
    .nit_lan-cases-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nit_lan-cases-header .header-description {
        padding-right: 0;
    }

    .nit_lan-cases-header .header-action {
        width: 100%;
    }

    .nit_btn-more {
        width: 100%;
        justify-content: center;
    }
    .swiper-slide {
        width: calc(50% - 16px) !important;
    }

	.case-image {
        height: 230px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }


	.case-item:hover {
	    transform: translateY(-5px);
	}

	.nit_lan-cases-more {
	    text-align: center;
	    margin-top: 20px;
	} 

}

@media(max-width: 543px) {

    .swiper-slide {
        width: calc(60%) !important;
    }



}

@media(max-width: 416px) {

    .swiper-slide {
        width: calc(80% - 50px) !important;
    }
	.nit_lan-cases {
		padding-bottom:0px;
	}		
	.nit_slide-dots {
		display:none;
	}
    .nit_banner-content h1 {
		padding-top:50px;
		font-size: 28px;
    }
    
    .nit_banner-content h1 span {
        font-size: 18px;
    }
    
    .nit_banner-content p {
        font-size: 13px;
        font-weight: 600;
    }
	.nit_kt-title {
		padding-top:0px;
		padding-bottom:0px;		
	}
	.nit_kt-title h1 {
        font-size: 22px;	
	}
	.nit_kt-title p {
        font-size: 13px;	
	}	
	
	.nit_kt-banner-tab {
		flex: 1;
	    text-align: center;
	    padding: 15px 10px;
	    background: #f8f9fa;
	    border: 1px solid #e9ecef;
	    cursor: pointer;
	    transition: all 0.3s ease;
	    font-size: 12px;
	    color: #495057;
	    margin: -10px 5px 0px 5px;
	}	
	
	.nit_kt-tab-pane .slogan-area h2 {
		padding-top:20px;
		font-size: 22px;
	    font-weight: 700;

	}
	
	.nit_kt-tab-pane .slogan-area p {
	    font-size: 18px;
	    line-height: 1.6;

	}
	
	.nit_kt-tab-pane .service-image{
	   max-width: 360px;
	   margin: 24px 0px;
	   
	}
    .nit_consult-left{
		width: 416px;
		height: auto;
		padding:0px;
		margin:0px;		
    }	
    .nit_consult-right{
		width: 100%;
		height: auto;
		padding:0px;
		margin:0px;		
    }		
    .nit_consult-inquiry, 
    .nit_consult-simple {
        max-width: 92%;
		padding:0px;
		margin:0px;
    }
	
    .nit_consult-simple {
		display:none;
		
	}
		
	.nit_consult-infotitle {
	   padding-left:20px;
	   font-size: 20px;
	   font-weight: 800;
	   color: #0052a3;
	   margin-bottom: 2px;
	   line-height: 2;
	}
	.nit_consult-infonum {
	   margin-left:20px;       
	}
	
	.nit_container span {
		margin-left:-11px;
		font-size:11px;
	}
	
	.nit_container a {
	margin-left:-10px;
	font-size:11px;
	}
	.nit_lan-banner-content{
	margin:0px;
	padding:0px;
	}
	.nit_kt-banner-content{
	padding:0px;
	}
	.price-area{
	margin:0px;
	padding: 25px 0px;
	}
}