/* ============================================================
   DEPTH BLOCKS — Blocs de contenu en profondeur
   Utilisé dans : le-projet.html
   ============================================================ */

/* Depth section */
.depth-section {
    padding: 5rem 2rem 7rem;
    background: white;
}

.depth-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Depth intro text */
.depth-intro.no-border {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--secondary);
}

.depth-intro {
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(14, 62, 73, 0.08);
}

.depth-intro strong {
    color: var(--primary);
    font-weight: 600;
}

/* Depth blocks grid */
.depth-blocks {
    display: grid;
    gap: 3.5rem;
}

/* Individual depth block */
.depth-block {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.depth-block-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-territory);
    padding-top: 1.2rem;
    line-height: 1.5;
}

.depth-block-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.depth-block-content p {
    line-height: 1.75;
    color: var(--secondary);
}

.depth-block-content p + p {
    margin-top: 0.85rem;
}

/* Block separator */
.depth-block + .depth-block {
    padding-top: 3.5rem;
    border-top: 1px solid rgba(14, 62, 73, 0.07);
}

/* Quote block */
.depth-quote {
    margin: 4rem 0 0;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.depth-quote p {
    line-height: 1.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.depth-quote strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-data);
}
