/* 이미지 텍스트 소개 섹션 스타일 */
.section-image-text {
    padding: var(--space-12, 80px) 0;
    background-color: var(--bg-default, #ffffff);
}

.image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8, 48px);
    align-items: center;
}

.image-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6, 24px);
}

.image-text-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary, #1a1a1a);
    margin: 0;
}

.image-text-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary, #666666);
    margin: 0;
}

.image-text-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4, 16px);
    margin-top: var(--space-2, 8px);
}

.image-text-btn-primary {
    display: inline-block;
    padding: var(--space-3, 12px) var(--space-6, 24px);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md, 6px);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.image-text-btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-text-link-secondary {
    font-size: 0.9375rem;
    color: var(--text-secondary, #666666);
    text-decoration: none;
    transition: color 0.2s ease;
}

.image-text-link-secondary:hover {
    color: var(--text-primary, #1a1a1a);
    text-decoration: underline;
}

.image-text-image-wrapper {
    position: relative;
    width: 100%;
}

.image-text-image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg, 12px);
    background-color: var(--gray-200, #f3f4f6);
}

.image-text-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.image-text-dots {
    position: absolute;
    bottom: var(--space-4, 16px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2, 8px);
    z-index: 10;
}

.image-text-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.image-text-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.image-text-dot.active {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

/* 반응형 디자인 */
@media (max-width: 1024px) {
    .image-text-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-6, 32px);
    }
    
    .image-text-image-container {
        padding-top: 66.67%; /* 3:2 비율 */
    }
    
    .image-text-content {
        order: 2;
    }
    
    .image-text-image-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .section-image-text {
        padding: var(--space-8, 48px) 0;
    }
    
    .image-text-headline {
        font-size: 1.75rem;
    }
    
    .image-text-description {
        font-size: 1rem;
    }
    
    .image-text-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .image-text-btn-primary {
        width: 100%;
    }
}
