/* Future Growth Strategy Page - About Us Design Pattern Applied */

/* Global Page Padding - 20px left and right */
.detail-page {
    padding: 0 20px;
    box-sizing: border-box;
}

/* Growth Strategy Page Border Colors - ULTIMATE SPECIFICITY */
html body.detail-page.growth-strategy .content-card {
    border: 2px solid transparent !important; /* content-card 투명 테두리 */
    background: rgba(245, 245, 245, 0.5) !important; /* content-card 옅은 회색 배경 50% 불투명도 */
}

html body.detail-page.growth-strategy .card-content {
    border: 2px solid transparent !important; /* card-content 투명 테두리 */
    padding: 0 !important; /* card-content 패딩 0 */
}

html body.detail-page.growth-strategy .card-content p {
    border: 2px solid transparent !important; /* p 태그 투명 테두리 */
    margin-bottom: 0 !important; /* p 태그 하단 마진 0 */
}

/* Enhanced Typography Variables - Same as About Us */
:root {
    --growth-strategy-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --growth-strategy-line-height-tight: 1.2;
    --growth-strategy-line-height-comfortable: 1.5;
    --growth-strategy-line-height-relaxed: 1.6;
    --growth-strategy-letter-spacing-tight: -0.02em;
    --growth-strategy-letter-spacing-normal: 0;
    --growth-strategy-letter-spacing-wide: 0.02em;
}

/* Page Header - Enhanced Typography (About Us Style) */
.page-header {
    background: var(--white);
    color: var(--text-primary);
    padding: var(--spacing-12) 0 var(--spacing-8) 0;
    text-align: left;
    border-bottom: none;
    font-family: var(--growth-strategy-font-family);
}

/* Header Box - Mobile First Design (About Us Style) */
.header-box {
    margin: 0;
    padding: var(--spacing-6);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Header Image - Mobile First with Overlay (About Us Style) */
.header-image {
    width: 100%;
    margin-top: var(--spacing-4);
    position: relative;
    display: block;
}

.header-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Header Overlay - Text over Image */
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--spacing-6);
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    border-radius: var(--radius-lg);
    color: var(--white);
}

.header-overlay h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-3);
    color: var(--white);
    line-height: var(--growth-strategy-line-height-tight);
    letter-spacing: var(--growth-strategy-letter-spacing-tight);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header-overlay p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--white);
    line-height: var(--growth-strategy-line-height-comfortable);
    font-weight: 400;
    max-width: 600px;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: var(--growth-strategy-letter-spacing-normal);
}

/* Section Styling */
.section {
    padding: var(--spacing-8) 0;
    background: var(--white);
    font-family: var(--growth-strategy-font-family);
}

.section.bg-light {
    background-color: var(--bg-secondary);
}

/* Section Background Colors - 3 Color Scheme (Red, Blue, Dark Gray) */
#resources {
    background-color: rgba(220, 38, 38, 0.08); /* Red - Light */
    padding: var(--spacing-8) 0;
}

#diversification {
    background-color: rgba(59, 130, 246, 0.1); /* Blue - Light */
    padding: var(--spacing-8) 0;
}

#esg {
    background-color: rgba(55, 65, 81, 0.1); /* Dark Gray - Light */
    padding: var(--spacing-8) 0;
}

#synergy {
    background-color: rgba(220, 38, 38, 0.08); /* Red - Light */
    padding: var(--spacing-8) 0;
}

#partnership {
    background-color: rgba(59, 130, 246, 0.1); /* Blue - Light */
    padding: var(--spacing-8) 0;
}

/* Clean Section Title - Simple and Elegant (About Us Style) */
.section-title {
    font-size: clamp(1.375rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: var(--spacing-6);
    padding: var(--spacing-3) var(--spacing-4);
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    line-height: var(--growth-strategy-line-height-comfortable);
    letter-spacing: var(--growth-strategy-letter-spacing-tight);
    box-shadow: none;
    transition: color var(--transition-normal);
}

.section-title:hover {
    color: #1e40af;
    transform: none;
    box-shadow: none;
}

.section-title::after {
    display: none;
}

/* Enhanced Container Layout for Better Readability */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* PC/랩탑 전용 본문 가로폭 85% 적용 (About Us와 동일) */
@media (min-width: 1025px) {
    .container {
        max-width: 850px; /* 1000px의 85% - About Us와 동일 */
    }
}

/* Content Card - Enhanced Card Design with Better Spacing (About Us Style) */
.content-card {
    display: flex;
    flex-direction: column;
    background: #f5f5f5; /* Light gray background - opaque */
    padding: var(--spacing-6) var(--spacing-5);
    border-radius: var(--radius-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-6);
    max-width: 100%;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
    gap: var(--spacing-4);
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Enhanced Paragraph Styling for Better Readability */
.card-content p, .card-content ul {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: var(--growth-strategy-line-height-relaxed);
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    text-align: left;
    font-weight: 400;
    letter-spacing: var(--growth-strategy-letter-spacing-normal);
    padding: 0 var(--spacing-1);
}

/* List Styling */
.strategy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strategy-list li {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: var(--growth-strategy-line-height-relaxed);
    color: var(--text-primary);
    margin-bottom: var(--spacing-4);
    padding-left: var(--spacing-6);
    position: relative;
    font-weight: 400;
    letter-spacing: var(--growth-strategy-letter-spacing-normal);
}

.strategy-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

/* Section-specific card background matching - All sections with default styling */
#diversification .content-card {
    background: rgba(245, 245, 245, 0.5) !important; /* Light gray background 50% opacity */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Light gray border like first section */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Shadow like first section */
    transition: transform var(--transition-normal), box-shadow var(--transition-normal); /* Transition like first section */
}

#diversification .content-card:hover {
    transform: translateY(-4px); /* Hover transform like first section */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Hover shadow like first section */
}

