/* 산업군 공통 스타일 */
.industry-header {
    background: transparent;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.industry-header h1 {
    font-size: 5.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    padding: 10px 0;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.industry-header p {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
}

.industry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.industry-description {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.industry-description h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.industry-description p {
    line-height: 1.8;
    color: #555;
}

.exhibition-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.exhibition-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.exhibition-logo {
    height: 120px;
    background: #f8f9fa no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.exhibition-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 27, 27, 0.39);
    z-index: 1;
}

.exhibition-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.exhibition-info {
    padding: 25px;
}

.exhibition-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exhibition-title-eng {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.exhibition-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.exhibition-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.exhibition-detail i {
    width: 16px;
}

.exhibition-detail span {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.exhibition-link {
    display: inline-block;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.exhibition-link:hover {
    color: white;
    opacity: 0.8;
}

.pagination {
    text-align: center;
    margin: 40px 0;
}

.pagination a {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    color: white;
}

.breadcrumb {
    padding: 20px 0;
    color: #666;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 배경 이미지 Swiper 슬라이드 스타일 */
.industry-swiper-slide {
    box-sizing: border-box;
    padding: 0;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .industry-header h1 {
        font-size: 2rem;
    }
    
    .exhibition-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .industry-content {
        padding: 0 15px;
    }
}

/* 산업군 버튼 스타일 */
.industry-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0px 80px 0px;
}

.industry-button {
    display: inline-block;
    padding: 15px 30px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.industry-button:hover {
    background: #6d6d6d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
} 