/* 인기ILP 캐러셀 스타일 - 네임스페이스 접두사 사용 */
.ilp-carousel-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

    .ilp-carousel-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

.ilp-carousel-container {
    position: relative;
    z-index: 2;
}

.ilp-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ilp-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.ilp-carousel-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Swiper 컨테이너 스타일 */
.ilp-carousel-swiper {
    padding: 2rem 1rem;
    max-width: 100%;
    overflow: hidden;
}

    .ilp-carousel-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .ilp-carousel-swiper .swiper-slide {
        width: auto;
    }

/* 카드 스타일 */
.ilp-carousel-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    height: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/*.ilp-carousel-swiper .swiper-slide {
    height: 450px;
    display: flex;
    flex-direction: column;
    width: auto;
}*/

/* 카드 스타일 */
/*.ilp-carousel-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    width: 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}*/

    .ilp-carousel-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #667eea, #764ba2);
    }

    .ilp-carousel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        cursor: pointer;
    }

    .ilp-carousel-card.hot::before {
        background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    }

    .ilp-carousel-card.featured::before {
        background: linear-gradient(90deg, #feca57, #ff9ff3);
    }

/* 카드 내부 요소들 */
.ilp-carousel-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

    .ilp-carousel-badge.hot {
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    }

    .ilp-carousel-badge.featured {
        background: linear-gradient(45deg, #feca57, #ff9ff3);
        color: #333;
    }

    .ilp-carousel-badge.new {
        background: linear-gradient(45deg, #48dbfb, #0abde3);
    }

.ilp-carousel-title-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ilp-carousel-institution {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .ilp-carousel-institution i {
        font-size: 0.9rem;
    }

.ilp-carousel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.ilp-carousel-meta-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

    .ilp-carousel-meta-tag.trl {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }

.ilp-carousel-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 3rem;
    align-items: center;
}

.ilp-carousel-stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.9rem;
}

    .ilp-carousel-stat-item i {
        color: #667eea;
    }

.ilp-carousel-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
    height: 3.6rem;
}

.ilp-carousel-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin-top: auto;
    height: 2.5rem;
    line-height: 1.1;
}

    .ilp-carousel-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        color: white;
        text-decoration: none;
    }

/* 커스텀 네비게이션 버튼 */
.ilp-carousel-handle {
    top: 163px;
    width: 80px;
    background: rgb(163 163 163 / 8%);
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
}

    .ilp-carousel-handle:hover {
        background: rgb(163 163 163 / 12%);
        color: #5a6fd8;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .ilp-carousel-handle:focus {
        outline: 2px solid #667eea;
        outline-offset: 2px;
    }

    .ilp-carousel-handle.prev {
        left: 0;
    }

    .ilp-carousel-handle.next {
        right: 0;
    }

/* 핫딜 캐러셀 스타일 */
.hotdeal-carousel-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff3838 100%);
    margin: 40px 0;
}

.hotdeal-carousel-container {
    margin: 0 auto;
    padding: 0 20px;
}

.hotdeal-carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.hotdeal-carousel-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.hotdeal-carousel-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.hotdeal-carousel-loading {
    text-align: center;
    padding: 40px 0;
    color: white;
}

    .hotdeal-carousel-loading .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid rgba(255, 255, 255, 0.3);
        border-top: 4px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
    }

.hotdeal-carousel-swiper {
    position: relative;
    padding: 20px 50px;
}

.hotdeal-carousel-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .hotdeal-carousel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

