.article-page { padding: 2rem 1rem; margin-top: 100px; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: #6c757d; text-decoration: none; margin-bottom: 1.5rem;
}
.back-link:hover { color: #185FA5; }
.back-link svg { transition: transform .15s; }
.back-link:hover svg { transform: translateX(-3px); }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.art-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; display: block; }
.art-meta { display: flex; align-items: center; gap: 10px; margin: 1.25rem 0 0.75rem; flex-wrap: wrap; }
.art-cat { background: #E6F1FB; color: #0C447C; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 20px; }
.art-date { font-size: 12px; color: #6c757d; display: inline-flex; align-items: center; gap: 4px; }
.art-title { font-size: 1.4rem; font-weight: 600; color: #1a1a2e; line-height: 1.35; margin-bottom: 1rem; }

.art-author { display: flex; align-items: center; gap: 10px; padding: 0.75rem 0; border-top: 0.5px solid rgba(0,0,0,0.08); border-bottom: 0.5px solid rgba(0,0,0,0.08); margin-bottom: 1.25rem; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; background: #B5D4F4; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: #0C447C; flex-shrink: 0; }
.author-name { font-size: 13px; font-weight: 500; color: #1a1a2e; margin: 0; }
.author-role { font-size: 12px; color: #6c757d; margin: 0; }
.art-body { font-size: 14px; color: #444; line-height: 1.8; }
.art-body p { margin-bottom: 1rem; }

.sidebar-block { background: #fff; border: 0.5px solid rgba(0,0,0,0.1); border-radius: 12px; padding: 1.25rem; margin-bottom: 1.5rem; }
.sidebar-title { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #6c757d; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 0.5px solid rgba(0,0,0,0.08); }

.recent-item { display: flex; gap: 12px; padding: 0.75rem 0; border-bottom: 0.5px solid rgba(0,0,0,0.06); align-items: flex-start; text-decoration: none; }
.recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-thumb { width: 60px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.recent-cat { font-size: 10px; font-weight: 500; color: #185FA5; text-transform: uppercase; margin-bottom: 3px; }
.recent-title { font-size: 13px; font-weight: 500; color: #1a1a2e; line-height: 1.35; margin-bottom: 4px; }
.recent-item:hover .recent-title { color: #185FA5; }
.recent-date { font-size: 11px; color: #6c757d; }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #f8f9fa; color: #6c757d; font-size: 12px; padding: 4px 10px; border-radius: 20px; border: 0.5px solid rgba(0,0,0,0.1); text-decoration: none; }
.tag:hover { border-color: #185FA5; color: #185FA5; }
.art-divider {
    border: none;
    border-top: 0.5px solid rgba(0,0,0,0.08);
    margin: 1.5rem 0;
}

.art-secondary-img {
    border-radius: 10px;
    overflow: hidden;
    border: 0.5px solid rgba(0,0,0,0.08);
}

.art-secondary-img img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}


/* Ajustements pour le nouvel ordre */
.article-main .art-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.article-main .art-meta {
    margin-top: 0;
    margin-bottom: 1rem;
}

.article-main .art-img {
    margin-bottom: 1.25rem;
}

.article-main .art-author {
    margin-bottom: 1.5rem;
}

/* Réseaux sociaux */
.art-social {
    margin: 1.5rem 0;
    padding: 1rem 0;
    text-align: center;
}

.social-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
}

.soc-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    text-decoration: none;
}

.soc-btn i {
    font-size: 14px;
}
