/* 캐러셀 스타일 */

.crc-carousel-wrapper {
    padding: 60px 40px;
    background-color: #e8f6f3;
    position: relative;
}

/* 헤더 스타일 */
.crc-carousel-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.crc-laurel-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.crc-laurel-icon {
    font-size: 40px;
    line-height: 1;
}

.crc-laurel-left {
    transform: scaleX(-1);
}

/* 캐러셀 카드 링크 */
.crc-carousel-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.crc-carousel-card-link:hover {
    text-decoration: none;
}

.crc-header-text-1 {
    font-size: 24px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.crc-header-text-2 {
    font-size: 32px;
    font-weight: 700;
    color: #00b894;
    margin: 0;
}

/* 캐러셀 컨테이너 */
.crc-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

/* 개별 카드 */
.crc-carousel-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crc-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.crc-card-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.crc-icon-emoji {
    font-size: 18px;
}

.crc-icon-label {
    font-weight: 500;
}

.crc-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.crc-card-category {
    display: inline-block;
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.crc-card-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.crc-card-content .crc-highlight {
    color: #00b894;
    font-weight: 600;
    margin-bottom: 10px;
}

.crc-card-content .crc-excerpt {
    margin: 0;
}

.crc-progress-status {
    display: inline-block;
    background: #00b894;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 15px;
    align-self: flex-start;
}

/* 네비게이션 화살표 */
.crc-nav-prev,
.crc-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.crc-nav-prev {
    left: 0;
}

.crc-nav-next {
    right: 0;
}

.crc-nav-prev:hover,
.crc-nav-next:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.crc-no-review {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

/* 반응형 */
@media (max-width: 1024px) {
    .crc-carousel-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .crc-carousel-wrapper {
        padding: 40px 20px;
    }

    .crc-header-text-1 {
        font-size: 18px;
    }

    .crc-header-text-2 {
        font-size: 24px;
    }

    .crc-carousel-container {
        padding: 0 35px;
    }

    .crc-nav-prev,
    .crc-nav-next {
        width: 36px;
        height: 36px;
    }
}