.hotdeal-carousel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.hotdeal-carousel-badge-highlighted {
    /*background: linear-gradient(45deg, #ff6b6b, #ee5a6f) !important;*/
    color: #fff !important;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hotdeal-carousel-badge-discount {
    /* background: linear-gradient(45deg, #ff3838, #ff6b6b) !important;*/
    color: #fff !important;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hotdeal-carousel-title-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hotdeal-carousel-institution {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.hotdeal-carousel-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.hotdeal-carousel-meta-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

    .hotdeal-carousel-meta-tag.trl {
        background: #e3f2fd;
        color: #1976d2;
        max-width: 60px;
    }

    .hotdeal-carousel-meta-tag.field {
    background: #f3e5f5;
    color: #7b1fa2;
    max-width: 80px;
}

/* 핵딜 가격 정보 스타일 */
    .hotdeal-carousel-price {
    margin-bottom: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border-left: 4px solid #ff3838;
}

.hotdeal-carousel-price .original-price {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.hotdeal-carousel-price .discounted-price {
    display: block;
    font-size: 1rem;
    color: #ff3838;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(255, 56, 56, 0.2);
}

/* 할인가격만 있을 때 스타일 */
.hotdeal-carousel-price .discounted-price:only-child {
    color: #28a745;
    font-size: 1.1rem;
}

/* 원가만 있을 때 스타일 */
.hotdeal-carousel-price .original-price:only-child {
    color: #495057;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.hotdeal-carousel-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.hotdeal-carousel-stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #666;
}

    .hotdeal-carousel-stat-item i {
        color: #ff3838;
    }

.hotdeal-carousel-description {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
    height: 3.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.hotdeal-carousel-button {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(45deg, #ff3838, #ff6b6b);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

    .hotdeal-carousel-button:hover {
        background: linear-gradient(45deg, #ff6b6b, #ff3838);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 56, 56, 0.3);
    }

.hotdeal-carousel-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .hotdeal-carousel-handle:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .hotdeal-carousel-handle.prev {
        left: 10px;
    }

    .hotdeal-carousel-handle.next {
        right: 10px;
    }

.hotdeal-carousel-icon-left,
.hotdeal-carousel-icon-right {
    width: 0;
    height: 0;
    border: solid #ff3838;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.hotdeal-carousel-icon-left {
    transform: rotate(135deg);
}

.hotdeal-carousel-icon-right {
    transform: rotate(-45deg);
}

/* 핫딜 캐러셀 페이지네이션 숨기기 */
.hotdeal-carousel-swiper .swiper-pagination {
    display: none !important;
}

/* 기존 페이지네이션 스타일 (다른 캐러셀용) */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: white;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hotdeal-carousel-title {
        font-size: 2rem;
    }

    .hotdeal-carousel-subtitle {
        font-size: 1rem;
    }

    .hotdeal-carousel-card {
        height: 260px;
        padding: 20px;
    }

    .hotdeal-carousel-handle {
        width: 35px;
        height: 35px;
    }

        .hotdeal-carousel-handle.prev {
            left: 5px;
        }

        .hotdeal-carousel-handle.next {
            right: 5px;
        }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 아이콘 정의 - FontAwesome 사용 */
.ilp-carousel-icon-left::before {
    content: "\f104"; /* FontAwesome chevron-left */
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ilp-carousel-icon-right::before {
    content: "\f105"; /* FontAwesome chevron-right */
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 기존 Swiper 버튼 숨기기 */
.ilp-carousel-swiper .swiper-button-next,
.ilp-carousel-swiper .swiper-button-prev {
    display: none;
}

/* Swiper 페이지네이션 */
.ilp-carousel-swiper .swiper-pagination {
    bottom: 0;
}

.ilp-carousel-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.ilp-carousel-swiper .swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

/* 로딩 상태 */
.ilp-carousel-loading {
    text-align: center;
    padding: 3rem;
    color: white;
}

    .ilp-carousel-loading .spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(255,255,255,0.3);
        border-top: 3px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 1rem;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .ilp-carousel-title {
        font-size: 2rem;
    }

    .ilp-carousel-card {
        padding: 1.2rem;
        height: 400px;
    }

    .ilp-carousel-swiper .swiper-slide {
        height: 400px;
    }

    .ilp-carousel-title-text {
        font-size: 1rem;
        height: 2.5rem;
    }

    .ilp-carousel-description {
        height: 3.2rem;
    }

    .ilp-carousel-stats {
        height: 2.8rem;
        padding: 0.6rem 0;
    }

    .ilp-carousel-handle {
        height: 400px;
        width: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .ilp-carousel-section {
        padding: 2rem 0;
    }

    .ilp-carousel-title {
        font-size: 1.8rem;
    }

    .ilp-carousel-subtitle {
        font-size: 1rem;
    }

    .ilp-carousel-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ilp-carousel-handle {
        font-size: 1.1rem;
    }
}

/* 애니메이션 효과 */
.ilp-carousel-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 호버 효과 개선 */
.ilp-carousel-card:hover .ilp-carousel-button {
    background: linear-gradient(45deg, #5a6fd8, #6a4c93);
}

/* 접근성 개선 */
.ilp-carousel-handle:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.ilp-carousel-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* 기술 슬라이드 스타일 */
.tech-slides-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.tech-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.tech-slide {
    width: 100%;
    display: none;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(20px);
}

    .tech-slide.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }

    .tech-slide:not(.active) {
        display: none;
        opacity: 0;
        transform: translateX(20px);
    }

    .tech-slide .tech-cards-grid {
        display: flex;
        gap: 1rem;
        padding-inline: 3rem;
        justify-content: center;
        width: 100%;
        overflow: clip;
    }

        .tech-slide .tech-cards-grid .mytech-card {
            margin: 0;
            flex: 0 0 auto;
            width: calc((100% - 4rem) / 6);
            min-width: 200px;
            max-width: calc((100% - 4rem) / 6);
        }

/* 반응형 카드 크기 조정 */
@media (max-width: 1400px) {
    .tech-slide .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 5);
        max-width: calc((100% - 4rem) / 5);
    }
}

@media (max-width: 1200px) {
    .tech-slide .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 4);
        max-width: calc((100% - 4rem) / 4);
    }
}

@media (max-width: 992px) {
    .tech-slide .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}

@media (max-width: 768px) {
    .tech-slide .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 2);
        max-width: calc((100% - 4rem) / 2);
    }
}

@media (max-width: 576px) {
    .tech-slide .tech-cards-grid .mytech-card {
        width: calc(100% - 4rem);
        max-width: calc(100% - 4rem);
    }
}

/* 카드 양옆 버튼 스타일 */
.tech-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0,0,0,0.7) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
    color: white !important;
    font-size: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

    .tech-nav-btn:hover {
        background: rgba(0,0,0,0.9);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    }

    .tech-nav-btn:active {
        transform: translateY(-50%) scale(0.95);
    }

    .tech-nav-btn.prev-btn {
        left: 10px;
    }

    .tech-nav-btn.next-btn {
        right: 10px;
    }

    /* 버튼이 보이지 않을 때 강제 표시 */
    .tech-slides-container:hover .tech-nav-btn {
        opacity: 1;
        visibility: visible;
    }

    /* 슬라이드가 1개일 때만 버튼 숨기기 */
    .tech-slides-container.single-slide .tech-nav-btn {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /* 버튼이 항상 보이도록 강제 설정 (단일 슬라이드가 아닐 때) */
    .tech-slides-container:not(.single-slide) .tech-nav-btn {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }





.tech-cards-grid {
    display: flex;
    gap: 1rem;
    padding-inline: 3rem;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
}

    .tech-cards-grid .mytech-card {
        margin: 0;
        flex: 0 0 auto;
        width: calc((100% - 4rem) / 6);
        min-width: 200px;
        max-width: calc((100% - 4rem) / 6);
    }

/* 반응형 카드 크기 조정 (일반 그리드) */
@media (max-width: 1400px) {
    .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 5);
        max-width: calc((100% - 4rem) / 5);
    }
}

