/* ═══════════════════════════════════════
   BLOG INDEX — HERO
   ═══════════════════════════════════════ */
.blog-hero {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--midnight);
}
.blog-hero .section-title {
    margin-bottom: var(--space-sm);
}
.blog-hero p {
    font-size: 1rem;
    color: var(--soft-blue);
    max-width: 500px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   FILTERS
   ═══════════════════════════════════════ */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-md);
}
.blog-filter-btn {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 152, 179, 0.15);
    background: transparent;
    color: var(--soft-blue);
    transition: all 0.3s;
}
.blog-filter-btn:hover {
    border-color: var(--golden);
    color: var(--golden);
}
.blog-filter-btn.active {
    background: var(--golden);
    color: var(--midnight);
    border-color: var(--golden);
}

/* ═══════════════════════════════════════
   FEATURED ARTICLE
   ═══════════════════════════════════════ */
.blog-featured {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    margin-top: var(--space-lg);
    border: 1px solid rgba(124, 152, 179, 0.1);
    background: var(--midnight);
    transition: background 0.3s;
    overflow: visible;
}
.blog-featured:hover {
    background: rgba(27, 73, 101, 0.08);
}
.blog-featured-img {
    overflow: hidden;
}
.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.blog-featured:hover .blog-featured-img img {
    transform: scale(1.02);
}
.blog-featured-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.blog-featured-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.75rem;
}
.blog-featured-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.blog-featured-excerpt {
    font-size: 0.88rem;
    color: var(--soft-blue);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}
.blog-featured-meta {
    font-size: 0.72rem;
    color: var(--soft-blue);
    opacity: 0.7;
    margin-bottom: 1.25rem;
}
.blog-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.5rem;
    display: block;
}
.blog-meta {
    font-size: 0.72rem;
    color: var(--soft-blue);
    opacity: 0.7;
    margin-bottom: 0.75rem;
}
.blog-card-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--golden);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s;
}
.blog-card-link:hover {
    gap: 0.7rem;
}
.blog-card-link svg {
    width: 14px;
    height: 14px;
}

/* ═══════════════════════════════════════
   ARTICLES GRID
   ═══════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: var(--space-lg);
    border-left: 1px solid rgba(124, 152, 179, 0.1);
    border-top: 1px solid rgba(124, 152, 179, 0.1);
}
.blog-card {
    position: relative;
    background: var(--midnight);
    border-right: 1px solid rgba(124, 152, 179, 0.1);
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
    transition: background 0.3s, opacity 0.4s, transform 0.4s;
    overflow: visible;
}
.blog-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}
.blog-card:nth-child(even) {
    background: rgba(27, 73, 101, 0.08);
}
.blog-card:hover {
    background: rgba(27, 73, 101, 0.12);
}
.blog-card-img {
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.03);
}
.blog-card-content {
    padding: 1.5rem 1.75rem 2rem;
    position: relative;
    z-index: 2;
}
.blog-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.5rem;
}
.blog-card-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}
.blog-card-meta {
    font-size: 0.72rem;
    color: var(--soft-blue);
    opacity: 0.7;
    margin-bottom: 0.75rem;
}
.blog-card-excerpt {
    font-size: 0.82rem;
    color: var(--soft-blue);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   BLOG CTA
   ═══════════════════════════════════════ */
.blog-cta {
    text-align: center;
    padding: var(--space-xl) 0;
}
.blog-cta .section-title {
    margin: 0 auto var(--space-md);
}
.blog-cta .btn-sub {
    font-size: 0.82rem;
    color: var(--soft-blue);
    margin-top: 0.75rem;
}

/* ═══════════════════════════════════════
   ARTICLE PAGE — HERO
   ═══════════════════════════════════════ */
.article-hero {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--midnight);
}
/* Breadcrumb */
.article-breadcrumb {
    position: static;
}
.article-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin-bottom: var(--space-md);
}
.article-breadcrumb li {
    font-size: 0.72rem;
    color: var(--soft-blue);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.article-breadcrumb li:not(:last-child)::after {
    content: '›';
    color: rgba(124, 152, 179, 0.4);
}
.article-breadcrumb a {
    color: var(--soft-blue);
    transition: color 0.3s;
    text-decoration: none;
}
.article-breadcrumb a:hover {
    color: var(--golden);
}
.article-breadcrumb li:last-child {
    color: var(--off-white);
    opacity: 0.7;
}

.article-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: var(--space-sm);
}
.article-hero h1 {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 700px;
    margin-bottom: var(--space-sm);
}
.article-meta {
    font-size: 0.82rem;
    color: var(--soft-blue);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
/* Author inline (under meta) */
.article-author-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-sm);
}
.article-author-inline img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(249, 220, 92, 0.2);
}
.article-author-inline-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--off-white);
}
.article-author-inline-role {
    font-size: 0.68rem;
    color: var(--soft-blue);
}

