/* ========================================
   RESET ET BASE
======================================== */
* {
    box-sizing: border-box;
}

.expert-page-container {
    width: 100%;
    overflow-x: hidden;
}

.highlight {
    color: var(--secondary-color);
}

/* ========================================
   HERO SECTION - DESKTOP
======================================== */
.expert-hero-section {
    background-color: var(--navbar-bg);
    padding: 25vh 0 80px;
    min-height: 400px;
    position: relative;
    z-index: 6;
    overflow: visible;
}

.expert-hero-content {
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

.expert-info-wrapper {
    display: flex;
    align-items: flex-start;
    height: 100%;
    gap: 40px;
    position: relative;
}

.expert-info-section {
    color: var(--secondary-color);
    flex: 1;
    max-width: 800px;
    margin-left: 420px;
    position: relative;
    z-index: 5;
}

.expert-subtitle {
    color: white;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: var(--font-nunito);
}

.expert-info-section h1 {
    font-size: 38px;
    margin: 0;
    line-height: 48px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-nunito);
}

.expert-role {
    display: inline;
    font-family: var(--annotation-font-family);
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
}

.expert-photo-desktop {
    flex-shrink: 0;
    width: 380px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.expert-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0 20px 0 0;
    margin-bottom: 0;
    display: block;
}

