/* --- Groupe Page Styles --- */

/* Hero Specifics */
/* Hero Specifics - Now using .hero-section class match homepage */
/*
.groupe-hero {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0;
    text-align: center;
    position: relative;
}

.groupe-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.groupe-hero-content {
    position: relative;
    z-index: 1;
}

.groupe-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.groupe-hero .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}
*/

/* Intro Section */
.intro-section {
    padding: 80px 0;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

/* Expertise Pillars (3 Cols) */
.pillars-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pillar-icon img {
    height: 100%;
    width: auto;
}

.pillar-card h3 {
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.pillar-card p {
    text-align: left;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* History Timeline (Vertical or Alternate) */
.history-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--color-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--color-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 5px;
}

/* Team Section */
/* Team Section */
.team-section {
    background-color: #f9f9f9;
    /* Changed to match Expertise section */
    color: var(--color-text);
    padding: 80px 0;
    text-align: left;
    /* Reset to left alignment for cards */
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: transparent;
    padding: 0;
}

.team-visual {
    position: relative;
    margin-bottom: 20px;
}

.team-visual img {
    width: 100%;
    height: 370px;
    /* Force consistent height */
    object-fit: cover;
    /* Crop to fill without distortion */
    display: block;
    object-position: top center;
    /* Focus on faces */
}

.team-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-info {
    padding-right: 10px;
}

.team-name {
    font-family: 'Oswald', sans-serif;
    /* Assuming Oswald or similar condensed font is used, falls back to sans */
    font-size: 1.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 1.1;
    font-weight: 700;
}

.team-role {
    font-weight: 700;
    color: #444;
    margin-bottom: 15px;
    font-size: 1rem;
}

.team-details {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.team-details strong {
    color: #333;
    display: block;
    margin-bottom: 3px;
}

.team-quote {
    color: var(--color-primary);
    font-style: italic;
    /* Start with italic, adjust if regular */
    /* Based on screenshot, looks like regular weight but colored */
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.team-meta {
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Timeline */
@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .left::after,
    .right::after {
        left: 21px;
    }

    .right {
        left: 0%;
    }
}

/* --- Press Section --- */
/* --- Press Section --- */
.press-section {
    padding: 80px 0;
    background-color: white !important;
    /* Force white background */
}

.press-featured {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.press-featured h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.press-featured p {
    margin: 5px 0 0 0;
    padding-right: 20px;
}

/* Responsive adjustments for featured card */
@media (max-width: 768px) {
    .press-featured {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for 4 items */
    gap: 30px;
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.press-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.press-card h3 {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
}

.press-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.press-link:hover {
    gap: 15px;
}