.article-author-inline-linkedin {
    display: inline-flex;
    margin-top: 0.3rem;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(124, 152, 179, 0.2);
    transition: border-color 0.3s, background 0.3s;
}
.article-author-inline-linkedin:hover {
    border-color: rgba(249, 220, 92, 0.4);
    background: rgba(249, 220, 92, 0.08);
}
.article-author-inline-linkedin svg {
    width: 14px;
    height: 14px;
    fill: var(--soft-blue);
    transition: fill 0.3s;
}
.article-author-inline-linkedin:hover svg {
    fill: var(--golden);
}

.article-cover {
    margin-top: var(--space-lg);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(124, 152, 179, 0.1);
}
.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* ═══════════════════════════════════════
   ARTICLE LAYOUT (sidebar + content)
   ═══════════════════════════════════════ */
.article-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    align-items: start;
}

/* Sidebar: TOC + Share */
.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}
.article-toc {
    margin-bottom: var(--space-lg);
}
.article-toc-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.75rem;
}
.article-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.article-toc-list a {
    font-size: 0.78rem;
    color: var(--soft-blue);
    line-height: 1.5;
    display: block;
    padding: 0.25rem 0;
    padding-left: 0.75rem;
    border-left: 2px solid rgba(124, 152, 179, 0.1);
    transition: color 0.3s, border-color 0.3s;
}
.article-toc-list a:hover,
.article-toc-list a.active {
    color: var(--golden);
    border-color: var(--golden);
}

/* Share module */
.article-share-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.75rem;
}
.article-share-links {
    display: flex;
    gap: 0.5rem;
}
.article-share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(124, 152, 179, 0.2);
    background: transparent;
    transition: border-color 0.3s, background 0.3s;
}
.article-share-btn:hover {
    border-color: rgba(249, 220, 92, 0.4);
    background: rgba(249, 220, 92, 0.08);
}
.article-share-btn svg {
    width: 18px;
    height: 18px;
    color: var(--soft-blue);
    fill: var(--soft-blue);
    stroke: var(--soft-blue);
    transition: color 0.3s, fill 0.3s, stroke 0.3s;
}
.article-share-btn:hover svg {
    color: var(--golden);
    fill: var(--golden);
    stroke: var(--golden);
}
/* Lucide icons use stroke only, no fill */
.article-share-btn svg[class*="lucide"] {
    fill: none;
}
.article-share-btn:hover svg[class*="lucide"] {
    fill: none;
}

/* Article body */
.article-body {
    max-width: 720px;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.article-body pre {
    background: #0a1628;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: var(--space-sm) 0;
    max-width: 100%;
}
.article-body code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.82rem;
    color: var(--light-blue);
}
.article-body p code {
    background: rgba(124, 152, 179, 0.12);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
}
.article-body h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    scroll-margin-top: 100px;
}
.article-body h2:first-child {
    margin-top: 0;
}
.article-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
    scroll-margin-top: 100px;
}
.article-body p {
    font-size: 0.95rem;
    color: var(--light-blue);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.article-body strong {
    color: var(--off-white);
    font-weight: 600;
}
.article-body ul, .article-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.article-body li {
    font-size: 0.95rem;
    color: var(--light-blue);
    line-height: 1.85;
    margin-bottom: 0.5rem;
}
.article-body li::marker {
    color: var(--golden);
}
/* --- Blockquote / Citation --- */
.article-body blockquote {
    position: relative;
    border-left: none;
    padding: 2rem 2rem 1.5rem;
    margin: var(--space-lg) 0;
    background: rgba(27, 73, 101, 0.08);
    border: 1px solid rgba(124, 152, 179, 0.1);
    border-radius: 0;
}
.article-body blockquote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--golden);
    line-height: 0.5;
    display: block;
    margin-bottom: 1rem;
}
.article-body blockquote p {
    color: var(--off-white);
    font-style: italic;
    margin-bottom: 0.5rem;
}
.article-body blockquote cite {
    font-size: 0.78rem;
    color: var(--soft-blue);
    font-style: normal;
    display: block;
    margin-top: 0.5rem;
}

