/* ==========================================================================
   BLOG STYLES — MONDESIGN.PRO
   ========================================================================== */

/* ==========================================================================
   BLOG LISTING PAGE (HUB)
   ========================================================================== */

.blog-hero {
    padding: 8rem 5% 4rem;
    text-align: center;
    background: var(--white);
}

.blog-hero-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-content .section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-subtle);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.blog-hero-content .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text);
}

.blog-hero-content .section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-soft);
}

.blog-listing {
    padding: 4rem 5%;
    background: var(--off-white);
}

.blog-listing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* CTA Section (bottom of listing) */
.cta-section {
    padding: 5rem 5%;
    background: var(--gradient-primary);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: white;
    color: var(--accent);
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   ARTICLE LAYOUT
   ========================================================================== */

.blog-article {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray);
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* Article Header */
.blog-article__header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.blog-article__category {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--gradient-subtle);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.blog-article__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}

.blog-article__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9375rem;
    color: var(--gray);
}

.blog-article__meta time,
.blog-article__reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hero Image */
.blog-article__hero {
    margin: 0 auto 3rem;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-article__hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Two-Column Layout */
.blog-article__layout {
    display: block;
    gap: 4rem;
    margin-top: 0;
}

/* Sidebar (hidden on mobile, sticky on desktop) */
.blog-article__sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .blog-article__sidebar {
        display: block;
        position: sticky;
        top: 2rem;
        height: fit-content;
        align-self: start;
    }
}

/* Main Content */
.blog-article__content {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

/* ==========================================================================
   TABLE OF CONTENTS (TOC)
   ========================================================================== */

.toc {
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--light-gray);
}

.toc__title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--accent);
    font-weight: 700;
}

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

.toc__item {
    margin-bottom: 0.5rem;
}

.toc__link {
    display: block;
    padding: 0.5rem 0 0.5rem 1rem;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.9375rem;
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.toc__link:hover,
.toc__item--active .toc__link {
    color: var(--accent);
    border-color: var(--accent);
}

/* ==========================================================================
   SIDEBAR CTA
   ========================================================================== */

.sidebar-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    text-align: center;
    color: white;
}

.sidebar-cta__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sidebar-cta__text {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.sidebar-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--accent);
    border: 2px solid white;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    min-height: 44px;
}

.sidebar-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--off-white);
}

.btn--small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

/* ==========================================================================
   ARTICLE CONTENT TYPOGRAPHY
   ========================================================================== */

.blog-article__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-soft);
}

.blog-article__intro {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text);
}

.blog-article__content h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    scroll-margin-top: 2rem;
}

.blog-article__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    scroll-margin-top: 2rem;
}

.blog-article__content p {
    margin-bottom: 1.5rem;
}

/* Links inside content - but NOT buttons */
.blog-article__content a:not(.pricing-card__link):not(.btn):not(.callout a) {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.blog-article__content a:not(.pricing-card__link):not(.btn):not(.callout a):hover {
    color: var(--accent-light);
}

.blog-article__content ul,
.blog-article__content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.blog-article__content li {
    margin-bottom: 0.75rem;
}

.blog-article__content strong {
    color: var(--text);
    font-weight: 700;
}

.blog-article__content em {
    font-style: italic;
    color: var(--text);
}

/* ==========================================================================
   CALLOUT BOXES
   ========================================================================== */

.callout {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2.5rem 0;
    border-left: 4px solid;
    font-size: 1rem;
}

.callout p {
    margin-bottom: 0;
}

.callout strong {
    display: block;
    margin-bottom: 0.5rem;
}

.callout--info {
    background: rgba(30, 100, 200, 0.05);
    border-color: var(--accent);
    color: var(--text-soft);
}

.callout--warning {
    background: rgba(249, 115, 22, 0.05);
    border-color: var(--orange);
    color: var(--text-soft);
}

.callout--tip {
    background: rgba(16, 185, 129, 0.05);
    border-color: var(--green);
    color: var(--text-soft);
}

.callout--quote {
    background: var(--off-white);
    border-color: var(--gray);
    font-style: italic;
}

.callout--quote blockquote {
    margin: 0;
}

.callout--quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    font-style: normal;
    color: var(--gray);
}

/* Info/Tip Cards (generated content) */
.important-card,
.conseil-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin: 2rem 0;
    border-left: 4px solid;
}

.important-card {
    background: rgba(30, 100, 200, 0.05);
    border-color: var(--accent);
}

.important-card p,
.conseil-card p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-soft);
}

.important-card strong,
.conseil-card strong {
    color: var(--text);
}

.conseil-card {
    background: rgba(16, 185, 129, 0.05);
    border-color: var(--green);
}

.conseil-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.conseil-card ul {
    margin: 0;
    padding-left: 1.25rem;
}

