/* BYD ATTO 3 프로모션 스타일 */

/* ===== 로딩 화면 ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: #ffffff;
}

.loading-logo {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s ease-in-out infinite;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #00a8ff, #0078d4);
    border-radius: 10px;
    animation: loading 2s ease-in-out forwards;
}

.loading-text {
    font-size: 1.1rem;
    color: #cccccc;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===== 기본 설정 ===== */
.byd-atto3-content * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.byd-atto3-content {
    font-family: 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

.byd-atto3-content .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Hero Section ===== */
.byd-atto3-content .hero {
    height: calc(100vh - 80px); /* 헤더 높이 고려 */
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.byd-atto3-content .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.byd-atto3-content .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.byd-atto3-content .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    border-radius: 20px;
}

.byd-atto3-content .hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.byd-atto3-content .hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    margin-bottom: 15px;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.byd-atto3-content .hero-price {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 40px;
    color: #00a8ff;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.byd-atto3-content .scroll-down-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.byd-atto3-content .scroll-down-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.byd-atto3-content .scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ===== Key Message Section (흰색 배경) ===== */
.byd-atto3-content .key-message {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.byd-atto3-content .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.byd-atto3-content .key-message-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #555555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.byd-atto3-content .highlight {
    color: #0078d4;
    font-weight: 600;
}

.byd-atto3-content .key-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.byd-atto3-content .key-feature-item {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.byd-atto3-content .key-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.15);
}

.byd-atto3-content .feature-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 10px;
}

.byd-atto3-content .feature-label {
    font-size: 1.1rem;
    color: #666666;
}

/* ===== Gallery Section - Exterior (검은색 배경) ===== */
.byd-atto3-content .exterior-gallery {
    background: #1a1a1a;
    padding: 100px 0;
}

.byd-atto3-content .exterior-gallery .section-title {
    color: #ffffff;
    text-align: center;
}

.byd-atto3-content .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #999999;
    margin-bottom: 60px;
}

/* ===== Gallery Section - Interior (흰색 배경) ===== */
.byd-atto3-content .interior-gallery {
    background: #f8f9fa;
    padding: 100px 0;
}

.byd-atto3-content .interior-gallery .section-title {
    color: #1a1a1a;
    text-align: center;
}

.byd-atto3-content .interior-gallery .section-subtitle {
    color: #666666;
}

/* ===== Slider Container (세로 이미지 + 텍스트) ===== */
.byd-atto3-content .slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 80px;
}

.byd-atto3-content .slider-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

/* 왼쪽: 세로 이미지 영역 */
.byd-atto3-content .slider-image-wrapper {
    flex: 0 0 45%;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.byd-atto3-content .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 오른쪽: 텍스트 영역 (그라데이션 배경) */
.byd-atto3-content .slider-text-wrapper {
    flex: 1;
    padding: 40px;
    position: relative;
    z-index: 2;
}

/* 외관 섹션 텍스트 스타일 (검은 배경) */
.byd-atto3-content .exterior-gallery .slider-text-wrapper {
    background: linear-gradient(
        90deg, 
        rgba(26, 26, 26, 0) 0%,
        rgba(26, 26, 26, 0.8) 20%,
        rgba(26, 26, 26, 1) 40%
    );
    padding-left: 60px;
}

/* 인테리어 섹션 텍스트 스타일 (흰 배경) */
.byd-atto3-content .interior-gallery .slider-text-wrapper {
    background: linear-gradient(
        90deg, 
        rgba(248, 249, 250, 0) 0%,
        rgba(248, 249, 250, 0.8) 20%,
        rgba(248, 249, 250, 1) 40%
    );
    padding-left: 60px;
}

.byd-atto3-content .slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00a8ff;
    transition: opacity 0.5s ease;
}

.byd-atto3-content .slider-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    transition: opacity 0.5s ease;
}

.byd-atto3-content .exterior-gallery .slider-desc {
    color: #cccccc;
}

.byd-atto3-content .interior-gallery .slider-desc {
    color: #555555;
}