/* --- Podcast player --- */
.article-podcast {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    margin: var(--space-md) 0 0;
    background: rgba(17, 34, 64, 0.6);
    border: 1px solid rgba(124, 152, 179, 0.1);
    border-radius: 12px;
}
.podcast-play {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--golden);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.podcast-play:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(249, 220, 92, 0.25);
}
.podcast-play svg {
    width: 18px;
    height: 18px;
    fill: var(--midnight);
    margin-left: 2px;
}
.podcast-play.playing svg {
    margin-left: 0;
}
.podcast-info {
    flex: 1;
    min-width: 0;
}
.podcast-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--golden);
    margin-bottom: 0.25rem;
}
.podcast-title {
    font-size: 0.82rem;
    color: var(--soft-blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.podcast-progress {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.podcast-bar {
    width: 120px;
    height: 4px;
    background: rgba(124, 152, 179, 0.15);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}
.podcast-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--golden);
    border-radius: 2px;
    transition: width 0.1s linear;
}
.podcast-time {
    font-size: 0.7rem;
    color: var(--soft-blue);
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    text-align: right;
}
@media (max-width: 600px) {
    .article-podcast { flex-wrap: wrap; gap: 0.75rem; }
    .podcast-progress { width: 100%; }
    .podcast-bar { flex: 1; }
}

/* --- Callout (insight/tip without self-citation) --- */
.article-callout {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 3.5rem;
    margin: var(--space-md) 0;
    background: rgba(249, 220, 92, 0.06);
    border-left: 3px solid var(--golden);
}
.article-callout::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.6rem;
    width: 18px;
    height: 18px;
    background: var(--golden);
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 3 2 5.5 4 7.5.6.6 1 1.5 1 2.5h4c0-1 .4-1.9 1-2.5 2-2 4-4.5 4-7.5a7 7 0 0 0-7-7z'/%3E%3Cpath d='M10 21h4'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 3 2 5.5 4 7.5.6.6 1 1.5 1 2.5h4c0-1 .4-1.9 1-2.5 2-2 4-4.5 4-7.5a7 7 0 0 0-7-7z'/%3E%3Cpath d='M10 21h4'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
}
.article-callout p {
    color: var(--off-white);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Images --- */
.article-body img {
    width: 100%;
    border-radius: 8px;
    margin: var(--space-md) 0;
    border: 1px solid rgba(124, 152, 179, 0.1);
}

/* Image centrée avec légende */
.article-img-center {
    text-align: center;
    margin: var(--space-lg) 0;
}
.article-img-center img {
    max-width: 100%;
    margin: 0 auto;
}
.article-img-center figcaption {
    font-size: 0.75rem;
    color: var(--soft-blue);
    margin-top: 0.5rem;
}

/* Image à gauche avec texte à droite */
.article-img-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: start;
    margin: var(--space-lg) 0;
}
.article-img-left img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(124, 152, 179, 0.1);
    margin: 0;
}

/* Image à droite avec texte à gauche */
.article-img-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-items: start;
    margin: var(--space-lg) 0;
}
.article-img-right img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(124, 152, 179, 0.1);
    margin: 0;
    order: 2;
}
.article-img-right > div {
    order: 1;
}

/* --- Tableau --- */
.article-body .table-wrapper {
    overflow-x: auto;
    margin: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
}
.article-body table {
    width: 100%;
    min-width: 500px;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.article-body thead {
    background: rgba(27, 73, 101, 0.15);
}
.article-body th {
    text-align: left;
    font-weight: 700;
    color: var(--golden);
    padding: 0.75rem 1rem;
    border-bottom: 2px solid rgba(249, 220, 92, 0.2);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.article-body td {
    padding: 0.75rem 1rem;
    color: var(--light-blue);
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
}
.article-body tbody tr:hover {
    background: rgba(27, 73, 101, 0.08);
}

/* --- Code block --- */
.article-code-block {
    position: relative;
    margin: var(--space-md) 0;
    border-radius: 8px;
    overflow: hidden;
}
.article-code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(17, 34, 64, 0.9);
    border-bottom: 1px solid rgba(124, 152, 179, 0.12);
}
.article-code-lang {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--soft-blue);
}
.article-code-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: 1px solid rgba(124, 152, 179, 0.2);
    border-radius: 6px;
    padding: 0.3rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--soft-blue);
    transition: color 0.3s, border-color 0.3s;
}
.article-code-copy:hover {
    color: var(--golden);
    border-color: var(--golden);
}
.article-code-copy.copied {
    color: #43e97b;
    border-color: #43e97b;
}
.article-code-copy svg {
    width: 14px;
    height: 14px;
}
.article-code-block pre {
    margin: 0;
    padding: 1.25rem;
    background: #0a1628;
    overflow-x: auto;
}
.article-code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--light-blue);
    white-space: pre;
}