.conseil-card li {
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   PRICING CARDS (Blog Variant)
   ========================================================================== */

.pricing-grid--blog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.pricing-card--featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
    background: linear-gradient(to bottom, rgba(30, 64, 175, 0.02) 0%, white 100%);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.pricing-card__name {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.pricing-card__price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-card__features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-card__features li:first-child {
    padding-top: 0;
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: "✓";
    color: var(--green);
    font-weight: 700;
    margin-right: 0.875rem;
    font-size: 1.125rem;
}

.pricing-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white !important;
    text-decoration: none !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all var(--transition-base);
    min-height: 48px;
    margin-top: auto;
}

.pricing-card__link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
    color: white !important;
}

/* ==========================================================================
   COMPARISON TABLES
   ========================================================================== */

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2.5rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table thead th {
    background: var(--off-white);
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.comparison-table tbody th {
    font-weight: 600;
    color: var(--text);
}

.comparison-table tbody td {
    color: var(--text-soft);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
    margin: 3.5rem 0;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
}

.faq-section h2 {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Simple FAQ format (H3 question + p answer) */
.faq-section h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.faq-section h3:first-of-type {
    margin-top: 0;
}

.faq-section > p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item[open] {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question span {
    flex: 1;
}

/* FAQ Icon (Chevron) */
.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--gray);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    animation: faqFadeIn 0.3s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.faq-answer strong {
    color: var(--text);
    font-weight: 600;
}

@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus States (Accessibility) */
.faq-question:focus {
    outline: none;
}

.faq-question:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 12px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .faq-icon {
        transition: none;
    }

    .faq-answer {
        animation: none;
    }

    .faq-item {
        transition: none;
    }
}

/* ==========================================================================
   BLOG CTA SECTION
   ========================================================================== */

.blog-cta {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.blog-cta__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white !important;
}

.blog-cta__text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
}

.blog-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background: white;
    color: var(--accent);
    border: 2px solid white;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    min-height: 54px;
}

.blog-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background: var(--off-white);
}

/* Compact CTA (for before-FAQ CTAs) */
.blog-cta--compact {
    margin: 3rem 0 2rem;
    padding: 1.5rem 1.5rem;
    background: linear-gradient(135deg, var(--off-white) 0%, #f8f9fa 100%);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    text-align: center;
}

.blog-cta--compact .blog-cta__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text) !important;
}

.blog-cta--compact .blog-cta__text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    color: var(--text-soft);
    opacity: 1;
}

.blog-cta--compact .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.blog-cta--compact .btn:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ==========================================================================
   ARTICLE FOOTER
   ========================================================================== */

.blog-article__footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons__label,
.tags__label {
    font-weight: 600;
    color: var(--text);
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    color: var(--gray-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.share-button:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Tags */
.tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.375rem 0.875rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-full);
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* ==========================================================================
   AUTHOR BOX
   ========================================================================== */

.author-box {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
}

.author-box__content {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.author-box__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
}

.author-box__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.author-box__bio {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.author-box__link {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.author-box__link:hover {
    color: var(--accent-light);
}

/* ==========================================================================
   RELATED ARTICLES
   ========================================================================== */

.related-articles {
    margin-top: 4rem;
}

.related-articles__title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text);
}

.related-articles__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Blog Card */
.blog-card {
    background: white;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card__image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: var(--off-white);
    overflow: hidden;
}

.blog-card__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--gradient-subtle);
}

.blog-card__content {
    padding: 1.5rem;
}

.blog-card__category {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--gradient-subtle);
    border: 1px solid var(--accent-light);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
    line-height: 1.3;
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.blog-card__cta {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__cta {
    color: var(--accent-light);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .blog-hero-content .section-title {
        font-size: 3.5rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .blog-article {
        padding: 3rem 2rem;
    }

    .blog-article__title {
        font-size: 3rem;
    }

    .pricing-grid--blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

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

    .author-box__content {
        gap: 2rem;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-article__layout {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .blog-article__sidebar {
        display: block;
    }

    .blog-article__content {
        margin: 0;
    }

    /* Keep 2 columns on smaller desktops - cards will wrap 2x2 */
    .pricing-grid--blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .related-articles__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-cta {
        padding: 4rem 3rem;
    }

    .blog-cta__title {
        font-size: 2.5rem;
    }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
    .blog-article__title {
        font-size: 3.5rem;
    }

    .blog-article__layout {
        grid-template-columns: 320px 1fr;
        gap: 5rem;
    }

    /* 2 columns still - cleaner layout with sidebar */
    .pricing-grid--blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* Extra Large Desktop (1600px+) - Keep 2x2 grid */
@media (min-width: 1600px) {
    .blog-article__layout {
        max-width: 1400px;
    }

    /* Keep 2 columns max - cleaner 2x2 grid layout */
    .pricing-grid--blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .blog-article__sidebar,
    .share-buttons,
    .tags,
    .author-box,
    .related-articles,
    .blog-cta,
    nav,
    footer {
        display: none !important;
    }

    .blog-article__content {
        max-width: 100%;
    }

    .blog-article__title {
        font-size: 2rem;
    }
}