@media (max-width: 1200px) {
    .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 4);
        max-width: calc((100% - 4rem) / 4);
    }
}

@media (max-width: 992px) {
    .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 3);
        max-width: calc((100% - 4rem) / 3);
    }
}

@media (max-width: 768px) {
    .tech-cards-grid .mytech-card {
        width: calc((100% - 4rem) / 2);
        max-width: calc((100% - 4rem) / 2);
    }
}

@media (max-width: 576px) {
    .tech-cards-grid .mytech-card {
        width: calc(100% - 4rem);
        max-width: calc(100% - 4rem);
    }
}

.single-tech-card {
    text-align: center;
}

    .single-tech-card .mytech-card {
        max-width: 400px;
        margin: 0 auto;
    }

/* 우수연구원 캐러셀 스타일 */
.excellent-researcher-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.excellent-researcher-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .excellent-researcher-header .section-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #2c3e50;
    }

    .excellent-researcher-header .section-desc {
        color: #6c757d;
        font-size: 1.1rem;
        margin-bottom: 0;
    }

.excellent-researcher-loading {
    text-align: center;
    padding: 3rem 0;
}

    .excellent-researcher-loading .spinner {
        width: 40px;
        height: 40px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #007bff;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 1rem;
    }

.excellent-researcher-swiper {
    position: relative;
    padding: 2rem 3rem;
    max-width: 100%;
    overflow: hidden;
}

