/* ==========================================================================
   SummitSwirl — Articles & Reviews Supplementary Styles
   Extends styles.css — uses same CSS variables and class naming convention
   Premium/Лакшери: #1a1a2e (dark), #d4af37 (gold), Playfair Display / Montserrat
   ========================================================================== */

/* ==========================================================================
   1. Breadcrumbs (extends .m-breadcrumb from styles.css)
   ========================================================================== */
.m-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: var(--space-md) 0;
    margin-bottom: var(--space-xl);
    font-size: 0.85rem;
    font-family: var(--font-body);
}

.m-breadcrumb__link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.m-breadcrumb__link:hover {
    color: var(--primary);
}

.m-breadcrumb__sep {
    color: rgba(212, 175, 55, 0.3);
    margin: 0 var(--space-sm);
    font-size: 0.75rem;
    user-select: none;
}

.m-breadcrumb__current {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   2. Article Header
   ========================================================================== */
.article-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.article-header .m-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: var(--space-lg);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.article-header__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.article-header__meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.article-header__meta-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
}

.article-header__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: var(--space-md);
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .article-header .m-page-title {
        font-size: 1.85rem;
    }
}

/* ==========================================================================
   3. Article Body (extends .m-content-card from styles.css)
   ========================================================================== */
.article-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    line-height: 1.3;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: 1.35;
}

.article-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.article-body p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.85;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-body em {
    color: var(--primary-light);
    font-style: italic;
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    transition: all var(--transition);
}

.article-body a:hover {
    color: var(--primary-light);
    text-decoration-color: var(--primary-light);
}

/* Lists */
.article-body ul,
.article-body ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
    color: var(--text-secondary);
}

.article-body ul {
    list-style-type: none;
    padding-left: 0;
}

.article-body ul li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    line-height: 1.75;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.article-body ul ul li::before {
    background: transparent;
    border: 1px solid var(--primary);
}

.article-body ol {
    padding-left: var(--space-lg);
    counter-reset: article-counter;
    list-style: none;
}

.article-body ol li {
    position: relative;
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: 1.75;
    counter-increment: article-counter;
}

.article-body ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.article-body li strong {
    color: var(--text-primary);
}

/* Nested lists */
.article-body ul ul,
.article-body ol ul,
.article-body ul ol,
.article-body ol ol {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}

/* ==========================================================================
   4. Article Tables
   ========================================================================== */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 0.9rem;
}

.article-body thead {
    background: rgba(212, 175, 55, 0.1);
}

.article-body thead th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    white-space: nowrap;
}

.article-body tbody td {
    padding: var(--space-md) var(--space-lg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
    line-height: 1.6;
    vertical-align: top;
}

.article-body tbody tr {
    transition: background-color var(--transition);
}

.article-body tbody tr:hover {
    background: rgba(212, 175, 55, 0.04);
}

.article-body tbody td strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive table wrapper */
.article-body__table-wrap {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-md);
    -webkit-overflow-scrolling: touch;
}

.article-body__table-wrap table {
    margin: 0;
    min-width: 520px;
}

@media (max-width: 768px) {
    .article-body table {
        font-size: 0.82rem;
    }

    .article-body thead th,
    .article-body tbody td {
        padding: var(--space-sm) var(--space-md);
    }
}

/* ==========================================================================
   5. Table of Contents (TOC)
   ========================================================================== */
.toc {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.toc__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.toc__title::before {
    content: '§';
    font-size: 1.2rem;
    color: var(--primary);
    opacity: 0.6;
}

.toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.toc__list li {
    counter-increment: toc-counter;
    margin-bottom: var(--space-sm);
}

.toc__list li::before {
    display: none;
}

.toc__link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    border-left: 2px solid transparent;
}

.toc__link:hover {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.06);
    border-left-color: var(--primary);
}

