/* ============================================
   PLACEMENT OVERVIEW SECTION STYLES (UPDATED)
   File: /css/sections/placement/placement-overview-section.css
   Purpose: Complete Tab 1 styles including team, quote, intro sections
   Last Updated: [CURRENT_DATE]
============================================ */

/* ===== SECTION BASE STYLES ===== */
.section-alternate {
    padding: var(--spacing-xl) 0;
}

.section-white {
    background: var(--nsb-white);
}

.section-grey {
    background: var(--nsb-light);
}

.section-blue-tint {
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.03) 0%, rgba(252, 163, 17, 0.03) 100%);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: var(--spacing-xl) 0;
    background: var(--nsb-white);
    text-align: center;
}

.quote-text {
    font-size: 1.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--nsb-primary);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.quote-author {
    font-size: 1.125rem;
    color: var(--nsb-accent);
    font-weight: var(--font-weight-medium);
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: var(--spacing-lg) 0;
    background: var(--nsb-white);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.125rem;
    color: var(--nsb-text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== TEAM SECTION (UPDATED FOR 5 MEMBERS) ===== */
.team-section {
    padding: var(--spacing-xl) 0;
}

.team-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.team-title {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--nsb-primary);
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--nsb-accent);
    border-radius: 2px;
}

.team-description {
    font-size: 1.125rem;
    color: var(--nsb-text-secondary);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Team Cards Grid */
.team-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

/* Centered single card for odd number (5th member) */
.team-card-single {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 600px;
}

/* Individual Team Card */
.team-card {
    background: var(--nsb-white);
    border: 2px solid var(--nsb-accent);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(252, 163, 17, 0.15);
}

.team-card-content {
    display: flex;
    min-height: 250px;
}

/* Left side - Text content (60%) */
.team-info {
    flex: 0 0 60%;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--nsb-primary);
    margin-bottom: var(--spacing-xs);
}

.team-designation {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--nsb-accent);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(252, 163, 17, 0.3);
}

.team-brief {
    font-size: 0.95rem;
    color: var(--nsb-text-secondary);
    line-height: 1.5;
}

/* Right side - Image (40%) */
.team-image-container {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(20, 33, 61, 0.05) 0%, rgba(252, 163, 17, 0.05) 100%);
}

.team-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.team-image {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: cover;
    border: 2px solid var(--nsb-primary);
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 10px rgba(20, 33, 61, 0.2);
}

/* Fallback for missing images */
.team-image-fallback {
    width: 180px;
    height: 200px;
    background: var(--nsb-light);
    border: 2px solid var(--nsb-primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsb-primary);
    font-size: 3.5rem;
}

/* ===== INDUSTRY INTERFACE SECTION ===== */
.industry-interface-section {
    padding: var(--spacing-xl) 0;
}

.interface-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.interface-title {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--nsb-primary);
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.interface-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--nsb-accent);
    border-radius: 2px;
}

.interface-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.interface-description {
    font-size: 1.125rem;
    color: var(--nsb-text-secondary);
    line-height: 1.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .team-cards-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .team-card-single {
        max-width: 100%;
    }
    
    .team-card-content {
        min-height: 220px;
    }
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
        padding: 0 var(--spacing-sm);
    }
    
    .team-title,
    .interface-title {
        font-size: 1.875rem;
    }
    
    .team-description,
    .interface-description {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .team-card-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .team-info {
        flex: 0 0 100%;
        padding: var(--spacing-md);
        order: 2;
    }
    
    .team-image-container {
        flex: 0 0 auto;
        height: 250px;
        order: 1;
    }
    
    .team-image {
        max-height: 200px;
        width: auto;
        max-width: 100%;
    }
    
    .team-image-fallback {
        width: 150px;
        height: 180px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .quote-text {
        font-size: 1.25rem;
    }
    
    .team-title,
    .interface-title {
        font-size: 1.5rem;
    }
    
    .team-image-container {
        height: 200px;
    }
    
    .team-image {
        max-height: 160px;
    }
    
    .team-image-fallback {
        width: 120px;
        height: 150px;
        font-size: 2.5rem;
    }
}

/* ===== END OF PLACEMENT OVERVIEW SECTION STYLES ===== */