/* ================================
   Observatoire spiKto® — styles
   ================================ */

/* Hero */
.obs-hero {
    text-align: center;
    padding: 4rem 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.obs-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0d1f3c;
}

.obs-hero-quete {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: #444;
    font-style: italic;
    line-height: 1.6;
}

.obs-hero-quete em {
    color: #C8267D;
    font-weight: 600;
}

/* Manifeste */
.obs-manifeste-section {
    max-width: 960px;
    margin: 3.5rem auto 2.5rem;
    padding: 0 1.5rem;
}

.obs-manifeste {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    border: 1px solid rgba(200, 38, 125, 0.2);
    box-shadow: 0 2px 16px rgba(200, 38, 125, 0.08);
    overflow: hidden;
}

.obs-manifeste-summary {
    padding: 3rem;
    cursor: pointer;
    list-style: none;
    outline: none;
}

.obs-manifeste-summary::-webkit-details-marker { display: none; }

.obs-manifeste-summary:hover .obs-manifeste-lire {
    color: #880E4F;
}

.obs-manifeste-header {
    margin-bottom: 0.8rem;
}

.obs-manifeste-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0d1f3c;
    margin-bottom: 0.2rem;
}

.obs-manifeste-byline {
    font-size: 0.82rem;
    color: #888;
}

.obs-manifeste-preview {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.obs-manifeste-lire {
    display: block;
    color: #C8267D;
    font-weight: 600;
    font-size: 0.88rem;
    margin-top: 0.6rem;
}

details[open] .obs-manifeste-lire {
    display: none;
}

.obs-manifeste-body {
    padding: 0 3rem 1.5rem;
    border-top: 1px solid rgba(200, 38, 125, 0.12);
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

.obs-manifeste-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #C8267D;
    margin: 1.8rem 0 0.8rem;
}

.obs-manifeste-body p {
    margin-bottom: 1rem;
}

.citation-a {
    border-left: 4px solid #C8267D;
    background: rgba(200, 38, 125, 0.05);
    border-radius: 0 8px 8px 0;
    padding: 1.2rem 1.5rem;
    font-style: italic;
    color: #444;
    margin: 1.5rem 0;
}

.citation-a-exemples {
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
}

.citation-a-exemples p { margin: 0.3rem 0; }

.citation-b {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    margin: 1.5rem 0;
}

.citation-b-guillemet {
    font-size: 4rem;
    color: #C8267D;
    line-height: 1;
    opacity: 0.4;
    display: block;
    margin-bottom: -1rem;
}

.citation-b-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin: 1rem 0;
}

.citation-b-exemples {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: #555;
}

.citation-b-exemples p {
    margin: 0.4rem 0;
}

.obs-manifeste-conclusion {
    margin-top: 1.5rem;
    margin-bottom: 0;
    color: #0d1f3c;
}

.obs-manifeste-signature {
    font-style: italic;
    font-weight: 400;
    color: #999;
    text-align: right;
    margin-top: 0;
    margin-bottom: -1.5rem;
}

/* Trois axes */
.obs-axes {
    display: flex;
    gap: 1.5rem;
    max-width: 960px;
    margin: 2rem auto 3rem;
    padding: 0 1.5rem;
    flex-wrap: wrap;
}

.obs-axe {
    flex: 1;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    border-top: 3px solid #C8267D;
    box-shadow: 0 2px 16px rgba(200, 38, 125, 0.1);
}

.obs-axe-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.obs-axe-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #C8267D;
    margin-bottom: 0.6rem;
}

.obs-axe p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Section titre */
.obs-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #C8267D;
    text-align: center;
    margin-bottom: 2rem;
}

/* Articles */
.obs-articles {
    max-width: 960px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    text-align: center;
}

.obs-articles-bientot {
    font-style: italic;
    color: #888;
    font-size: 1rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 14px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(200, 38, 125, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(200, 38, 125, 0.18);
}

.article-card-tag {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0089D4;
}

.article-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.article-card-excerpt {
    font-size: 0.87rem;
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.article-card-lire {
    font-size: 0.85rem;
    font-weight: 600;
    color: #C8267D;
    margin-top: 0.4rem;
}

/* Stats */
.obs-stats {
    max-width: 960px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
    text-align: center;
}

.obs-stats-intro {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.obs-stats-placeholder {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    padding: 3rem;
    border: 2px dashed rgba(200, 38, 125, 0.3);
    color: #888;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .obs-hero {
        padding: 2rem 1rem 1.5rem;
    }
    .obs-hero-title {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }
    .obs-manifeste-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    .obs-manifeste-summary {
        padding: 1.5rem;
    }
    .obs-manifeste-body {
        padding: 0 1.5rem 1.5rem;
    }
    .obs-manifeste-title {
        font-size: 1.1rem;
    }
    .obs-section-title {
        font-size: 1.3rem;
    }
    .obs-articles {
        padding: 0 1rem;
    }
    .obs-axes {
        flex-direction: column;
        padding: 0 1rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .citation-b {
        padding: 1.5rem 1rem;
    }
}