.toc__link::before {
    content: counter(toc-counter, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
    min-width: 22px;
}

/* Nested TOC */
.toc__list .toc__list {
    padding-left: var(--space-lg);
    margin-top: var(--space-xs);
    counter-reset: toc-sub-counter;
}

.toc__list .toc__list li {
    counter-increment: toc-sub-counter;
}

.toc__list .toc__list .toc__link::before {
    content: counter(toc-counter, decimal-leading-zero) '.' counter(toc-sub-counter);
    font-size: 0.7rem;
}

/* ==========================================================================
   6. Sidebar
   ========================================================================== */
.sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.sidebar__widget {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.sidebar__widget-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.sidebar__link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    border-left: 2px solid transparent;
}

.sidebar__link:hover,
.sidebar__link.is-active {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.06);
    border-left-color: var(--primary);
}

.sidebar__cta {
    text-align: center;
    margin-top: var(--space-md);
}

/* Sidebar related articles */
.sidebar__related-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
    transition: opacity var(--transition);
}

.sidebar__related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar__related-item:hover {
    opacity: 0.85;
}

.sidebar__related-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-input);
}

.sidebar__related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar__related-info {
    flex: 1;
    min-width: 0;
}

.sidebar__related-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar__related-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.sidebar__related-title a:hover {
    color: var(--primary);
}

.sidebar__related-category {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ==========================================================================
   7. Article Layout with Sidebar
   ========================================================================== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-2xl);
    align-items: start;
}

.article-layout__main {
    min-width: 0;
}

.article-layout__sidebar {
    min-width: 0;
}

@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .article-layout__sidebar {
        order: -1;
    }
}

/* ==========================================================================
   8. Article Blockquote & Callout
   ========================================================================== */
.article-body blockquote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 3px solid var(--primary);
    background: rgba(212, 175, 55, 0.04);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

.article-body blockquote p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-body blockquote p:not(:last-child) {
    margin-bottom: var(--space-md);
}

.article-callout {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.article-callout__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.article-callout__content {
    flex: 1;
}

.article-callout__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
}

.article-callout__text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   9. Article Code Blocks & Highlights
   ========================================================================== */
.article-body code {
    font-family: 'Courier New', monospace;
    font-size: 0.88em;
    background: rgba(212, 175, 55, 0.08);
    color: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.article-body pre {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-body pre code {
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Text highlight */
.article-body mark {
    background: rgba(212, 175, 55, 0.2);
    color: var(--text-primary);
    padding: 1px 4px;
    border-radius: 3px;
}

/* ==========================================================================
   10. Article Images & Figures
   ========================================================================== */
.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin: var(--space-lg) 0;
}

.article-body figure {
    margin: var(--space-xl) 0;
    text-align: center;
}

.article-body figure img {
    margin: 0 auto var(--space-sm);
    display: block;
}

.article-body figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    display: inline-block;
}

/* ==========================================================================
   11. Article Navigation (prev/next)
   ========================================================================== */
.article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.article-nav__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition);
}

.article-nav__item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.article-nav__item--next {
    text-align: right;
}

.article-nav__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.article-nav__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    transition: color var(--transition);
}

.article-nav__item:hover .article-nav__title {
    color: var(--primary);
}

@media (max-width: 600px) {
    .article-nav {
        grid-template-columns: 1fr;
    }

    .article-nav__item--next {
        text-align: left;
    }
}

/* ==========================================================================
   12. Article Tags
   ========================================================================== */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.article-tags__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    margin-right: var(--space-sm);
}

.article-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.article-tag:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
}

/* ==========================================================================
   13. Article Share
   ========================================================================== */
.article-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.article-share__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
}

.article-share__btn:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    border-color: var(--primary);
}

/* ==========================================================================
   14. Review-specific Extensions
   ========================================================================== */

/* Review Hero (extends .m-review-hero from styles.css) */
.m-review-hero {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.m-review-hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.m-review-hero__score {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.m-review-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: var(--font-body);
}

/* Review Rating Bar */
.m-review-rating-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.m-review-rating-bar__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.m-review-rating-bar__track {
    flex: 1;
    height: 8px;
    background: var(--bg-input);
    border-radius: 8px;
    overflow: hidden;
}

.m-review-rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
    border-radius: 8px;
    transition: width 0.6s ease;
}

.m-review-rating-bar__value {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 36px;
    text-align: right;
}