#diversification .card-content {
    border: 2px solid transparent !important; /* card-content 투명 테두리 */
    padding: 0 !important; /* card-content 패딩 0 */
}

#diversification .card-content p {
    margin-bottom: 0 !important; /* p 태그 하단 마진 0 */
}

#esg .content-card {
    background: rgba(245, 245, 245, 0.5) !important; /* Light gray background 50% opacity */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Light gray border like first section */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Shadow like first section */
    transition: transform var(--transition-normal), box-shadow var(--transition-normal); /* Transition like first section */
}

#esg .content-card:hover {
    transform: translateY(-4px); /* Hover transform like first section */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Hover shadow like first section */
}

#esg .card-content {
    border: 2px solid transparent !important; /* card-content 투명 테두리 */
    padding: 0 !important; /* card-content 패딩 0 */
}

#esg .card-content p {
    margin-bottom: 0 !important; /* p 태그 하단 마진 0 */
}

#synergy .content-card {
    background: rgba(245, 245, 245, 0.5) !important; /* Light gray background 50% opacity */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Light gray border like first section */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Shadow like first section */
    transition: transform var(--transition-normal), box-shadow var(--transition-normal); /* Transition like first section */
}

#synergy .content-card:hover {
    transform: translateY(-4px); /* Hover transform like first section */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Hover shadow like first section */
}

#synergy .card-content {
    border: 2px solid transparent !important; /* card-content 투명 테두리 */
    padding: 0 !important; /* card-content 패딩 0 */
}

#synergy .card-content p {
    margin-bottom: 0 !important; /* p 태그 하단 마진 0 */
}

#partnership .content-card {
    background: rgba(245, 245, 245, 0.5) !important; /* Light gray background 50% opacity */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Light gray border like first section */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); /* Shadow like first section */
    transition: transform var(--transition-normal), box-shadow var(--transition-normal); /* Transition like first section */
}

#partnership .content-card:hover {
    transform: translateY(-4px); /* Hover transform like first section */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* Hover shadow like first section */
}

#partnership .card-content {
    border: 2px solid transparent !important; /* card-content 투명 테두리 */
    padding: 0 !important; /* card-content 패딩 0 */
}

#partnership .card-content p {
    margin-bottom: 0 !important; /* p 태그 하단 마진 0 */
}

/* Mobile Responsive - About Us Style */
@media (max-width: 768px) {
    .page-header {
        padding: var(--spacing-6) 0 var(--spacing-4) 0;
    }
    
    /* Mobile Header Box */
    .header-box {
        padding: var(--spacing-3) var(--spacing-3);
        gap: var(--spacing-3);
    }
    
    .header-image img {
        max-height: 300px;
        border-radius: var(--radius-md);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile Header Overlay */
    .header-overlay {
        padding: var(--spacing-4);
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
    
    .header-overlay h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: var(--spacing-2);
    }
    
    .header-overlay p {
        font-size: clamp(0.875rem, 4vw, 1rem);
    }
    
    /* Mobile Container Padding */
    .container {
        padding: 0 var(--spacing-3);
    }
    
    /* Mobile Section Titles with Enhanced Padding */
    .section-title {
        font-size: clamp(1.25rem, 4.5vw, 1.5rem);
        padding: var(--spacing-3) var(--spacing-4);
        margin-bottom: var(--spacing-4);
    }
    
    /* Mobile Content Cards */
    .content-card {
        padding: var(--spacing-4) var(--spacing-3);
        margin-bottom: var(--spacing-4);
        border-radius: var(--radius-lg);
    }
    
    .card-content p, .card-content ul {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-4);
    }
    
    .strategy-list li {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-3);
        padding-left: var(--spacing-5);
    }
    
    /* Mobile Section Background Colors - Same 3 Color Scheme */
    #resources {
        background-color: rgba(220, 38, 38, 0.08); /* Red - Light */
        padding: var(--spacing-6) 0;
    }
    
    #diversification {
        background-color: rgba(59, 130, 246, 0.1); /* Blue - Light */
        padding: var(--spacing-6) 0;
    }
    
    #esg {
        background-color: rgba(55, 65, 81, 0.1); /* Dark Gray - Light */
        padding: var(--spacing-6) 0;
    }
    
    #synergy {
        background-color: rgba(220, 38, 38, 0.08); /* Red - Light */
        padding: var(--spacing-6) 0;
    }
    
    #partnership {
        background-color: rgba(59, 130, 246, 0.1); /* Blue - Light */
        padding: var(--spacing-6) 0;
    }
}

/* Desktop Responsive - About Us Style */
@media (min-width: 1025px) {
    .header-image img {
        max-height: 500px;
    }
    
    .header-overlay {
        padding: var(--spacing-8);
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.5) 100%
        );
    }
    
    .header-overlay h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: var(--spacing-4);
    }
    
    .header-overlay p {
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
        max-width: 700px;
    }
    
    /* Desktop Section Titles (About Us Style) */
    .section-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        padding: var(--spacing-4) var(--spacing-6);
        margin-bottom: var(--spacing-8);
    }
    
    /* PC/랩탑 전용 Growth Strategy 페이지 본문 설정 */
    /* 메인 컨테이너 - 테두리 제거 */
    .detail-page .container {
        border: none !important; /* 테두리 제거 */
        max-width: 850px !important; /* About Us와 동일한 너비 강제 */
        padding: 0 16px !important; /* About Us와 동일한 패딩 강제 */
    }
    
    /* 각 섹션 - 테두리 제거 */
    .detail-page .section {
        border: none !important; /* 테두리 제거 */
        margin-bottom: 20px !important;
    }
}