.excellent-researcher-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    height: 380px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .excellent-researcher-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    }

    .excellent-researcher-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffd700, #ffed4e);
    }

.excellent-researcher-rank {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #2c3e50;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
}

.excellent-researcher-avatar {
    text-align: center;
    margin-bottom: 1rem;
}

    .excellent-researcher-avatar img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .excellent-researcher-avatar .avatar-placeholder {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 2rem;
        margin: 0 auto;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.excellent-researcher-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 0.5rem;
}

.excellent-researcher-institution {
    font-size: 0.9rem;
    color: #6c757d;
    text-align: center;
    margin-bottom: 1rem;
}

.excellent-researcher-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.excellent-researcher-stat-item {
    text-align: center;
    flex: 1;
}

    .excellent-researcher-stat-item i {
        color: #007bff;
        margin-right: 0.3rem;
    }

    .excellent-researcher-stat-item span {
        font-size: 0.85rem;
        color: #495057;
        font-weight: 600;
    }

.excellent-researcher-score {
    text-align: center;
    margin-bottom: 1rem;
}

    .excellent-researcher-score .score-badge {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        font-weight: 700;
        font-size: 0.9rem;
    }

.excellent-researcher-field {
    text-align: center;
    margin-bottom: 1rem;
}

    .excellent-researcher-field .field-tag {
        background: #e9ecef;
        color: #495057;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 600;
    }

.excellent-researcher-button {
    margin-top: auto;
    text-align: center;
}

    .excellent-researcher-button .btn {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #fff;
        border: none;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .excellent-researcher-button .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

.excellent-researcher-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

    .excellent-researcher-handle:hover {
        background: #007bff;
        color: #fff;
        box-shadow: 0 5px 15px rgba(0,123,255,0.3);
    }

    .excellent-researcher-handle.prev {
        left: 1rem;
    }

    .excellent-researcher-handle.next {
        right: 1rem;
    }

.excellent-researcher-icon-left,
.excellent-researcher-icon-right {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-top: none;
    border-right: none;
}

.excellent-researcher-icon-left {
    transform: rotate(45deg);
    margin-left: 4px;
}

.excellent-researcher-icon-right {
    transform: rotate(225deg);
    margin-right: 4px;
}

.excellent-researcher-swiper .swiper-pagination {
    position: relative;
    margin-top: 1rem;
}

.excellent-researcher-swiper .swiper-pagination-bullet {
    background: #dee2e6;
    opacity: 1;
}

.excellent-researcher-swiper .swiper-pagination-bullet-active {
    background: #007bff;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .excellent-researcher-swiper {
        padding: 1rem 2rem;
    }

    .excellent-researcher-card {
        height: 350px;
        padding: 1.2rem;
    }

    .excellent-researcher-name {
        font-size: 1.1rem;
    }

    .excellent-researcher-handle {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .excellent-researcher-swiper {
        padding: 1rem 1.5rem;
    }

    .excellent-researcher-card {
        height: 320px;
        padding: 1rem;
    }

    .excellent-researcher-avatar img,
    .excellent-researcher-avatar .avatar-placeholder {
        width: 60px;
        height: 60px;
    }

    .excellent-researcher-name {
        font-size: 1rem;
    }

    .excellent-researcher-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .excellent-researcher-stat-item {
        text-align: center;
    }
}

/* 애로기술 등록 현황 캐러셀 스타일 */
.difficulty-tech-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    margin: 2rem 0;
}

.difficulty-tech-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .difficulty-tech-header .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #333;
    }

    .difficulty-tech-header .section-desc {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0;
    }

.difficulty-tech-loading {
    text-align: center;
    padding: 3rem;
    color: #333;
}

    .difficulty-tech-loading .spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(255, 154, 158, 0.3);
        border-top: 3px solid #ff9a9e;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 1rem;
    }