/* Review Games Grid (extends .m-review-games-grid from styles.css) */
.m-review-games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-lg) 0;
}

.m-review-game-tile {
    text-align: center;
    transition: transform var(--transition);
}

.m-review-game-tile:hover {
    transform: translateY(-3px);
}

.m-review-game-tile img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: var(--space-sm);
    transition: border-color var(--transition);
}

.m-review-game-tile:hover img {
    border-color: rgba(212, 175, 55, 0.3);
}

.m-review-game-tile span {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.m-review-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

@media (max-width: 768px) {
    .m-review-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .m-review-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

/* ==========================================================================
   15. Pros & Cons Section
   ========================================================================== */
.article-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.article-pros,
.article-cons {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid;
}

.article-pros {
    background: rgba(76, 175, 80, 0.04);
    border-color: rgba(76, 175, 80, 0.2);
}

.article-cons {
    background: rgba(244, 67, 54, 0.04);
    border-color: rgba(244, 67, 54, 0.2);
}

.article-pros__title,
.article-cons__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.article-pros__title {
    color: #66bb6a;
}

.article-cons__title {
    color: #ef5350;
}

.article-pros ul,
.article-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-pros ul li,
.article-cons ul li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.article-pros ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #66bb6a;
    font-weight: 700;
    font-size: 0.85rem;
}

.article-cons ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef5350;
    font-weight: 700;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .article-pros-cons {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   16. Article Divider
   ========================================================================== */
.article-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
    margin: var(--space-2xl) 0;
}

/* ==========================================================================
   17. Article CTA Box
   ========================================================================== */
.article-cta {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl) var(--space-2xl);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-cta__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.article-cta__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   18. Notification Styles (for auth.js NotificationUI)
   ========================================================================== */
.m-notification {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-lg);
    min-width: 280px;
    max-width: 420px;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    font-family: var(--font-body);
}

.m-notification.show {
    transform: translateX(0);
}

.m-notification__content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.m-notification__icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.m-notification__message {
    font-size: 0.88rem;
    color: var(--text-primary);
    line-height: 1.5;
    font-weight: 500;
}

/* Notification variants */
.m-notification--success {
    border-color: rgba(76, 175, 80, 0.3);
}

.m-notification--success .m-notification__icon {
    background: rgba(76, 175, 80, 0.15);
    color: #66bb6a;
}

.m-notification--error {
    border-color: rgba(244, 67, 54, 0.3);
}

.m-notification--error .m-notification__icon {
    background: rgba(244, 67, 54, 0.15);
    color: #ef5350;
}

.m-notification--info {
    border-color: rgba(33, 150, 243, 0.3);
}

.m-notification--info .m-notification__icon {
    background: rgba(33, 150, 243, 0.15);
    color: #42a5f5;
}

.m-notification--warning {
    border-color: rgba(255, 193, 7, 0.3);
}

.m-notification--warning .m-notification__icon {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.m-notification--xp {
    border-color: rgba(212, 175, 55, 0.3);
}

.m-notification--xp .m-notification__icon {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary);
}

.m-notification--level {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 175, 55, 0.08) 100%);
}

.m-notification--level .m-notification__icon {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary);
}

@media (max-width: 480px) {
    .m-notification {
        right: var(--space-md);
        left: var(--space-md);
        min-width: auto;
        max-width: none;
    }
}

/* ==========================================================================
   19. Print Styles
   ========================================================================== */
@media print {
    .m-header,
    .m-footer,
    .sidebar,
    .toc,
    .article-nav,
    .article-share,
    .article-cta,
    .m-review-cta,
    .cookie-consent,
    .modal {
        display: none !important;
    }

    body {
        background: #fff;
        color: #222;
        font-size: 12pt;
    }

    .m-main {
        padding-top: 0;
    }

    .m-content-card,
    .article-body {
        background: none;
        border: none;
        padding: 0;
    }

    .article-body h2 {
        color: #222;
        border-bottom-color: #ccc;
    }

    .article-body a {
        color: #222;
        text-decoration: underline;
    }

    .article-body a::after {
        content: ' (' attr(href) ')';
        font-size: 0.8em;
        color: #666;
    }
}