/* ================================================
   CSS À COPIER DANS : Apparence → Personnaliser → CSS additionnel
   ================================================ */

.article-syndic-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F1F2F2;
    color: #213743;
    line-height: 1.7;
    padding: 20px;
}

.article-syndic-container * {
    box-sizing: border-box;
}

.syndic-header {
    background: linear-gradient(135deg, #0C304C 0%, #213743 100%);
    color: #F1F2F2;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(12, 48, 76, 0.3);
}

.syndic-header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FCDE1B;
}

.syndic-subtitle {
    font-size: 1.2em;
    color: #0AB2E8;
    font-weight: 300;
}

.syndic-intro-section {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 5px solid #0AB2E8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.syndic-intro-section h2 {
    color: #0C304C;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.syndic-sign-card {
    background: white;
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.syndic-sign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0AB2E8, #136E51);
}

.syndic-sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.syndic-sign-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.syndic-sign-number {
    background: linear-gradient(135deg, #0AB2E8, #00E501);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.syndic-sign-card h3 {
    color: #0C304C;
    font-size: 1.5em;
    line-height: 1.3;
    margin: 0;
}

.syndic-consequences {
    background: #F1F2F2;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.syndic-consequences h4 {
    color: #213743;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.syndic-consequences ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.syndic-consequences li {
    padding: 8px 0 8px 30px;
    position: relative;
}

.syndic-consequences li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.syndic-solution-box {
    background: linear-gradient(135deg, #136E51, #0AB2E8);
    color: white;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 20px;
    position: relative;
    padding-left: 60px;
}

.syndic-solution-box::before {
    content: '👉';
    position: absolute;
    left: 20px;
    font-size: 1.5em;
}

.syndic-solution-box strong {
    color: #FCDE1B;
}

.syndic-diagram-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.syndic-diagram-title {
    text-align: center;
    color: #0C304C;
    margin-bottom: 30px;
    font-size: 1.5em;
}

.syndic-flow-diagram {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.syndic-flow-box {
    background: linear-gradient(135deg, #869F9D, #136E51);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
    position: relative;
}

.syndic-flow-box::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2em;
    color: #0AB2E8;
}

.syndic-flow-box:last-child::after {
    content: '';
}

.syndic-infographic {
    background: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.syndic-infographic h3 {
    color: #0C304C;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.syndic-timeline {
    position: relative;
    padding: 20px 0;
}

.syndic-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0AB2E8, #136E51);
}

.syndic-timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.syndic-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.syndic-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.syndic-timeline-content {
    width: 45%;
    background: #F1F2F2;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.syndic-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #00E501;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #0AB2E8;
}

.syndic-company-section {
    background: linear-gradient(135deg, #0C304C, #136E51);
    color: white;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(12, 48, 76, 0.3);
}

.syndic-company-section h2 {
    color: #FCDE1B;
    margin-bottom: 25px;
    font-size: 2em;
}

.syndic-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.syndic-service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0AB2E8;
}

.syndic-service-item::before {
    content: '✓';
    color: #00E501;
    font-size: 1.5em;
    margin-right: 10px;
}

.syndic-conclusion {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 3px solid #0AB2E8;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.syndic-conclusion h2 {
    color: #0C304C;
    margin-bottom: 20px;
    font-size: 2em;
}

.syndic-key-message {
    background: linear-gradient(135deg, #FCDE1B, #00E501);
    color: #0C304C;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 1.2em;
    font-weight: bold;
}

.syndic-warning-banner {
    background: linear-gradient(135deg, #FCDE1B, #F1F2F2);
    border-left: 6px solid #0C304C;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.syndic-warning-banner strong {
    color: #0C304C;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .syndic-header h1 {
        font-size: 1.8em;
    }

    .syndic-sign-header {
        flex-direction: column;
        text-align: center;
    }

    .syndic-sign-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .syndic-timeline::before {
        left: 20px;
    }

    .syndic-timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .syndic-timeline-dot {
        left: 20px;
    }

    .syndic-timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .syndic-flow-diagram {
        flex-direction: column;
    }

    .syndic-flow-box::after {
        content: '↓';
        right: 50%;
        top: auto;
        bottom: -30px;
        transform: translateX(50%);
    }
}