.difficulty-tech-swiper {
    padding: 2rem 3rem;
    max-width: 100%;
    overflow: hidden;
}

    .difficulty-tech-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .difficulty-tech-swiper .swiper-slide {
        height: 400px;
        display: flex;
        width: auto;
    }

.difficulty-tech-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    height: 400px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

    .difficulty-tech-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ff9a9e, #fecfef);
    }

    .difficulty-tech-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        cursor: pointer;
    }

.difficulty-tech-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

    .difficulty-tech-badge.urgent {
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    }

    .difficulty-tech-badge.progress {
        background: linear-gradient(45deg, #48dbfb, #0abde3);
    }

    .difficulty-tech-badge.completed {
        background: linear-gradient(45deg, #28a745, #20c997);
    }

.difficulty-tech-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.difficulty-tech-company {
    color: #ff9a9e;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .difficulty-tech-company i {
        font-size: 0.9rem;
    }

.difficulty-tech-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.difficulty-tech-meta-tag {
    background: rgba(255, 154, 158, 0.1);
    color: #ff9a9e;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

    .difficulty-tech-meta-tag.category {
        background: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
    }

.difficulty-tech-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    height: 3rem;
    align-items: center;
}

.difficulty-tech-stat-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.9rem;
}

    .difficulty-tech-stat-item i {
        color: #ff9a9e;
    }

.difficulty-tech-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    height: 3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.difficulty-tech-button {
    margin-top: auto;
}

    .difficulty-tech-button .btn {
        background: linear-gradient(45deg, #ff9a9e, #fecfef);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        transition: all 0.3s ease;
        width: 100%;
    }

        .difficulty-tech-button .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 154, 158, 0.3);
        }

.difficulty-tech-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .difficulty-tech-handle:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .difficulty-tech-handle.prev {
        left: -20px;
    }

    .difficulty-tech-handle.next {
        right: -20px;
    }

.difficulty-tech-icon-left,
.difficulty-tech-icon-right {
    width: 0;
    height: 0;
    border: solid #ff9a9e;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.difficulty-tech-icon-left {
    transform: rotate(135deg);
}

.difficulty-tech-icon-right {
    transform: rotate(-45deg);
}

.difficulty-tech-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.difficulty-tech-swiper .swiper-pagination-bullet {
    background: rgba(255, 154, 158, 0.5);
    opacity: 1;
}

.difficulty-tech-swiper .swiper-pagination-bullet-active {
    background: #ff9a9e;
}

/* 애로기술 캐러셀 반응형 스타일 */
@media (max-width: 768px) {
    .difficulty-tech-swiper {
        padding: 1rem 2rem;
    }

    .difficulty-tech-card {
        height: 350px;
        padding: 1.2rem;
    }

    .difficulty-tech-title {
        font-size: 1rem;
    }

    .difficulty-tech-handle {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .difficulty-tech-swiper {
        padding: 1rem 1.5rem;
    }

    .difficulty-tech-card {
        height: 320px;
        padding: 1rem;
    }

    .difficulty-tech-title {
        font-size: 0.9rem;
    }

    .difficulty-tech-stats {
        flex-direction: column;
        gap: 0.5rem;
        height: auto;
    }

    .difficulty-tech-stat-item {
        text-align: center;
    }
}

/* 인기 ILP 순위 이미지 스타일 */
.ilp-carousel-rank {
    pointer-events: none;
}

    .ilp-carousel-rank .rank-image {
        width: 100%;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        opacity: 1;
        background: none;
        display: block;
    }

        .ilp-carousel-rank .rank-image:hover {
            transform: scale(1.1);
        }

/* 순위별 특별 스타일 */
/*.ilp-carousel-card:nth-child(1) .ilp-carousel-rank .rank-image {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.5));
}

.ilp-carousel-card:nth-child(2) .ilp-carousel-rank .rank-image {
    filter: drop-shadow(0 2px 4px rgba(192, 192, 192, 0.5));
}

.ilp-carousel-card:nth-child(3) .ilp-carousel-rank .rank-image {
    filter: drop-shadow(0 2px 4px rgba(205, 127, 50, 0.5));
}*/

/* 반응형 순위 이미지 */
/*@media (max-width: 768px) {
    .ilp-carousel-rank .rank-image {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .ilp-carousel-rank .rank-image {
        width: 28px;
        height: 28px;
    }
}*/