/* STYLE-DIET-PHASE5-SINGLE-ARTICLE — extrait de style.css (phase 5 route single post)
   IMPROVED SINGLE ARTICLE DESIGN
   ============================================ */

/* Breadcrumb Navigation — page article */
.single-article-page > .article-breadcrumb.article-breadcrumb--single {
    max-width: 1600px;
    margin: 0 auto 0.85rem;
    padding: 0 1.5rem;
    background: transparent !important;
    border: 0;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none;
    font-size: 0.8rem;
    line-height: 1.55;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list__item {
    display: inline;
    min-width: 0;
    color: #64748b;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list__item:not(:last-child)::after {
    content: "/";
    margin: 0 0.42rem;
    color: #cbd5e1;
    font-weight: 400;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list__item a {
    display: inline;
    color: var(--bg-blue, #1e73be);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.16s ease;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list__item a:hover,
.single-article-page > .article-breadcrumb--single .breadcrumb-list__item a:focus-visible {
    color: color-mix(in srgb, var(--bg-blue, #1e73be) 78%, #000);
    text-decoration: underline;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list__item.is-current {
    color: var(--text-dark, #111827);
    font-weight: 700;
}

.single-article-page > .article-breadcrumb--single .breadcrumb-list__current {
    display: inline;
    font-weight: 700;
    word-break: break-word;
}

body.theme-dark.single-post .single-article-page > .article-breadcrumb.article-breadcrumb--single {
    background: transparent !important;
    border: 0;
}

body.theme-dark.single-post .single-article-page > .article-breadcrumb--single .breadcrumb-list {
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.theme-dark.single-post .single-article-page > .article-breadcrumb--single .breadcrumb-list__item {
    color: rgba(226, 232, 240, 0.72);
}

body.theme-dark.single-post .single-article-page > .article-breadcrumb--single .breadcrumb-list__item.is-current,
body.theme-dark.single-post .single-article-page > .article-breadcrumb--single .breadcrumb-list__current {
    color: #f8fafc;
}

body.theme-dark.single-post .single-article-page > .article-breadcrumb--single .breadcrumb-list__item:not(:last-child)::after {
    color: rgba(148, 163, 184, 0.55);
}

.article-breadcrumb:not(.article-breadcrumb--single) {
    background: var(--text-light);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb-item {
    color: #6b7280;
    transition: color 0.2s ease;
}

.breadcrumb-item:hover {
    color: var(--bg-blue);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumb-separator {
    color: #d1d5db;
    margin: 0 0.25rem;
}

/* Moneytizer — bannière sous header sur articles seuls */
body.single-post .play4geek-moneytizer-slot-header_below.ad-slot-under-header,
body.single-post .ad-slot-under-header.play4geek-moneytizer-slot {
    margin: 0 auto;
    padding: 0.4rem 0;
    max-width: min(728px, calc(100% - 2rem));
    text-align: center;
    clear: both;
}

body.single-post .play4geek-moneytizer-slot-header_below .play4geek-moneytizer-inner,
body.single-post .ad-slot-under-header .play4geek-moneytizer-inner {
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

body.single-post .play4geek-moneytizer-slot-header_below .play4geek-moneytizer-mount,
body.single-post .ad-slot-under-header .play4geek-moneytizer-mount,
body.single-post .play4geek-moneytizer-slot-header_below .play4geek-moneytizer-inner iframe,
body.single-post .ad-slot-under-header .play4geek-moneytizer-inner iframe {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

body.single-post .play4geek-moneytizer-slot-header_below.ad-slot-under-header + .site-main.single-article-page {
    padding-top: 0;
}

/* Layout article (colonne + sidebar) — même ratio que .news-grid accueil */
.single-article-page .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
    align-items: start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.single-article {
    background: var(--text-light);
    border-radius: 30px;
    box-shadow: 0 32px 100px rgba(15, 23, 42, 0.08);
    overflow: visible;
    min-width: 0;
}

.article-sidebar {
    display: grid;
    gap: 1.25rem;
    align-items: start;
    min-width: 0;
}

.single-article-page .article-sidebar {
    position: sticky;
    top: calc(var(--p4g-sticky-site-header-height, 8.5rem) + 0.75rem);
    align-self: start;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.single-article-page .article-sidebar .p4g-sidebar-widget {
    min-width: 0;
}

.single-article-page .article-sidebar .p4g-sidebar-widget + .p4g-sidebar-widget {
    margin-top: 0;
}

/* Featured Image with Caption */
.single-article-cover {
    margin-bottom: 0;
}

.featured-image-figure {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.featured-image-figure img,
.single-article-cover img {
    width: 100%;
    max-height: 380px;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.article-cover-platforms {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 4;
    max-width: min(72%, calc(100% - 8rem));
    pointer-events: none;
}

.article-cover-platforms .game-sheet-platform-icons {
    margin: 0;
    justify-content: flex-start;
}

.article-cover-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    max-width: min(48%, calc(100% - 8rem));
    pointer-events: auto;
}

.single-article-page .post-category,
.single-article-page .post-category .post-category-label,
.single-article-page .post-category a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.42em 0.9em;
    min-height: 1.85rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.single-article-category-badge {
    margin-bottom: 0.65rem;
}

.single-article-header .single-article-category-badge {
    background: var(--badge-bg, #eef5ff);
    color: var(--badge-text, var(--bg-accent, #145982));
    border-color: color-mix(in srgb, var(--badge-text, var(--bg-accent, #145982)) 62%, transparent);
}

.single-article-category-badge--cover,
.article-cover-category .post-category.single-article-category-badge--cover {
    background: var(--bg-blue, #1e73be) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.38) !important;
    box-shadow: 0 8px 24px rgba(8, 20, 38, 0.28);
    backdrop-filter: blur(6px);
}

.single-article-category-badge--cover .post-category-label,
.single-article-category-badge--cover a,
.article-cover-category .post-category .post-category-label,
.article-cover-category .post-category a {
    color: #ffffff !important;
}

.single-article-category-badge--cover a:hover,
.article-cover-category .post-category a:hover {
    color: #ffffff !important;
    text-decoration: none;
    opacity: 0.92;
}

.article-cover-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem 1.8rem 1.2rem;
    background: linear-gradient(180deg, rgba(4, 10, 21, 0) 0%, rgba(4, 10, 21, 0.9) 80%);
}

.article-cover-overlay .single-article-title {
    margin: 0;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.image-caption {
    margin-top: 0.75rem;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    text-align: center;
}

/* Enhanced Article Header */
.single-article-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid #e5e7eb;
}

/* Game Tags with Icons */
.single-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.article-game-label {
    display: inline-block;
    color: var(--bg-blue);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.article-game-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(30, 115, 190, 0.08);
    color: var(--bg-blue);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.article-game-link:hover {
    background: color-mix(in srgb, var(--bg-blue) 15%, transparent);
    transform: translateY(-1px);
}

.game-icon {
    font-size: 1rem;
}

/* Title */
.single-article-title {
    margin: 0 0 1.25rem;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.1;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Excerpt */
.single-article-excerpt {
    margin: 1rem 0 1.5rem;
    font-size: 1.05rem;
    color: var(--muted-text);
    line-height: 1.9;
}

/* New Author & Meta Bar */
.article-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    padding: 1.5rem;
    background: var(--surface-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.author-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    align-self: flex-start;
    border-radius: 50%;
    background: var(--surface-card);
    overflow: hidden;
    border: 3px solid var(--bg-blue);
}

.author-avatar img,
.author-avatar img.avatar {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-name a {
    color: var(--bg-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.author-name a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.article-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--muted-text);
}

.stat-item {
    display: flex;
    align-items: center;
}

.stat-item i {
    margin-right: 0.35rem;
    opacity: 0.8;
}

.stat-separator {
    color: var(--border-color);
}

/* Share Buttons Horizontal */
.share-buttons-horizontal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.share-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--surface-card);
    color: var(--text-dark);
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

a.share-icon {
    text-decoration: none;
    color: inherit;
}

button.share-icon {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    padding: 0;
    margin: 0;
}

.share-icon:hover {
    border-color: var(--bg-blue);
    color: var(--bg-blue);
    transform: translateY(-2px);
}

.share-icon svg {
    width: 20px;
    height: 20px;
}

.share-icon.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-icon.twitter:hover {
    background: #000000;
    color: white;
}

.share-icon.linkedin:hover {
    background: #0a66c2;
    color: white;
}

.share-icon.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-icon.copy-link:hover {
    background: var(--bg-blue);
    color: white;
}

/* Enhanced Article Content */
.single-article-content {
    padding: 2.5rem;
    line-height: 2;
    color: #374151;
    font-size: 1.05rem;
}

.single-article-content p {
    margin-bottom: 1.5rem;
}

.single-article-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.single-article-content h3 {
    margin: 1.5rem 0 0.85rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.single-article-content ul,
.single-article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.single-article-content li {
    margin-bottom: 0.75rem;
}

.single-article-content blockquote:not(.twitter-tweet),
.single-review-content blockquote:not(.twitter-tweet) {
    margin: 2rem 0;
    padding: 1.5rem 1.5rem 1.5rem 0.5rem;
    border-left: 4px solid var(--bg-blue);
    background: rgba(30, 115, 190, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4b5563;
}

.single-article-content blockquote:not(.twitter-tweet) p,
.single-review-content blockquote:not(.twitter-tweet) p {
    margin: 0;
}

/* Liens vers fiches jeux (shortcodes [p4g_game] / [p4g_jeu]) */
.single-article-content a.p4g-game-link {
    font-weight: 600;
    color: var(--bg-blue);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: from-font;
}

.single-article-content a.p4g-game-link:hover {
    color: #0f172a;
}

body.theme-dark .single-article-content a.p4g-game-link {
    color: #7dd3fc;
}

body.theme-dark .single-article-content a.p4g-game-link:hover {
    color: #fff;
}

/* Bloc Gutenberg carte fiche jeu */
.single-article-content .wp-block-play4geek-game-sheet-card,
.single-review-content .wp-block-play4geek-game-sheet-card,
.single-article-content .wp-block-embed.is-provider-play4geek,
.single-review-content .wp-block-embed.is-provider-play4geek {
    clear: both;
    display: block;
    margin: 2rem 0;
    max-width: 100%;
    width: 100%;
}

.single-article-content .wp-block-embed.is-provider-play4geek .wp-block-embed__wrapper,
.single-review-content .wp-block-embed.is-provider-play4geek .wp-block-embed__wrapper {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.single-article-content .wp-block-embed.is-provider-play4geek .wp-block-embed__wrapper::before,
.single-review-content .wp-block-embed.is-provider-play4geek .wp-block-embed__wrapper::before {
    content: none;
    display: none;
}

/* Carte fiche jeu intégrée → assets/css/play4geek-article-game-embed-card.css */

.single-article-content code {
    background: var(--bg-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #d32f2f;
}

.single-article-content pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}

.single-article-content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
}

.article-internal-links {
    margin: 0 2.5rem 2rem;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    background: #f3f8ff;
    border: 1px solid rgba(20, 89, 130, 0.14);
}

.article-internal-links h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}

.article-internal-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.article-internal-link {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 89, 130, 0.18);
    background: #fff;
    color: #134577;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.article-internal-link:hover,
.article-internal-link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(30, 115, 190, 0.45);
    box-shadow: 0 8px 18px rgba(20, 89, 130, 0.18);
    outline: none;
}

.article-internal-link.is-game {
    background: rgba(30, 115, 190, 0.09);
}

.article-internal-link.is-tag {
    font-weight: 500;
}

.single-article-content .wp-block-embed,
.single-article-content .wp-block-video,
.single-review-content .wp-block-embed,
.single-review-content .wp-block-video {
    clear: both;
    width: 100%;
    max-width: var(--wp--style--global--content-size, 920px);
    margin: 1.4rem auto;
    padding: 0;
}

.single-article-content .wp-block-embed.alignwide,
.single-article-content .wp-block-video.alignwide,
.single-review-content .wp-block-embed.alignwide,
.single-review-content .wp-block-video.alignwide {
    max-width: var(--wp--style--global--wide-size, 1280px);
}

.single-article-content .wp-block-embed figcaption,
.single-review-content .wp-block-embed figcaption {
    line-height: 1.5;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Embeds sociaux (X / Twitter, etc.) : largeur intrinsèque, centrage possible. */
.single-article-content .wp-block-embed.aligncenter:not(.is-provider-play4geek),
.single-review-content .wp-block-embed.aligncenter:not(.is-provider-play4geek),
.single-article-content .wp-block-embed.is-type-rich.aligncenter:not(.is-provider-play4geek),
.single-review-content .wp-block-embed.is-type-rich.aligncenter:not(.is-provider-play4geek) {
    display: table;
    width: auto;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

.single-article-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek),
.single-review-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek),
.single-article-content .wp-block-embed.is-provider-twitter,
.single-review-content .wp-block-embed.is-provider-twitter,
.single-article-content .wp-block-embed.is-provider-x,
.single-review-content .wp-block-embed.is-provider-x {
    width: auto;
    max-width: min(100%, 550px);
    margin-left: auto;
    margin-right: auto;
}

.single-article-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek) .wp-block-embed__wrapper,
.single-review-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek) .wp-block-embed__wrapper,
.single-article-content .wp-block-embed.is-provider-twitter .wp-block-embed__wrapper,
.single-review-content .wp-block-embed.is-provider-twitter .wp-block-embed__wrapper,
.single-article-content .wp-block-embed.is-provider-x .wp-block-embed__wrapper,
.single-review-content .wp-block-embed.is-provider-x .wp-block-embed__wrapper {
    position: static;
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.single-article-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek) .wp-block-embed__wrapper iframe,
.single-review-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek) .wp-block-embed__wrapper iframe,
.single-article-content .wp-block-embed.is-provider-twitter .wp-block-embed__wrapper iframe,
.single-review-content .wp-block-embed.is-provider-twitter .wp-block-embed__wrapper iframe,
.single-article-content .wp-block-embed.is-provider-x .wp-block-embed__wrapper iframe,
.single-review-content .wp-block-embed.is-provider-x .wp-block-embed__wrapper iframe,
.single-article-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek) blockquote.twitter-tweet,
.single-review-content .wp-block-embed.is-type-rich:not(.is-provider-play4geek) blockquote.twitter-tweet,
.single-article-content .wp-block-embed.is-provider-twitter blockquote.twitter-tweet,
.single-review-content .wp-block-embed.is-provider-twitter blockquote.twitter-tweet,
.single-article-content .wp-block-embed.is-provider-x blockquote.twitter-tweet,
.single-review-content .wp-block-embed.is-provider-x blockquote.twitter-tweet,
.single-article-content .wp-block-embed-twitter blockquote.twitter-tweet,
.single-review-content .wp-block-embed-twitter blockquote.twitter-tweet,
.single-article-content .wp-block-embed-x blockquote.twitter-tweet,
.single-review-content .wp-block-embed-x blockquote.twitter-tweet {
    position: static;
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-style: normal;
    color: inherit;
}

/* Tweet X / Twitter collé ou rendu sans bloc Gutenberg. */
.single-article-content blockquote.twitter-tweet,
.single-review-content blockquote.twitter-tweet {
    display: block;
    width: auto;
    max-width: min(100%, 550px);
    margin: 1.4rem auto !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-style: normal;
    color: inherit;
}

.single-article-content .wp-block-embed-twitter,
.single-review-content .wp-block-embed-twitter,
.single-article-content .wp-block-embed-x,
.single-review-content .wp-block-embed-x {
    width: auto;
    max-width: min(100%, 550px);
    margin-left: auto;
    margin-right: auto;
}

/* YouTube / vidéo : pleine largeur de la colonne article, ratio 16:9 */
.single-article-content .wp-block-embed.is-type-video .wp-block-embed__wrapper,
.single-review-content .wp-block-embed.is-type-video .wp-block-embed__wrapper,
.single-article-content .wp-has-aspect-ratio.is-type-video .wp-block-embed__wrapper,
.single-review-content .wp-has-aspect-ratio.is-type-video .wp-block-embed__wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.single-article-content .wp-block-embed.is-type-video .wp-block-embed__wrapper::before,
.single-review-content .wp-block-embed.is-type-video .wp-block-embed__wrapper::before,
.single-article-content .wp-has-aspect-ratio.is-type-video .wp-block-embed__wrapper::before,
.single-review-content .wp-has-aspect-ratio.is-type-video .wp-block-embed__wrapper::before {
    display: none !important;
    content: none !important;
    padding: 0 !important;
    height: 0 !important;
}

.single-article-content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.single-article-content .wp-block-embed.is-type-video .wp-block-embed__wrapper .p4g-youtube-embed,
.single-article-content iframe.p4g-youtube-embed,
.single-review-content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.single-review-content .wp-block-embed.is-type-video .wp-block-embed__wrapper .p4g-youtube-embed,
.single-review-content iframe.p4g-youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 12px;
}

/* Iframe seule dans le figure (sans wrapper) â€” repli */
.single-article-content .wp-block-embed > iframe[src*="youtube"],
.single-review-content .wp-block-embed > iframe[src*="youtube"] {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border: 0;
    border-radius: 12px;
}

.single-article-content .wp-block-video video,
.single-review-content .wp-block-video video,
.single-article-content .wp-video video,
.single-review-content .wp-video video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
}

/* Related Articles Section */
.related-articles {
    padding: 2rem 2.5rem 2.5rem;
    border-top: 1px solid var(--border-color, #e5e7eb);
    margin-top: 2rem;
    background: var(--bg-light);
}

.related-articles-header {
    margin-bottom: 1.5rem;
}

.related-articles-header h2 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.related-articles-subtitle {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.related-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-card, #fff);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.related-card:hover {
    border-color: rgba(20, 89, 130, 0.22);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.related-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.related-image-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.related-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.related-card:hover .related-image-link img {
    transform: scale(1.04);
}

.related-card-category,
.related-card-image .post-category {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 1;
}

.related-card-body {
    padding: 1rem 1.1rem 1.05rem;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.related-card-body h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 700;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.related-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-card-body h3 a:hover {
    color: var(--bg-blue);
}

.related-card-excerpt {
    margin: 0 0 0.85rem;
    color: #6b7280;
    font-size: 0.88rem;
    line-height: 1.55;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.related-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color, #e5e7eb);
}

.related-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    min-width: 0;
}

.related-card-date {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
    white-space: nowrap;
}

.related-card-footer .post-views {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
    white-space: nowrap;
}

.related-card-footer .post-views i {
    color: currentColor;
    opacity: 0.9;
    font-size: 0.85em;
}

.related-card-read {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: rgba(20, 89, 130, 0.1);
    color: var(--bg-blue);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.related-card-read:hover {
    background: var(--bg-blue);
    color: #fff;
    transform: translateX(2px);
}

.related-card-read i {
    font-size: 0.82rem;
}

/* Associated game hero banner under article content */
.article-game-hero {
    margin: 1.5rem auto 0;
    width: min(940px, 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(20, 89, 130, 0.2);
    background: linear-gradient(155deg, #0c1829 0%, #132a4a 48%, #0f2238 100%);
    color: #f2f7ff;
    position: relative;
    box-shadow: 0 18px 48px rgba(8, 20, 38, 0.22);
}

.article-game-hero-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    pointer-events: none;
}

.article-game-hero-top > * {
    pointer-events: auto;
}

.article-game-hero-platforms {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.article-game-hero-platforms .game-sheet-platform-icons {
    margin: 0;
    justify-content: flex-end;
}

.article-game-hero-score {
    position: static;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.article-game-hero-score.is-high { background: #1faa5c; }
.article-game-hero-score.is-mid { background: #f5a623; }
.article-game-hero-score.is-low { background: #dd4b39; }

.article-game-hero.has-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--article-game-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.62;
}

.article-game-hero.has-bg-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(6, 14, 27, 0.45), rgba(11, 27, 50, 0.64));
}

.article-game-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(108px, 140px) minmax(0, 1fr);
    gap: 1.15rem 1.35rem;
    padding: 3.65rem 1.35rem 1.35rem;
    align-items: start;
}

.article-game-hero:not(:has(.article-game-hero-media)) .article-game-hero-inner {
    grid-template-columns: 1fr;
    padding-top: 3.35rem;
}

.article-game-hero-media {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 32px rgba(3, 10, 20, 0.38);
    background: rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-game-hero-media:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(3, 10, 20, 0.45);
}

.article-game-hero-media img {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 210px;
    object-fit: cover;
    display: block;
    vertical-align: middle;
}

.article-game-hero-body {
    min-width: 0;
}

.article-game-hero-kicker {
    display: inline-flex;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-blue) 35%, transparent);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(242, 247, 255, 0.95);
}

.article-game-hero-body h2 {
    margin: 0.65rem 0 0.5rem;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    line-height: 1.25;
    color: #fff;
}

.article-game-hero-body h2 a {
    color: inherit;
    text-decoration: none;
}

.article-game-hero-body h2 a:hover {
    color: #b8dcff;
}

.article-game-hero-lead {
    margin: 0 0 0.85rem;
    color: rgba(236, 243, 255, 0.82);
    line-height: 1.6;
    font-size: 0.92rem;
}

.article-game-hero-meta {
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.18);
}

.article-game-hero-meta-row {
    display: grid;
    grid-template-columns: minmax(7.5rem, 34%) 1fr;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-game-hero-meta-row:last-child {
    border-bottom: 0;
}

.article-game-hero-meta dt {
    margin: 0;
    font-weight: 600;
    color: rgba(229, 239, 255, 0.72);
}

.article-game-hero-meta dd {
    margin: 0;
    color: #f2f7ff;
    text-align: right;
    line-height: 1.45;
}

.article-game-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    padding: 0.4rem 1rem;
    background: #ff8f5c;
    color: #2a1a22;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
}

.article-game-hero-btn:hover {
    background: #ffa776;
    color: #2a1a22;
}

/* Dedicated author card above article rating */
.article-author-box {
    margin: 1.25rem auto 0;
    width: min(940px, 100%);
    border: 1px solid rgba(20, 89, 130, 0.14);
    border-radius: 14px;
    padding: 1rem;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 0.9rem;
    align-items: center;
    background: #fff;
}

.article-author-avatar {
    width: 96px;
    height: 96px;
    min-width: 96px;
    min-height: 96px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid color-mix(in srgb, var(--bg-blue) 28%, transparent);
    background: #f3f8ff;
}

.article-author-avatar img,
.article-author-avatar img.avatar {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 0;
}

.article-author-kicker {
    margin: 0 0 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    color: rgba(14, 32, 56, 0.65);
}

.article-author-content h3 {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}

.article-author-content p {
    margin: 0 0 0.45rem;
    color: rgba(14, 32, 56, 0.74);
}

.article-author-content a {
    font-weight: 700;
}

/* Article Navigation */
.article-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.nav-previous,
.nav-next {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: var(--bg-blue);
    color: white;
}

.nav-previous a,
.nav-next a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

.nav-arrow {
    display: block;
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.nav-previous:hover .nav-arrow,
.nav-next:hover .nav-arrow {
    color: white;
}

/* Taboola (extension officielle) — conteneurs sans rognage (feed + vignettes) */
.play4geek-taboola-zone {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 1.75rem 0 0;
    padding: 0;
    clear: both;
    overflow: visible;
    box-sizing: border-box;
}

.play4geek-taboola-zone--below {
    margin: 0;
    padding: 1.35rem 2.5rem 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.single-article-comments {
    margin-top: 0;
}

.play4geek-taboola-zone--mid,
.play4geek-taboola-zone--carousel {
    margin: 2rem 0;
    padding: 0.35rem 0;
    max-width: 100%;
}

.play4geek-taboola-zone [id^="taboola-"],
.single-article-content [id^="taboola-mid-article"],
.single-review-content [id^="taboola-mid-article"] {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow: visible !important;
}

.play4geek-taboola-zone .trc_rbox,
.play4geek-taboola-zone .trc_rbox_container,
.play4geek-taboola-zone .trc_rbox_div,
.play4geek-taboola-zone .trc_rbox_outer,
.play4geek-taboola-zone .trc_rbox_border_elm,
.play4geek-taboola-zone .tbl-feed-container,
.play4geek-taboola-zone .tbl-feed-frame,
.play4geek-taboola-zone .tbl-trecs-feed,
.single-article-content .play4geek-taboola-zone--mid .trc_rbox,
.single-review-content .play4geek-taboola-zone--mid .trc_rbox {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

.play4geek-taboola-zone--below .trc_elastic_thumbnails-a,
.play4geek-taboola-zone--below .trc_elastic_thumbnails-b,
.play4geek-taboola-zone--below .trc_elastic_thumbnails-rr,
.play4geek-taboola-zone--below .trc_related_container,
.play4geek-taboola-zone--below .trc_clearer {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* Feed Taboola (cartes empilées) — pleine largeur, pas de hauteur fixe */
.play4geek-taboola-zone--below .tbl-feed-card,
.play4geek-taboola-zone--below .tbl-feed-card .videoCube {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.play4geek-taboola-zone--below .tbl-feed-card img,
.play4geek-taboola-zone--below .tbl-feed-card .item-thumbnail-href,
.play4geek-taboola-zone--below .tbl-feed-card .thumbBlock {
    max-width: 100% !important;
}

.play4geek-taboola-zone--below .tbl-feed-card .video-title,
.play4geek-taboola-zone--below .tbl-feed-card .branding,
.play4geek-taboola-zone--below .tbl-feed-card .logoDiv {
    max-width: 100%;
    overflow-wrap: anywhere;
}

/* Flux Taboola below : pas de plafond d’items (laisser le feed natif défiler). */
#play4geek-taboola-below-article .tbl-feed-card,
#play4geek-taboola-below-article .tbl-feed-card .videoCube,
#play4geek-taboola-below-article .videoCube {
    display: revert !important;
    visibility: visible !important;
    max-height: none !important;
}

#play4geek-taboola-below-article .tbl-feed-container,
#play4geek-taboola-below-article .tbl-feed-frame,
#play4geek-taboola-below-article .tbl-trecs-feed {
    max-height: none !important;
    overflow: visible !important;
}

.play4geek-taboola-zone iframe,
.single-article-content .play4geek-taboola-zone--mid iframe,
.single-review-content .play4geek-taboola-zone--mid iframe {
    max-width: 100%;
}

.play4geek-taboola-zone--mid .videoCube,
.play4geek-taboola-zone--below .videoCube,
.play4geek-taboola-zone--carousel .videoCube {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.play4geek-taboola-zone--below .thumbBlock,
.play4geek-taboola-zone--below .item-thumbnail-href,
.play4geek-taboola-zone--below .videoCubeAspect,
.play4geek-taboola-zone--below .videoCubeAspect img,
.play4geek-taboola-zone--below .trc_img_overlay,
.play4geek-taboola-zone--below .trc_spotlight_item {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.play4geek-taboola-zone--below .video-title,
.play4geek-taboola-zone--below .branding,
.play4geek-taboola-zone--below .logoDiv,
.play4geek-taboola-zone--below .trc_user_title,
.play4geek-taboola-zone--below .trc_user_attribution {
    max-width: 100%;
    overflow-wrap: anywhere;
}

/* Ne pas imposer une grille 4 col. : Taboola gère le layout natif (1 large + vignettes). */

.single-article-content .play4geek-taboola-zone--mid,
.single-review-content .play4geek-taboola-zone--mid {
    margin-left: 0;
    margin-right: 0;
}

body.theme-dark .play4geek-taboola-zone--below {
    border-top-color: rgba(148, 163, 184, 0.22);
}

.single-review-page .play4geek-taboola-zone--below {
    margin: 0;
    padding: 1.1rem 2.5rem 1.2rem;
}

.single-article-page .article-sidebar .ad-slot-sidebar,
.single-article-page .article-sidebar .play4geek-moneytizer-slot-article_sidebar {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.single-article-page .article-sidebar .ad-slot-sidebar,
.single-article-page .article-sidebar .play4geek-ad-inner,
.single-article-page .article-sidebar .play4geek-moneytizer-inner,
.single-article-page .article-sidebar .play4geek-moneytizer-inner iframe,
.single-article-page .article-sidebar .play4geek-ad-inner iframe,
.single-article-page .article-sidebar .play4geek-ad-inner img,
.single-article-page .article-sidebar .play4geek-ad-inner ins {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.single-article-page .article-sidebar .play4geek-moneytizer-slot-article_sidebar .play4geek-moneytizer-inner,
.single-article-page .article-sidebar .play4geek-moneytizer-mount {
    display: block;
    align-items: stretch;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.single-article-page .article-sidebar .play4geek-moneytizer-slot-article_sidebar .play4geek-moneytizer-inner {
    min-height: 250px;
    overflow: visible;
}

.single-article-page .article-sidebar .play4geek-moneytizer-mount {
    width: 100%;
    max-width: 300px;
    min-width: 280px;
    min-height: 250px;
    position: relative;
    overflow: visible;
}

.single-article-page .article-sidebar .play4geek-moneytizer-mount div[id^="sas_"],
.single-article-page .article-sidebar .play4geek-moneytizer-mount iframe {
    display: block;
    width: 300px;
    max-width: 100%;
    min-height: 250px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.article-inline-widget .play4geek-moneytizer-mount,
.article-inline-widget [id^="141500-"] {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ad-slot-sidebar {
    margin-top: 0.9rem;
}

/* Enhanced Sidebar */
.article-sidebar {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

.game-sidebar-card {
    background: linear-gradient(170deg, #3c1622, #4a1d2c 58%, #2e1220);
    color: var(--text-light);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 14px 34px rgba(22, 15, 24, 0.24);
    border: 1px solid rgba(255,255,255,0.08);
}

.game-sidebar-cover {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.game-sidebar-cover img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.game-sidebar-card-header {
    margin-bottom: 0.95rem;
}

.game-sidebar-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: rgba(30, 115, 190, 0.2);
    color: #d8e8ff;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 600;
}

.game-sidebar-card h2 {
    margin: 0.45rem 0 0;
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 700;
}

.game-sidebar-card h2 a {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.game-sidebar-card h2 a:hover {
    color: #ff9b6f;
}

.game-sidebar-description {
    margin: 0 0 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 0.88rem;
}

.game-sidebar-meta {
    margin: 0 0 1rem;
    padding: 0.85rem 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.game-sidebar-meta > li {
    display: grid;
    grid-template-columns: 20px minmax(80px, 1fr) auto;
    align-items: center;
    gap: 0.48rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    padding: 0.14rem 0;
}

.game-sidebar-meta > li .meta-label {
    color: rgba(237, 243, 255, 0.92);
    font-weight: 600;
}

.game-sidebar-meta > li .meta-value {
    color: rgba(255, 255, 255, 0.92);
    text-align: right;
}

.meta-icon-small {
    font-size: 0.72rem;
    opacity: 0.9;
    color: rgba(255, 180, 139, 0.95);
}

.game-sidebar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    background: #ff8f5c;
    color: #2a1a22;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.78rem;
}

.game-sidebar-button:hover {
    background: #ffa776;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 143, 92, 0.25);
}

/* Sidebar article â€” bloc informations jeu (couleurs du thÃ¨me / customizer) */
.article-sidebar .game-sidebar-card.article-sidebar-game-card {
    background: linear-gradient(145deg, var(--bg-dark) 0%, color-mix(in srgb, var(--bg-dark) 82%, var(--bg-blue)) 100%);
    color: var(--text-light);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.1));
    border-radius: 14px;
    padding: 1rem;
    margin: 0;
    box-shadow: 0 14px 34px color-mix(in srgb, var(--bg-dark) 35%, transparent);
}

.article-sidebar-game-card .game-sidebar-tag {
    background: color-mix(in srgb, var(--bg-blue) 28%, transparent);
    color: var(--text-light);
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.09em;
    font-size: 0.62rem;
}

.article-sidebar-game-card-header {
    position: relative;
    margin-bottom: 0.75rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid color-mix(in srgb, var(--text-light) 18%, transparent);
}

.article-sidebar-game-card-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.article-sidebar-game-card-subscriptions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.75rem 0 0;
    padding-top: 0.65rem;
    border-top: 1px solid color-mix(in srgb, var(--text-light) 14%, transparent);
    overflow: visible;
}

.article-sidebar-game-card-subscriptions .game-sheet-subscription-badges.is-sidebar,
.article-sidebar-game-card-subscriptions .game-sheet-subscription-badges.is-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 0;
}

.article-sidebar-game-card-subscriptions .game-sheet-subscription-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    cursor: default;
}

.article-sidebar-game-card-subscriptions .game-sheet-subscription-badge__icon {
    display: block;
    width: 34px;
    height: 34px;
    max-width: 34px;
    border-radius: 11px;
    object-fit: cover;
    pointer-events: none;
}

.article-sidebar-game-card-subscriptions .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.article-sidebar-game-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0;
}

.article-sidebar-game-card-title-row h2 {
    flex: 1 1 auto;
    min-width: 0;
}

.article-sidebar-game-card h2 {
    margin: 0;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.article-sidebar-game-card-pegi {
    flex: 0 0 auto;
    width: 34px;
    height: 42px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--text-light) 22%, transparent);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.article-sidebar-game-card-pegi img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-sidebar-game-card h2 a {
    color: var(--text-light);
}

.article-sidebar-game-card h2 a:hover {
    color: color-mix(in srgb, var(--text-light) 75%, var(--bg-blue));
}

.article-sidebar-game-card-grid {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
}

.article-sidebar-game-card-cover {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--text-light) 16%, transparent);
}

.article-sidebar-game-card-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 7;
    object-fit: cover;
}

.article-sidebar-game-card .game-sidebar-meta {
    margin: 0;
    padding: 0;
    border: none;
    gap: 0.42rem;
}

.article-sidebar-game-card .game-sidebar-meta > li {
    display: grid;
    grid-template-columns: minmax(7.25rem, 48%) minmax(0, 1fr);
    align-items: center;
    gap: 0.45rem 0.7rem;
    font-size: 0.68rem;
    line-height: 1.35;
    color: color-mix(in srgb, var(--text-light) 92%, transparent);
    padding: 0.12rem 0;
}

.article-sidebar-game-card .game-sidebar-meta-key {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    min-width: 0;
    grid-column: 1;
    grid-row: 1;
}

.article-sidebar-game-card .game-sidebar-meta > li.game-sidebar-meta-item--platforms,
.article-sidebar-game-card .game-sidebar-meta > li.game-sidebar-meta-item--play-modes {
    align-items: start;
}

.article-sidebar-game-card .game-sidebar-meta > li.game-sidebar-meta-item--platforms .article-sidebar-game-card-platforms,
.article-sidebar-game-card .game-sidebar-meta > li.game-sidebar-meta-item--play-modes .article-sidebar-game-card-play-modes {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    justify-self: end;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.article-sidebar-game-card .meta-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.62rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--text-light) 78%, transparent);
    white-space: nowrap;
}

.article-sidebar-game-card .meta-label::after {
    content: ' :';
}

.article-sidebar-game-card .meta-value {
    justify-self: end;
    text-align: right;
    font-weight: 700;
    font-size: 0.68rem;
    color: var(--text-light);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

.article-sidebar-game-card .meta-icon-small {
    flex: 0 0 auto;
    width: 0.85rem;
    text-align: center;
    color: var(--bg-blue);
}

.article-sidebar-game-card-platforms.meta-value,
.article-sidebar-game-card-play-modes.meta-value {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.22rem;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 100%;
    min-width: 0;
}

.article-sidebar-game-card-platforms.meta-value > li,
.article-sidebar-game-card-play-modes.meta-value > li,
.game-sidebar-meta .article-sidebar-game-card-platforms > li,
.game-sidebar-meta .article-sidebar-game-card-play-modes > li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: fit-content;
    max-width: none;
    white-space: nowrap;
    padding: 0.08rem 0.34rem;
    border-radius: 5px;
    background: color-mix(in srgb, var(--bg-blue) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--text-light) 14%, transparent);
    color: var(--text-light);
    font-size: 0.52rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    text-align: center;
    text-transform: uppercase;
    grid-template-columns: none;
}

.article-sidebar-game-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin: 0.55rem 0 0;
    padding: 0;
    list-style: none;
}

.article-sidebar-game-card-tags li {
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background: var(--badge-bg, color-mix(in srgb, var(--bg-blue) 22%, transparent));
    color: var(--badge-text, var(--text-light));
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-sidebar-game-card .game-sidebar-button--buy {
    margin-top: 0.75rem;
    border-radius: 8px;
    background: var(--button-bg, var(--bg-blue));
    color: var(--button-text, var(--text-light));
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 0.75rem 0.85rem;
}

.article-sidebar-game-card .game-sidebar-button--buy:hover {
    background: var(--button-hover-bg, var(--bg-accent, var(--bg-blue)));
    color: var(--button-text, var(--text-light));
    transform: translateY(-1px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--button-bg, var(--bg-blue)) 40%, transparent);
}

.article-sidebar-game-card .game-sidebar-description {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    line-height: 1.5;
    color: color-mix(in srgb, var(--text-light) 85%, transparent);
}

.article-sidebar-game-card-trailer {
    position: relative;
    display: block;
    margin-top: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--text-light) 14%, transparent);
}

.article-sidebar-game-card-trailer img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-sidebar-game-card-trailer-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bg-dark) 45%, transparent);
    pointer-events: none;
}

.article-sidebar-game-card-trailer-play i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--button-bg, var(--bg-blue));
    color: var(--button-text, var(--text-light));
    font-size: 0.85rem;
    padding-left: 0.12rem;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--bg-dark) 50%, transparent);
}

body.theme-dark .article-sidebar .game-sidebar-card.article-sidebar-game-card {
    border-color: var(--border-color, rgba(255, 255, 255, 0.12));
}

body.theme-dark .article-sidebar-game-card-tags li {
    background: var(--badge-bg);
    color: var(--badge-text);
}

/* Newsletter Box */
.sidebar-newsletter {
    background: var(--sidebar-bg, linear-gradient(135deg, var(--bg-blue) 0%, #1558a0 100%));
    color: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 16px 48px rgba(30, 115, 190, 0.16);
    border: 1px solid rgba(255,255,255,0.1);
    box-sizing: border-box;
}

.sidebar-newsletter h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.sidebar-newsletter p {
    margin: 0 0 1.25rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form button {
    padding: 0.9rem 1rem;
    border: none;
    border-radius: 8px;
    background: var(--button-bg, var(--bg-blue));
    color: var(--button-text, var(--text-light));
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    border: 2px solid color-mix(in srgb, var(--button-bg, var(--bg-blue)) 75%, #ffffff);
}

.newsletter-form button:hover {
    background: var(--button-hover-bg, var(--bg-accent));
    border-color: color-mix(in srgb, var(--button-hover-bg, var(--bg-accent)) 75%, #ffffff);
    color: var(--button-text, var(--text-light));
}

/* Sidebar article sans jeu — Discord + sondage */
.single-article-page .article-sidebar--no-game {
    gap: 1.25rem;
}

.single-article-page .article-sidebar-fallback {
    display: grid;
    gap: 1.25rem;
    min-width: 0;
}

.single-article-page .article-sidebar-fallback .sidebar-discord.p4g-discord-block,
.single-article-page .article-sidebar-fallback .sidebar-panel.sidebar-poll.sidebar-poll--pro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.single-article-page .article-sidebar-fallback .p4g-discord-block__inner {
    padding: 1rem;
}

.single-article-page .article-sidebar-fallback .p4g-discord-block__features {
    grid-template-columns: 1fr;
    gap: 0.55rem;
}

.single-article-page .article-sidebar-fallback .p4g-discord-block__embed iframe {
    height: 280px;
}

body.theme-dark .single-article-page .article-sidebar-fallback .sidebar-panel.sidebar-poll.sidebar-poll--pro {
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.96) 0%, rgba(17, 32, 56, 0.98) 100%);
    border-color: rgba(148, 163, 184, 0.22);
    color: #e2e8f0;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.35);
}

body.theme-dark .single-article-page .article-sidebar-fallback .sidebar-poll-header {
    background: rgba(15, 23, 42, 0.55);
    border-bottom-color: rgba(148, 163, 184, 0.18);
}

body.theme-dark .single-article-page .article-sidebar-fallback .sidebar-poll-title,
body.theme-dark .single-article-page .article-sidebar-fallback .sidebar-poll-question,
body.theme-dark .single-article-page .article-sidebar-fallback .sidebar-poll-option-text {
    color: #f1f5f9;
}

/* Sidebar article — sondages widgetisés (single-article-sidebar) */
.single-article-page .article-sidebar .p4g-sidebar-widget > .sidebar-panel.sidebar-poll.sidebar-poll--pro,
.single-article-page .article-sidebar .sidebar-panel.sidebar-poll.sidebar-poll--pro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: linear-gradient(165deg, #fff 0%, #f8fbff 100%);
    border: 1px solid var(--border-color, #d6e3f3);
    border-radius: 18px;
    padding: 0;
    overflow: visible;
    box-shadow: 0 10px 28px rgba(15, 35, 70, 0.06);
    color: var(--text-dark, #111827);
}

.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-title,
.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-question,
.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-option-text,
.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-nav-label,
.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-result-label {
    color: var(--text-dark, #111827);
}

.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-submit {
    color: #fff;
}

.single-article-page .article-sidebar .sidebar-poll--pro fieldset.sidebar-poll-options,
.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-form {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.single-article-page .article-sidebar .sidebar-poll--pro .sidebar-poll-option {
    position: relative;
}

body.theme-dark .single-article-page .article-sidebar .sidebar-panel.sidebar-poll.sidebar-poll--pro {
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.96) 0%, rgba(17, 32, 56, 0.98) 100%);
    border-color: rgba(148, 163, 184, 0.22);
    color: #e2e8f0;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.35);
}

body.theme-dark .single-article-page .article-sidebar .sidebar-poll-header {
    background: rgba(15, 23, 42, 0.55);
    border-bottom-color: rgba(148, 163, 184, 0.18);
}

body.theme-dark .single-article-page .article-sidebar .sidebar-poll-title,
body.theme-dark .single-article-page .article-sidebar .sidebar-poll-question,
body.theme-dark .single-article-page .article-sidebar .sidebar-poll-option-text,
body.theme-dark .single-article-page .article-sidebar .sidebar-poll-nav-label,
body.theme-dark .single-article-page .article-sidebar .sidebar-poll-result-label {
    color: #f1f5f9;
}

body.theme-dark .single-article-page .article-sidebar .sidebar-poll-option-ui {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(148, 163, 184, 0.22);
}

body.theme-dark .single-article-page .article-sidebar .sidebar-poll-nav-btn {
    background: rgba(15, 23, 42, 0.55);
    border-color: rgba(148, 163, 184, 0.22);
    color: #fdba74;
}

/* Article Rating Section */
.article-rating-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(30, 115, 190, 0.05) 100%);
    border: 1px solid rgba(30, 115, 190, 0.1);
    border-radius: 0;
    margin: 2rem 0;
    text-align: center;
}

.article-inline-widgets {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.article-inline-widget {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.9rem;
}

.article-inline-widget .widget-title {
    margin: 0 0 0.55rem;
    font-size: 1rem;
}

/* Sidebar — widget « Jeux les plus attendus » (hors accueil : pas de play4geek-home-news-editorial.css) */
.article-sidebar .sidebar-hype-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.article-sidebar .sidebar-hype-item {
    margin: 0;
    list-style: none;
}

.article-sidebar .sidebar-hype-link {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    padding: 0.48rem;
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: background 0.16s ease;
}

.article-sidebar .sidebar-hype-link:hover {
    background: rgba(20, 89, 130, 0.08);
}

.article-sidebar .sidebar-hype-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.article-sidebar .sidebar-hype-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-sidebar .sidebar-hype-content {
    min-width: 0;
    display: grid;
    gap: 0.15rem;
}

.article-sidebar .sidebar-hype-name {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-dark);
}

.article-sidebar .sidebar-hype-meta {
    font-size: 0.74rem;
    color: var(--muted-text);
}

.article-sidebar .sidebar-hype-score {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.14rem 0.36rem;
    border-radius: 999px;
    border: 1px solid rgba(234, 88, 12, 0.28);
    color: #c2410c;
    background: rgba(251, 146, 60, 0.16);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.article-sidebar .sidebar-hype-score.is-neutral {
    color: #4b5563;
    border-color: rgba(75, 85, 99, 0.22);
    background: rgba(148, 163, 184, 0.14);
}

body.theme-dark .article-sidebar .sidebar-hype-link:hover {
    background: rgba(148, 163, 184, 0.12);
}

@media (max-width: 1024px) {
    .article-sidebar .sidebar-hype-link {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 0.45rem;
    }
}

.rating-container {
    max-width: 920px;
    margin: 0 auto;
}

.rating-title {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.rating-subtitle {
    margin: 0 0 1.75rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.smiley-rating {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.smiley-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.55rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 88px;
    flex: 1 1 88px;
    max-width: 120px;
    font-family: inherit;
}

.smiley-btn:hover {
    border-color: var(--bg-blue);
    background: #f0f7ff;
    transform: translateY(-4px);
}

.smiley-btn.active {
    border-color: var(--bg-blue);
    background: var(--bg-blue);
    color: white;
}

.smiley-emoji {
    font-size: 2.5rem;
    line-height: 1;
}

.smiley-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.smiley-count {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--bg-blue);
    line-height: 1.2;
}

.smiley-btn.active .smiley-count {
    color: rgba(255, 255, 255, 0.95);
}

.smiley-rating.voted .smiley-btn {
    cursor: default;
}

.smiley-btn.active .smiley-label {
    color: white;
}

.rating-message {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    color: #065f46;
    font-weight: 600;
}

.rating-message p {
    margin: 0;
}

/* Responsive for Rating */
@media (max-width: 768px) {
    .article-rating-section {
        padding: 1.5rem;
    }

    .smiley-btn {
        min-width: 85px;
        padding: 0.75rem;
    }

    .smiley-emoji {
        font-size: 2rem;
    }

    .smiley-label {
        font-size: 0.8rem;
    }

    .rating-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .smiley-rating {
        gap: 0.75rem;
    }

    .smiley-btn {
        min-width: 70px;
        padding: 0.6rem;
    }

    .smiley-emoji {
        font-size: 1.8rem;
    }

    .smiley-label {
        font-size: 0.75rem;
    }
}

/* Responsive for Meta Bar */
@media (max-width: 768px) {
    .article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .author-info {
        flex: 1;
        width: 100%;
    }

    .share-buttons-horizontal {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .article-meta-bar {
        padding: 1rem;
    }

    .author-avatar {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
    }

    .article-stats {
        font-size: 0.85rem;
    }

    .share-buttons-horizontal {
        gap: 0.5rem;
    }

    .share-icon {
        width: 36px;
        height: 36px;
    }

    .share-icon svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive layout for single article (tablet) */
@media (max-width: 1024px) {
    .single-article-page .article-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .related-articles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile : article pleine largeur, lecture seule (sidebar masquée) */
@media (max-width: 900px) {
    body.single-post .site-main.single-article-page,
    .single-article-page {
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0 0 1.25rem;
    }

    .single-article-page .article-layout {
        display: block;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .single-article-page .article-sidebar,
    .single-article-page aside.article-sidebar {
        display: none !important;
    }

    .single-article-page .single-article {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background: var(--text-light, #fff);
    }

    .single-article-page > .article-breadcrumb.article-breadcrumb--single {
        max-width: none;
        margin: 0;
        padding: 0.55rem 0.85rem 0.35rem;
    }

    .single-article-cover,
    .single-article-cover .featured-image-figure {
        border-radius: 0;
    }

    .single-article-cover img,
    .featured-image-figure img {
        max-height: min(42vw, 260px);
        border-radius: 0;
        object-fit: cover;
    }

    .article-cover-overlay {
        padding: 0.85rem 0.9rem 0.75rem;
    }

    .article-cover-overlay .single-article-title,
    .single-article-header .single-article-title {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
        line-height: 1.18;
        margin-bottom: 0.55rem;
    }

    .single-article-header {
        padding: 1rem 0.9rem 0.85rem;
    }

    .single-article-excerpt {
        font-size: 0.95rem;
        line-height: 1.55;
        margin-bottom: 0.85rem;
    }

    .article-meta-bar {
        padding: 0.85rem 0;
        gap: 0.75rem;
    }

    .single-article-content {
        padding: 0.35rem 0.9rem 1.35rem;
        font-size: 1.05rem;
        line-height: 1.75;
        overflow-x: clip;
    }

    .single-article-content img,
    .single-article-content .wp-block-image img,
    .single-article-content figure,
    .single-article-content .wp-block-embed,
    .single-article-content .wp-block-video {
        max-width: 100%;
    }

    .single-article-content .wp-block-embed.is-type-video,
    .single-article-content .wp-block-embed.is-provider-youtube {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .single-article-content .wp-block-embed.is-type-video .wp-block-embed__wrapper {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .single-article-content .wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
    .single-article-content iframe.p4g-youtube-embed {
        width: 100%;
        height: 100%;
    }

    .article-internal-links {
        margin: 0 0.9rem 1rem;
        padding: 0.85rem;
    }

    .related-articles,
    .article-game-hero,
    .article-rating-section,
    .article-navigation {
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }

    .related-articles {
        padding: 1.15rem 0.9rem 1.35rem;
    }

    .article-rating-section {
        padding: 1.15rem 0.9rem;
    }

    .article-navigation {
        padding: 1rem 0.9rem 1.25rem;
        gap: 0.75rem;
    }

    .play4geek-taboola-zone--below {
        margin: 0;
        padding: 1rem 0.9rem 1.25rem;
    }

    .single-article-page .single-article .single-article-comments {
        padding: 0 0.9rem 1.25rem;
    }

    .single-article-promo-bottom {
        margin: 0 0.9rem 1rem;
    }
}

@media (max-width: 768px) {
    .single-article-page .article-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .single-article-page .article-sidebar {
        display: none !important;
        position: static;
        top: auto;
        max-width: none;
        max-height: none;
        overflow: visible;
    }

    .article-cover-platforms {
        top: 0.65rem;
        left: 0.65rem;
        max-width: min(68%, calc(100% - 6rem));
    }

    .article-cover-category {
        top: 0.65rem;
        right: 0.65rem;
    }

    .breadcrumb-wrapper {
        padding: 0 0.9rem;
    }

    .single-article-meta {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.75rem 0;
    }

    .article-share-buttons {
        gap: 0.75rem;
    }

    /* Galerie : une image par ligne sur mobile (évite la grille 2 col. illisible). */
    .single-article-content .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image),
    .single-review-content .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .article-game-hero-inner {
        grid-template-columns: 1fr;
        padding: 3.25rem 0.9rem 1rem;
        gap: 0.85rem;
    }

    .article-game-hero-media {
        max-width: 140px;
    }

    .article-game-hero-score {
        width: 42px;
        height: 42px;
        font-size: 0.85rem;
    }

    .article-game-hero-meta-row {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .article-game-hero-meta dd {
        text-align: left;
    }

    .article-author-box {
        grid-template-columns: 1fr;
    }

    .article-author-avatar {
        margin-inline: auto;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .single-article-title,
    .article-cover-overlay .single-article-title,
    .single-article-header .single-article-title {
        font-size: clamp(1.28rem, 6.8vw, 1.65rem);
    }

    .single-article-meta {
        flex-direction: column;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .article-share-buttons {
        flex-wrap: wrap;
    }

    .breadcrumb-wrapper {
        gap: 0.3rem;
        font-size: 0.85rem;
    }

    .single-article-content {
        padding: 0.25rem 0.8rem 1.2rem;
        font-size: 1.02rem;
        line-height: 1.72;
    }

    .single-article-cover img,
    .featured-image-figure img {
        max-height: min(48vw, 220px);
    }

    .single-article-page .article-sidebar .newsletter-form {
        grid-template-columns: 1fr;
    }

    .single-article-page .article-sidebar .newsletter-form button {
        width: 100%;
    }
}

/* Commentaires / wpDiscuz : restent dans la carte article (pas de débordement hors grille) */
.single-article-page .single-article .single-article-comments {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin-top: 0.35rem;
    padding: 0 clamp(1.75rem, 4vw, 3rem) 2rem;
    overflow-x: hidden;
}

body.single-post .single-article-page .single-article .single-article-comments #comments {
    max-width: 100% !important;
    width: 100% !important;
    margin: 1rem 0 2rem !important;
    box-sizing: border-box;
}

body.single-post .single-article-page .single-article .single-article-comments #wpdcom,
body.single-post .single-article-page .single-article .single-article-comments #comments #wpdcom {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.single-article-page .single-article .single-article-comments .comments-area,
.single-article-page .single-article .single-article-comments #comments,
.single-article-page .single-article .single-article-comments #wpdcom,
.single-article-page .single-article .single-article-comments .wpdiscuz_unauth,
.single-article-page .single-article .single-article-comments .wpd-thread-wrapper,
.single-article-page .single-article .single-article-comments .wpd-comment-form-wrap,
.single-article-page .single-article .single-article-comments .wpd-form-wrapper,
.single-article-page .single-article .single-article-comments .wpd-thread-list,
.single-article-page .single-article .single-article-comments .wpdiscuz-comment-form,
.single-article-page .single-article .single-article-comments .wpdiscuz-comments {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.single-article-page .single-article .single-article-comments .comment-respond textarea,
.single-article-page .single-article .single-article-comments .wpdiscuz-textarea-wrap textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* STYLE-DIET-PHASE6-SINGLE-ARTICLE-LEGACY — legacy monolithe */
.single-article-excerpt {
    margin: 1rem 0 1.5rem;
    font-size: 1.05rem;
    color: var(--muted-text);
    line-height: 1.9;
}

.single-article-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.24rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(234, 88, 12, 0.3);
    background: rgba(251, 146, 60, 0.14);
    color: #9a3412;
    font-weight: 700;
    margin: 0 0 0.9rem;
}

.single-article-promo-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.single-article-promo-bottom {
    margin: 1.6rem 0 1.2rem;
    padding: 1.15rem;
    border-radius: 18px;
    border: 1px dashed rgba(234, 88, 12, 0.45);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.16), rgba(254, 215, 170, 0.36));
    text-align: center;
}

.single-article-promo-bottom-label {
    margin: 0 0 0.55rem;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9a3412;
}

.single-article-promo-bottom-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.5rem 1.25rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(234, 88, 12, 0.35);
    color: #7c2d12;
    font-size: clamp(1.5rem, 3.2vw, 2.2rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.single-article-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.9fr;
    gap: 2rem;
}

.single-article-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.article-sidebar {
    display: grid;
    gap: 1.5rem;
}

.sidebar-panel:not(.sidebar-poll):not(.sidebar-discord):not(.sidebar-newsletter):not(.sidebar-hype-widget):not(.sidebar-auctions-spotlight):not(.sidebar-live) {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 24px;
}

.game-sidebar-card {
    background: var(--bg-dark);
    color: var(--text-light);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.16);
}

.game-sidebar-card-header {
    margin-bottom: 1.25rem;
}

.game-sidebar-card h2 {
    margin: 1rem 0 0.75rem;
    font-size: 1.55rem;
    line-height: 1.15;
}

.game-sidebar-meta > li {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.95rem;
}

.game-sidebar-card .game-sidebar-button {
    margin-top: 1.3rem;
}

/* Mobile reader (fin de fichier) : gagne sur les blocs legacy ci-dessus */
@media (max-width: 900px) {
    body.single-post,
    body.single-post .site {
        overflow-x: clip;
    }

    body.single-post .site-main.single-article-page,
    .single-article-page {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 1rem !important;
        box-sizing: border-box !important;
    }

    .single-article-page .article-layout {
        display: block !important;
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .single-article-page .article-sidebar,
    .single-article-page aside.article-sidebar {
        display: none !important;
    }

    .single-article-page .single-article {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: var(--text-light, #fff);
    }

    .single-article-page > .article-breadcrumb,
    .single-article-page > .article-breadcrumb.article-breadcrumb--single,
    .article-breadcrumb:not(.article-breadcrumb--single) {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0.4rem 0.7rem !important;
        background: transparent !important;
    }

    .single-article-page .breadcrumb-wrapper {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .single-article-cover,
    .single-article-cover .featured-image-figure,
    .single-article-cover img,
    .featured-image-figure img {
        border-radius: 0 !important;
        width: 100%;
    }

    .single-article-header {
        padding: 0.75rem 0.7rem 0.65rem !important;
    }

    .single-article-page .article-meta-bar {
        padding: 0.75rem !important;
        margin: 0 !important;
        border-radius: 10px;
    }

    .single-article-content {
        padding: 0.25rem 0.7rem 1.1rem !important;
        font-size: 1.06rem !important;
        line-height: 1.72 !important;
        max-width: none !important;
    }

    .single-article-page .single-article .single-article-comments {
        padding: 0 0.7rem 1.1rem !important;
    }

    .related-articles,
    .article-rating-section,
    .article-navigation {
        border-radius: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .related-articles {
        padding: 1rem 0.7rem 1.2rem !important;
    }

    .article-navigation {
        padding: 0.9rem 0.7rem 1.1rem !important;
    }

    .article-internal-links {
        margin: 0 0.7rem 0.9rem !important;
    }

    .play4geek-taboola-zone--below {
        margin: 0 !important;
        padding: 0.9rem 0.7rem 1.1rem !important;
    }

    .single-article-promo-bottom {
        margin: 0 0.7rem 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .single-article-header {
        padding: 0.65rem 0.55rem 0.55rem !important;
    }

    .single-article-content {
        padding: 0.2rem 0.55rem 1rem !important;
        font-size: 1.04rem !important;
        line-height: 1.7 !important;
    }

    .single-article-page .article-meta-bar {
        padding: 0.65rem !important;
    }

    .single-article-page .single-article .single-article-comments,
    .related-articles,
    .article-navigation,
    .play4geek-taboola-zone--below {
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
    }
}