/* --- Bandeau CTA inline --- */
.article-cta-inline {
    position: relative;
    background: rgba(27, 73, 101, 0.12);
    border: 1px solid rgba(124, 152, 179, 0.1);
    border-radius: 0;
    padding: 2rem;
    margin: var(--space-lg) 0;
    text-align: center;
    overflow: visible;
}
.article-cta-inline h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.article-cta-inline p {
    font-size: 0.85rem;
    color: var(--soft-blue) !important;
    margin-bottom: 1.25rem;
}
.article-cta-inline .btn-primary {
    font-size: 0.85rem;
    padding: 0.75rem 1.5rem;
    color: var(--midnight) !important;
}

/* --- FAQ article (SEO) --- */
.article-faq {
    margin: var(--space-xl) 0 var(--space-md);
}
.article-faq-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}
.article-faq-item {
    border-bottom: 1px solid rgba(124, 152, 179, 0.1);
}
.article-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    background: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--off-white);
    text-align: left;
    transition: color 0.3s;
    font-family: var(--font-body);
}
.article-faq-question:hover {
    color: var(--golden);
}
.article-faq-question svg {
    width: 18px;
    height: 18px;
    stroke: var(--soft-blue);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.article-faq-item.open .article-faq-question svg {
    transform: rotate(45deg);
}
.article-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-faq-answer-inner {
    padding-bottom: 1rem;
    font-size: 0.88rem;
    color: var(--light-blue);
    line-height: 1.7;
}

/* --- Links --- */
.article-body a {
    color: var(--golden);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}
.article-body a.btn-primary {
    text-decoration: none;
}

/* --- Responsive composants --- */
@media (max-width: 768px) {
    .article-img-left,
    .article-img-right {
        grid-template-columns: 1fr;
    }
    .article-img-right img { order: 0; }
    .article-img-right > div { order: 0; }
}

/* ═══════════════════════════════════════
   AUTHOR CARD
   ═══════════════════════════════════════ */
.article-author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: var(--space-xl);
    padding: 2rem;
    background: rgba(27, 73, 101, 0.08);
    border: 1px solid rgba(124, 152, 179, 0.1);
    overflow: visible;
}
.article-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(249, 220, 92, 0.2);
    flex-shrink: 0;
}
.article-author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.article-author-info p {
    font-size: 0.82rem;
    color: var(--soft-blue);
    line-height: 1.5;
    margin-bottom: 0;
}
.article-author-linkedin {
    margin-left: auto;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(124, 152, 179, 0.2);
    transition: border-color 0.3s, background 0.3s;
}
.article-author-linkedin:hover {
    border-color: rgba(249, 220, 92, 0.4);
    background: rgba(249, 220, 92, 0.08);
}
.article-author-linkedin svg {
    width: 16px;
    height: 16px;
    fill: var(--soft-blue);
    transition: fill 0.3s;
}
.article-author-linkedin:hover svg {
    fill: var(--golden);
}

/* ═══════════════════════════════════════
   RELATED ARTICLES
   ═══════════════════════════════════════ */
.article-related {
    margin-top: var(--space-xl);
}
.article-related .section-title {
    margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-img img { height: 300px; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar {
        position: relative;
        top: auto;
        display: flex;
        gap: var(--space-lg);
        padding-bottom: var(--space-md);
        border-bottom: 1px solid rgba(124, 152, 179, 0.1);
        margin-bottom: var(--space-md);
    }
    .article-toc { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .article-sidebar { flex-direction: column; gap: var(--space-md); }
    .article-author { flex-direction: column; text-align: center; }
    .article-author-linkedin { margin-left: 0; }
}
