/* 시설안내 섹션 스타일 */
.operation-section {
    padding: 80px 15px;
    background-color: #fff;
}

.operation-container {
    max-width: 1200px;
    margin: 0 auto;
}
.operation-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.operation-tab {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
	border:1px solid #e8e8e8;
	width:30%;
	text-align:center;
}

.operation-tab.active {
    background: #005bac;
	color:#fff;
}

.operation-content {
    display: none;
}

.operation-content.active {
    display: block;
}

.operation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.operation-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
	width:380px;
	max-width:380px;
	margin-bottom:50px;
}

.content-inner img{
	width:100%;
}

@media screen and (max-width: 1440px) {
	.operation-section{
		padding:60px 15px;
	}
}


@media screen and (max-width: 1200px) {
	
}

@media screen and (max-width: 768px) {
	
	.operation-section{
		padding:30px 15px;
	}
	.operation-tab{padding:10px;}
	
}