/* 슬라이드 네비게이션 버튼 */
.byd-atto3-content .slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 168, 255, 0.2);
    border: 2px solid rgba(0, 168, 255, 0.5);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.byd-atto3-content .slider-nav-btn:hover {
    background: rgba(0, 168, 255, 0.4);
    border-color: #00a8ff;
    transform: translateY(-50%) scale(1.1);
}

.byd-atto3-content .slider-nav-btn.prev-btn {
    left: 10px;
}

.byd-atto3-content .slider-nav-btn.next-btn {
    right: 10px;
}

/* 슬라이드 인디케이터 */
.byd-atto3-content .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.byd-atto3-content .slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.byd-atto3-content .slider-indicator.active {
    background: #00a8ff;
    transform: scale(1.3);
}

.byd-atto3-content .slider-indicator:hover {
    background: rgba(0, 168, 255, 0.6);
    transform: scale(1.2);
}

/* 인테리어 섹션 인디케이터 색상 (흰 배경용) */
.byd-atto3-content .interior-gallery .slider-indicator {
    background: rgba(0, 0, 0, 0.3);
}

.byd-atto3-content .interior-gallery .slider-indicator.active {
    background: #0078d4;
    transform: scale(1.3);
}

.byd-atto3-content .interior-gallery .slider-indicator:hover {
    background: rgba(0, 120, 212, 0.6);
    transform: scale(1.2);
}

/* ===== ADAS Section (검은색 배경) ===== */
.byd-atto3-content .adas-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.byd-atto3-content .adas-section .section-title {
    color: #ffffff;
    text-align: center;
}

.byd-atto3-content .adas-section .section-subtitle {
    color: #999999;
    text-align: center;
    margin-bottom: 60px;
}

.byd-atto3-content .adas-slider-container {
    max-width: 1000px;
    margin: 0 auto;
}

.byd-atto3-content .adas-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 168, 255, 0.2);
}

.byd-atto3-content .adas-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.byd-atto3-content .adas-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.byd-atto3-content .adas-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.byd-atto3-content .adas-nav-btn:hover {
    background: rgba(0, 168, 255, 0.3);
    border-color: rgba(0, 168, 255, 0.5);
    transform: scale(1.1);
}

.byd-atto3-content .adas-info {
    flex: 1;
    text-align: center;
    color: #ffffff;
}

.byd-atto3-content .adas-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00a8ff;
    transition: opacity 0.3s ease;
}

.byd-atto3-content .adas-desc {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    transition: opacity 0.3s ease;
}

.byd-atto3-content .adas-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.byd-atto3-content .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.byd-atto3-content .indicator.active {
    background: #00a8ff;
    transform: scale(1.3);
}

.byd-atto3-content .indicator:hover {
    background: rgba(0, 168, 255, 0.6);
    transform: scale(1.2);
}

/* ===== Features Section (흰색 배경) ===== */
.byd-atto3-content .features {
    background: #ffffff;
    padding: 100px 0;
}

.byd-atto3-content .features .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.byd-atto3-content .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.byd-atto3-content .feature-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.byd-atto3-content .feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(0, 120, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0, 120, 212, 0.15);
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
}

.byd-atto3-content .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.byd-atto3-content .feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.byd-atto3-content .feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.byd-atto3-content .feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.byd-atto3-content .feature-desc {
    color: #666666;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== Purchase Section (검은색 배경) ===== */
.byd-atto3-content .purchase {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 100px 0;
}

.byd-atto3-content .purchase-card {
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.1), rgba(0, 120, 212, 0.05));
    border: 2px solid rgba(0, 168, 255, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.byd-atto3-content .purchase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    color: #00a8ff;
    font-weight: 700;
}

.byd-atto3-content .purchase-subtitle {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.byd-atto3-content .price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.byd-atto3-content .price-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(0, 168, 255, 0.2);
    text-align: center;
    min-width: 250px;
    transition: all 0.3s ease;
}

.byd-atto3-content .price-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 255, 0.5);
    background: rgba(0, 168, 255, 0.1);
}

.byd-atto3-content .price-label {
    font-size: 1.1rem;
    color: #999999;
    margin-bottom: 10px;
}

