.elementor-21 .elementor-element.elementor-element-49aa8700{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-91e6f49 *//* 라이트박스 스타일 */
.ir-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.ir-lightbox.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.ir-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.ir-lightbox-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    animation: slideInUp 0.3s ease;
}

.ir-lightbox-header {
    padding: 2rem 3rem;
    border-bottom: 1px solid var(--insaeng-cream-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.ir-lightbox-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.5rem;
    color: var(--insaeng-navy);
    margin: 0;
}

.ir-lightbox-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--insaeng-cream);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--insaeng-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ir-lightbox-close:hover {
    background: var(--insaeng-gold);
    color: white;
    transform: rotate(90deg);
}

.ir-lightbox-content {
    padding: 3rem;
    overflow-y: auto;
    flex-grow: 1;
}

/* 원고 샘플 스타일 */
.ir-manuscript-sample {
    font-family: 'Noto Serif KR', serif;
    line-height: 2;
    color: var(--text-primary);
}

.ir-manuscript-title {
    font-size: 2.5rem;
    color: var(--insaeng-navy);
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--insaeng-gold);
}

.ir-manuscript-chapter {
    margin-bottom: 3rem;
}

.ir-manuscript-chapter h3 {
    font-size: 1.75rem;
    color: var(--insaeng-gold-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.ir-manuscript-chapter p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-indent: 2em;
    color: #333;
    line-height: 2.2;
}

.ir-manuscript-ending {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--insaeng-cream-dark);
    text-align: center;
    font-style: italic;
    color: var(--insaeng-gold-dark);
}

/* 원고 샘플 버튼 스타일 */
.ir-sample-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--insaeng-gold);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.ir-sample-btn:hover {
    background: var(--insaeng-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

/* 애니메이션 */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .ir-lightbox-container {
        width: 95%;
        max-height: 90vh;
        margin: 0;
    }
    
    .ir-lightbox-header {
        padding: 1.5rem;
    }
    
    .ir-lightbox-content {
        padding: 1.5rem;
    }
    
    .ir-manuscript-title {
        font-size: 1.75rem;
    }
    
    .ir-manuscript-chapter h3 {
        font-size: 1.5rem;
    }
    
    .ir-manuscript-chapter p {
        font-size: 1rem;
        text-indent: 1.5em;
    }
}/* End custom CSS */