/* ── Detail page styles ── */

/* Hero image banner */
.actu-detail-hero {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #0d2f5e 0%, #1a6ba0 60%, #2596c4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
}
.actu-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.actu-detail-hero-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.35);
}
.actu-detail-hero-placeholder svg {
    width: 64px;
    height: 64px;
}

/* Meta row: category + date + share */
.actu-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}
.actu-detail-cat {
    display: inline-block;
    background: #e8f0fb;
    color: #1a4e8a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.actu-detail-date {
    font-size: 13px;
    color: #8fa3b5;
    display: flex;
    align-items: center;
    gap: 5px;
}
.actu-detail-date i { color: #1a4e8a; }

/* Share buttons */
.actu-share {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-items: center;
}
.actu-share span {
    font-size: 12px;
    color: #8fa3b5;
    font-weight: 600;
}
.actu-share a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #dce8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a4e8a;
    font-size: 14px;
    transition: background .2s, color .2s, border-color .2s;
    text-decoration: none;
}
.actu-share a:hover {
    background: #1a4e8a;
    color: #fff;
    border-color: #1a4e8a;
}

/* Article title */
.actu-detail-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a2d4e;
    line-height: 1.35;
    margin-bottom: 20px;
}

/* Divider */
.actu-detail-divider {
    height: 3px;
    width: 56px;
    background: #1a4e8a;
    border-radius: 2px;
    margin-bottom: 24px;
}

/* Body text */
.actu-detail-body {
    font-size: 15px;
    color: #3a4a5c;
    line-height: 1.85;
}
.actu-detail-body p { margin-bottom: 18px; }
.actu-detail-body h2 {
    font-size: 19px;
    font-weight: 700;
    color: #1a2d4e;
    margin: 32px 0 12px;
}
.actu-detail-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a4e8a;
    margin: 24px 0 10px;
}
.actu-detail-body ul {
    padding-left: 20px;
    margin-bottom: 18px;
}
.actu-detail-body ul li {
    margin-bottom: 8px;
    position: relative;
}
.actu-detail-body blockquote {
    border-left: 4px solid #1a4e8a;
    background: #f0f5fb;
    margin: 24px 0;
    padding: 16px 20px;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #3a5a7c;
}

/* Back button */
.actu-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a4e8a;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 28px;
    transition: gap .2s;
}
.actu-back-btn:hover { gap: 12px; color: #1a4e8a; text-decoration: none; }
.actu-back-btn i { font-size: 16px; }

/* Related articles sidebar */
.actu-related-title {
    font-size: 15px;
    font-weight: 700;
    color: #1a2d4e;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dce8f3;
}
.actu-related-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
    text-decoration: none;
    transition: opacity .2s;
}
.actu-related-item:hover { opacity: .75; text-decoration: none; }
.actu-related-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: linear-gradient(135deg, #1a4e8a, #2596c4);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.actu-related-thumb svg { width: 24px; height: 24px; color: rgba(255,255,255,.5); }
.actu-related-info {}
.actu-related-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #1a4e8a;
}
.actu-related-info h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1a2d4e;
    margin: 3px 0 4px;
    line-height: 1.4;
}
.actu-related-info span {
    font-size: 11px;
    color: #8fa3b5;
}

/* Tags */
.actu-tags {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #dce8f3;
}
.actu-tags-label {
    font-size: 13px;
    font-weight: 700;
    color: #1a2d4e;
    margin-bottom: 10px;
}
.actu-tag {
    display: inline-block;
    border: 1.5px solid #dce8f3;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    color: #1a4e8a;
    margin: 4px 4px 4px 0;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.actu-tag:hover {
    background: #1a4e8a;
    color: #fff;
    border-color: #1a4e8a;
    text-decoration: none;
}

/* Nav prev/next */
.actu-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #dce8f3;
    flex-wrap: wrap;
}
.actu-nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 18px;
    border: 1.5px solid #dce8f3;
    border-radius: 8px;
    color: #1a2d4e;
    font-size: 13px;
    font-weight: 600;
    transition: border-color .2s, background .2s;
    max-width: 48%;
}
.actu-nav-btn:hover {
    border-color: #1a4e8a;
    background: #f0f5fb;
    text-decoration: none;
    color: #1a2d4e;
}
.actu-nav-btn span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #8fa3b5;
    margin-bottom: 3px;
}
.actu-nav-btn.next { margin-left: auto; text-align: right; flex-direction: row-reverse; }
