/* [슬라이드 1: 타이틀 레이아웃] */
.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.text-section {
    flex: 0 0 55%; /* 좌측 5.5 비율 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-section {
    flex: 0 0 40%; /* 우측 4 비율 */
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image {
    width: 100%;
    max-width: 450px; /* 적절한 최대 크기 설정 */
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover; /* 이미지가 찌그러지지 않게 함 */
    border-radius: 30px; /* 기존 디자인의 둥근 모서리 유지 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); /* 기존 그림자 유지 */
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* 만약 배경색이 있는 슬라이드에서 흰색 배경의 누끼 이미지를 쓴다면 */
.hero-image {
    background: white; 
}

/* 메인 카피 스타일 */
.main-copy {
    font-size: 3.2rem !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    color: var(--text-color) !important;
    margin: 0 !important;
    word-break: keep-all;
}

.accent-text {
    color: var(--primary-accent) !important;
    display: block;
    margin-top: 10px;
}

/* 브랜드 로고 스타일 */
.brand-name {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    margin-top: 30px !important;
    color: var(--text-color) !important;
    opacity: 0.9;
}

/* 발표자 정보 */
.presenter-info {
    font-size: 1.1rem !important;
    margin-top: 80px !important;
    font-weight: 300;
    color: #777 !important;
}

/* 제품 렌더링 플레이스홀더 */
.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::after {
    content: '제품 3D 렌더링 이미지 삽입';
    font-size: 1.2rem;
    color: #bbb;
    font-weight: 400;
}

/* 추가 슬라이드를 위한 기본 스타일 */
.reveal h2 {
    color: var(--primary-accent);
    font-weight: 700;
}