.byd-atto3-content .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00a8ff;
    margin-bottom: 10px;
}

.byd-atto3-content .price-note {
    font-size: 0.9rem;
    color: #cccccc;
}

.byd-atto3-content .price-divider {
    font-size: 2rem;
    color: #666666;
}

.byd-atto3-content .purchase-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.byd-atto3-content .benefit-item {
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.byd-atto3-content .benefit-item:hover {
    background: rgba(0, 168, 255, 0.1);
    transform: translateX(5px);
}

.byd-atto3-content .benefit-item::before {
    content: '✓';
    color: #00a8ff;
    font-weight: bold;
    font-size: 1.3rem;
}

.byd-atto3-content .purchase-cta {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.3);
    display: block;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.byd-atto3-content .purchase-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 168, 255, 0.4);
}

/* ===== Footer ===== */
.byd-atto3-content .byd-footer {
    background: #000000;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 168, 255, 0.2);
}

.byd-atto3-content .byd-footer-content {
    margin-bottom: 30px;
}

.byd-atto3-content .byd-footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a8ff, #0078d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.byd-atto3-content .byd-footer-text {
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.byd-atto3-content .fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.byd-atto3-content .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .byd-atto3-content .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .byd-atto3-content .purchase-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .byd-atto3-content .hero {
        height: calc(100vh - 60px);
        min-height: 500px;
    }
    
    .byd-atto3-content .container {
        padding: 0 15px;
    }
    
    .byd-atto3-content .key-features,
    .byd-atto3-content .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 슬라이더 모바일 레이아웃 */
    .byd-atto3-content .slider-container {
        padding: 20px 60px;
    }
    
    .byd-atto3-content .slider-content {
        flex-direction: column;
        gap: 30px;
        min-height: auto;
    }
    
    .byd-atto3-content .slider-image-wrapper {
        flex: 0 0 auto;
        width: 100%;
        height: 500px;
    }
    
    .byd-atto3-content .slider-text-wrapper {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }
    
    /* 모바일: 그라데이션 제거하고 단색 배경 */
    .byd-atto3-content .exterior-gallery .slider-text-wrapper {
        background: rgba(26, 26, 26, 0.95);
        padding-left: 20px;
    }
    
    .byd-atto3-content .interior-gallery .slider-text-wrapper {
        background: rgba(248, 249, 250, 0.95);
        padding-left: 20px;
    }
    
    /* 모바일: 텍스트 말줄임표 처리 */
    .byd-atto3-content .slider-title {
        font-size: 1.8rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .byd-atto3-content .slider-desc {
        font-size: 1.1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .byd-atto3-content .slider-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .byd-atto3-content .adas-controls {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
    
    .byd-atto3-content .adas-info {
        flex: 1;
        min-width: 0; /* 텍스트 오버플로우 방지 */
    }
    
    .byd-atto3-content .adas-title {
        font-size: 1.2rem;
        white-space: nowrap; /* 텍스트 줄바꿈 방지 */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .byd-atto3-content .adas-desc {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 최대 2줄로 제한 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .byd-atto3-content .price-info {
        flex-direction: column;
    }
    
    .byd-atto3-content .price-divider {
        transform: rotate(90deg);
    }
    
    .byd-atto3-content .purchase-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .byd-atto3-content .hero-title {
        font-size: 2.5rem;
    }
    
    .byd-atto3-content .section-title {
        font-size: 2rem;
    }
    
    /* 슬라이더 초소형 모바일 */
    .byd-atto3-content .slider-container {
        padding: 20px 50px;
    }
    
    .byd-atto3-content .slider-image-wrapper {
        height: 400px;
    }
    
    .byd-atto3-content .slider-title {
        font-size: 1.4rem;
    }
    
    .byd-atto3-content .slider-desc {
        font-size: 1rem;
    }
    
    .byd-atto3-content .slider-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .byd-atto3-content .adas-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .byd-atto3-content .adas-desc {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .byd-atto3-content .adas-nav-btn {
        width: 45px;
        height: 45px;
    }
}