/* HERO SECTION - RESPONSIVE */
@media (max-width: 1024px) {
    .expert-info-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .expert-photo-desktop {
        width: 280px;
        margin: 0 auto;
        position: relative;
        left: auto;
    }
    
    .expert-photo {
        height: 350px;
        margin-bottom: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .expert-info-section {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .expert-hero-section {
        padding: 15vh 20px 40px;
        min-height: 200px;
    }
    
    .expert-photo-desktop {
        display: none;
    }
    
    .expert-info-section h1 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .expert-role {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 480px) {
    .expert-hero-section {
        padding: 12vh 15px 30px;
    }
    
    .expert-info-section h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .expert-role {
        font-size: 28px;
        line-height: 36px;
    }
    
    .expert-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .expert-info-section h1 {
        font-size: 24px;
    }
    
    .expert-role {
        font-size: 24px;
    }
}

/* ========================================
   PHOTO MOBILE SECTION - DESKTOP
======================================== */
.expert-mobile-photo-section {
    display: none;
    background-color: var(--navbar-bg);
    padding: 0 40px 40px;
}

.expert-mobile-photo {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.expert-photo-mobile {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

/* PHOTO MOBILE SECTION - RESPONSIVE */
@media (max-width: 768px) {
    .expert-mobile-photo-section {
        display: block;
    }
    
    .expert-mobile-photo {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .expert-photo-mobile {
        width: 200px;
        height: 250px;
    }
}

@media (max-width: 360px) {
    .expert-photo-mobile {
        width: 180px;
        height: 220px;
    }
}

/* ========================================
   CONTENT SECTION (PHILOSOPHIE + TAGS) - DESKTOP
======================================== */
.expert-content-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 2;
    margin-top: -120px;
    padding-top: 150px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
}

.expert-content-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.expert-philosophy-wrapper {
    flex-shrink: 0;
    width: 380px;
}

.expert-tags-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-start;
    margin-left: 430px;
    margin-top: 30px;
}

.expert-tags { 
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.tag {
    background-color: var(--navbar-bg);
    color: var(--navbar-text);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
}

.expert-philosophy-card {
    background-color: var(--navbar-bg);
    padding: 25px;
    border-radius: 0 0 20px 0;
    color: var(--navbar-text);
    width: 100%;
    margin-top: 0;
    position: relative;
    z-index: 15;
}

.expert-philosophy-card h3 {
    color: var(--secondary-color);
    font-family: var(--handwritten-font);
    font-size: 26px;
    margin-bottom: 18px;
    margin-top: 0;
}

.expert-philosophy-card blockquote {
    font-style: italic;
    margin: 0 0 18px 0;
    font-size: 18px;
    line-height: 26px;
    quotes: """ """ "'" "'";
}

.expert-philosophy-card blockquote::before {
    content: open-quote;
}

.expert-philosophy-card blockquote::after {
    content: close-quote;
}

.linkedin-link {
    color: var(--secondary-color);
    font-size: 1.5em;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.linkedin-link:hover {
    transform: scale(1.1);
}

/* CONTENT SECTION - RESPONSIVE */
@media (max-width: 1024px) {
    .expert-content-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .expert-philosophy-wrapper {
        width: 100%;
        max-width: 450px;
    }
    
    .expert-tags-wrapper {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
        justify-content: center;
    }
    
    .expert-philosophy-card {
        border-radius: 20px;
    }
    
    .expert-tags {
        justify-content: center;
    }
    
    .expert-content-section {
        margin-top: 0;
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    .expert-content-section {
        padding: 40px 20px;
        margin-top: 0;
    }
    
    .expert-philosophy-wrapper {
        max-width: 100%;
    }
    
    .expert-philosophy-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .expert-content-section {
        padding: 30px 15px;
    }
    
    .expert-philosophy-card {
        padding: 20px;
    }
    
    .expert-philosophy-card h3 {
        font-size: 24px;
    }
    
    .expert-philosophy-card blockquote {
        font-size: 16px;
        line-height: 24px;
    }
    
    .tag {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* ========================================
   EXPERT CONTENT (SECTIONS PRINCIPALES) - DESKTOP
======================================== */
.expert-content {
    background-color: var(--light-bg);
    padding: 40px 40px;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.expert-text {
    margin-left: 430px;
    padding-right: 40px;
}

.expert-content h2 {
    font-size: 28px;
    font-family: var(--font-nunito);
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
}

.expert-content strong {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-dark);
    font-weight: 800;
    margin-bottom: 0;
}

.expert-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-dark);
    margin-bottom: 0;
}

.btn-orange {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    border-radius: 25px;
    font-family: var(--font-nunito);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    color: var(--dark-bg);
    transition: all 0.3s ease;
    box-sizing: border-box;
    z-index: 1;
    height: 40px;
}

.btn-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    box-sizing: border-box;
}

.btn-orange:hover::before {
    opacity: 1;
}

.btn-orange:hover {
    background: transparent;
    color: transparent;
    background-image: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* EXPERT CONTENT - RESPONSIVE */
@media (max-width: 1200px) {
    .expert-text {
        margin-left: 350px;
    }
}

@media (max-width: 1024px) {
    .expert-text {
        margin-left: 0;
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .expert-content {
        padding: 60px 20px;
    }
    
    .expert-content h2 {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .expert-content {
        padding: 40px 15px;
    }
    
    .expert-content h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .expert-content p {
        font-size: 15px;
        line-height: 1.5;
    }
}

/* ========================================
   CTA SECTION - DESKTOP
======================================== */
.cta-section {
    text-align: center;
    margin-top: 80px;
}

.cta-box {
    background-color: #FFE9D2;
    border: 2px solid #F7931E;
    border-radius: 25px 25px 0 0;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-height: 400px;
    max-width: 750px;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.cta-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-content h3 {
    font-family: var(--font-nunito);
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
    color: var(--text-color-dark);
    margin-top: 0;
}

/* CTA SECTION - RESPONSIVE */
@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 22px;
        line-height: 28px;
    }
}

@media (max-width: 480px) {
    .cta-icon {
        font-size: 28px;
    }
    
    .cta-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .btn-orange {
        font-size: 15px;
        padding: 8px 28px;
    }
}

@media (max-width: 360px) {
    .cta-box {
        padding: 20px 15px;
    }
}
/* ========================================
   RESET ET BASE
======================================== */
* {
    box-sizing: border-box;
}

.expert-page-container {
    width: 100%;
    overflow-x: hidden;
}

.highlight {
    color: var(--secondary-color);
}

/* ========================================
   HERO SECTION - DESKTOP
======================================== */
.expert-hero-section {
    background-color: var(--navbar-bg);
    padding: 25vh 0 80px;
    position: relative;
    overflow: visible;
    z-index: 6;
}

.expert-hero-content {
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

.expert-info-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
}

.expert-photo-desktop {
    flex-shrink: 0;
    width: 380px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.expert-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
    display: block;
    margin-bottom: 0;
}

.expert-philosophy-card {
    background-color: var(--navbar-bg);
    padding: 25px;
    border-radius: 0 0 20px 0;
    color: var(--navbar-text);
    width: 100%;
    position: relative;
    z-index: 15;
    margin-top: 0;
}

.expert-philosophy-card h3 {
    color: var(--secondary-color);
    font-family: var(--annotation-font-family);
    font-size: 26px;
    margin-bottom: 18px;
    margin-top: 0;
}

.expert-philosophy-card blockquote {
    font-style: italic;
    margin: 0 0 18px 0;
    font-size: 18px;
    line-height: 26px;
    quotes: """ """ "'" "'";
}

.expert-philosophy-card blockquote::before {
    content: open-quote;
}

.expert-philosophy-card blockquote::after {
    content: close-quote;
}

.linkedin-link {
    color: var(--secondary-color);
    font-size: 1.5em;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.linkedin-link:hover {
    transform: scale(1.1);
}

.expert-info-section {
    color: var(--secondary-color);
    flex: 1;
    margin-left: 430px;
    position: relative;
    z-index: 5;
}

.expert-subtitle {
    color: white;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-family: var(--font-nunito);
}

.expert-info-section h1 {
    font-size: 38px;
    margin: 0;
    line-height: 48px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: var(--font-nunito);
}

.expert-role {
    display: inline;
    font-family: var(--annotation-font-family);
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
}

/* ========================================
   PHOTO MOBILE SECTION
======================================== */
.expert-mobile-photo-section {
    display: none;
}

/* ========================================
   CONTENT SECTION (TAGS)
======================================== */
.expert-content-section {
    background-color: var(--light-bg);
    position: relative;
    z-index: 2;
    margin-top: -120px;
    padding-top: 150px;
    padding-bottom: 60px;
    padding-left: 40px;
    padding-right: 40px;
}

.expert-content-container {
    max-width: 1800px;
    margin: 0 auto;
}

.expert-tags-wrapper {
    margin-left: 430px;
    margin-top: 30px;
}

.expert-tags { 
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
}

.tag {
    background-color: var(--navbar-bg);
    color: var(--navbar-text);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.tag:hover {
    transform: translateY(-2px);
}

/* ========================================
   EXPERT CONTENT (SECTIONS PRINCIPALES)
======================================== */
.expert-content {
    background-color: var(--light-bg);
    padding: 40px 40px;
}

.expert-text {
    margin-left: 430px;
    padding-right: 40px;
    max-width: 1200px;
}

.content-section {
    margin-bottom: 60px;
}

.expert-content h2 {
    font-size: 28px;
    font-family: var(--font-nunito);
    font-weight: 700;
    line-height: 36px;
    margin-bottom: 20px;
}

.expert-content strong {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-dark);
    font-weight: 800;
}

.expert-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color-dark);
    margin-bottom: 0;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    text-align: center;
    margin-top: 80px;
}

.cta-box {
    background-color: #FFE9D2;
    border: 2px solid #F7931E;
    border-radius: 25px 25px 0 0;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-height: 400px;
    max-width: 750px;
    margin: 0 auto;
    transition: transform 0.2s ease;
}

.cta-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cta-content h3 {
    font-family: var(--font-nunito);
    font-size: 26px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
    color: var(--text-color-dark);
    margin-top: 0;
}

.btn-orange {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 32px;
    border-radius: 25px;
    font-family: var(--font-nunito);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    color: var(--dark-bg);
    transition: all 0.3s ease;
    box-sizing: border-box;
    z-index: 1;
    height: 40px;
}

.btn-orange::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    box-sizing: border-box;
}

.btn-orange:hover::before {
    opacity: 1;
}

.btn-orange:hover {
    background: transparent;
    color: transparent;
    background-image: linear-gradient(135deg, #b03306 0%, #F7931E 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
/* ========================================
   RESPONSIVE - 1200px
======================================== */
@media (max-width: 1200px) {
    .expert-text {
        margin-left: 350px;
    }
    
    .expert-tags-wrapper {
        margin-left: 350px;
    }
}

/* ========================================
   RESPONSIVE - 992px
======================================== */
@media (max-width: 992px) {
    .expert-info-section {
        margin-left: 350px;
    }
}

/* ========================================
   RESPONSIVE - 768px (TABLET/MOBILE)
======================================== */
@media (max-width: 768px) {
    /* Hero Section */
    .expert-hero-section {
        padding: 15vh 0 40px 0;
        overflow: visible;
    }
    
    .expert-hero-content {
        padding: 0 20px;
    }
    
    /* Cache la photo desktop dans le hero */
    .expert-photo-desktop {
        display: none;
    }
    
    .expert-philosophy-wrapper {
        display: none;
    }
    
    /* Titre centré */
    .expert-info-section {
        margin-left: 0;
        text-align: center;
    }
    
    .expert-info-section h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .expert-role {
        font-size: 28px;
        line-height: 36px;
    }
    
    .expert-subtitle {
        font-size: 16px;
    }
    
    /* NOUVELLE SECTION - Photo collée au bord gauche */
    .expert-mobile-photo-section {
        display: block;
        background-color: var(--light-bg);
        padding: 0;
        position: relative;
        z-index: 8;
        margin-top: -40px;
        padding-top: 40px;
        padding-bottom: 80px;
    }
    
    .expert-mobile-photo {
        max-width: 280px;
        margin: 0;
        position: relative;
        padding-left: 0;
    }
    
    .expert-photo-mobile {
        width: 100%;
        height: 350px;
        object-fit: cover;
        border-radius: 0 20px 0 0;
        display: block;
    }
    
    .expert-philosophy-card-mobile {
        background-color: var(--navbar-bg);
        padding: 20px;
        border-radius: 0 0 20px 0;
        color: var(--navbar-text);
        position: relative;
    }
    
    .expert-philosophy-card-mobile h3 {
        color: var(--secondary-color);
        font-family: var(--annotation-font-family);
        font-size: 22px;
        margin-bottom: 15px;
        margin-top: 0;
    }
    
    .expert-philosophy-card-mobile blockquote {
        font-style: italic;
        margin: 0 0 15px 0;
        font-size: 16px;
        line-height: 24px;
        quotes: """ """ "'" "'";
        color: var(--navbar-text);
    }
    
    .expert-philosophy-card-mobile blockquote::before {
        content: open-quote;
    }
    
    .expert-philosophy-card-mobile blockquote::after {
        content: close-quote;
    }
    
    .expert-philosophy-card-mobile .linkedin-link {
        color: var(--secondary-color);
        font-size: 1.3em;
        text-decoration: none;
        transition: transform 0.2s ease;
        display: inline-block;
    }
    
    .expert-philosophy-card-mobile .linkedin-link:hover {
        transform: scale(1.1);
    }
    
    /* Section Tags */
    .expert-content-section {
        margin-top: 0;
        padding-top: 40px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .expert-tags-wrapper {
        margin-left: 0;
        margin-top: 0;
    }
    
    .expert-tags {
        justify-content: center;
    }
    
    .tag {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    /* Expert Content */
    .expert-content {
        padding: 40px 20px;
    }
    
    .expert-text {
        margin-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .expert-content h2 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .expert-content p {
        font-size: 15px;
    }
    
    /* CTA */
    .cta-box {
        flex-direction: column;
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .cta-content h3 {
        font-size: 22px;
        line-height: 28px;
    }
}

/* ========================================
   RESPONSIVE - 480px
======================================== */
@media (max-width: 480px) {
    .expert-hero-section {
        padding: 12vh 0 50px 0;
    }
    
    .expert-hero-content {
        padding: 0 15px;
    }
    
    .expert-info-section h1 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .expert-role {
        font-size: 24px;
        line-height: 32px;
    }
    
    .expert-subtitle {
        font-size: 15px;
    }
    
    /* Photo et Card plus petites */
    .expert-mobile-photo-section {
        padding-top: 30px;
        padding-bottom: 60px;
        margin-top: -30px;
    }
    
    .expert-mobile-photo {
        max-width: 240px;
    }
    
    .expert-photo-mobile {
        height: 300px;
    }
    
    .expert-philosophy-card-mobile {
        padding: 18px;
    }
    
    .expert-philosophy-card-mobile h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .expert-philosophy-card-mobile blockquote {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 12px;
    }
    
    .expert-philosophy-card-mobile .linkedin-link {
        font-size: 1.2em;
    }
    
    /* Section Tags */
    .expert-content-section {
        padding-top: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .tag {
        font-size: 13px;
        padding: 7px 14px;
    }
    
    /* Expert Content */
    .expert-content {
        padding: 30px 15px;
    }
    
    .expert-content h2 {
        font-size: 22px;
        line-height: 30px;
    }
    
    .expert-content p {
        font-size: 14px;
    }
    
    /* CTA */
    .cta-icon {
        width: 40px;
        height: 40px;
    }
    
    .cta-content h3 {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 15px;
    }
    
    .btn-orange {
        font-size: 15px;
        padding: 8px 28px;
    }
}

/* ========================================
   RESPONSIVE - 360px
======================================== */
@media (max-width: 360px) {
    .expert-hero-section {
        padding: 10vh 0 25px 0;
    }
    
    .expert-hero-content {
        padding: 0 10px;
    }
    
    .expert-info-section h1 {
        font-size: 22px;
        line-height: 28px;
    }
    
    .expert-role {
        font-size: 22px;
        line-height: 28px;
    }
    
    .expert-subtitle {
        font-size: 14px;
    }
    
    /* Photo et Card minimales */
    .expert-mobile-photo-section {
        padding-top: 25px;
        padding-bottom: 50px;
        margin-top: -25px;
    }
    
    .expert-mobile-photo {
        max-width: 200px;
    }
    
    .expert-photo-mobile {
        height: 250px;
    }
    
    .expert-philosophy-card-mobile {
        padding: 15px;
    }
    
    .expert-philosophy-card-mobile h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .expert-philosophy-card-mobile blockquote {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    
    .expert-philosophy-card-mobile .linkedin-link {
        font-size: 1.1em;
    }
    
    /* Section Tags */
    .expert-content-section {
        padding-top: 30px;
    }
    
    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Expert Content */
    .expert-content h2 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .expert-content p {
        font-size: 13px;
    }
    
    /* CTA */
    .cta-box {
        padding: 20px 15px;
    }
    
    .cta-content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}