/* ========================================
   SAID IPTV Network - Système de Design
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f8f9fa;
}

a {
    transition: all 0.3s ease;
}

/* ========================================
   Header
   ======================================== */
header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.site-name:hover {
    opacity: 0.9;
}

/* ========================================
   Navigation - Style Premium & Interactif
   ======================================== */
nav {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Effet de fondu sur les bords pour le scroll mobile */
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-container a {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 0.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-container a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-container a:hover {
    color: #2563eb;
    transform: translateY(-1px);
}

.nav-container a.active {
    color: #2563eb;
}

.nav-container a.active::after,
.nav-container a:hover::after {
    width: 20px;
    /* Petit trait élégant au lieu de toute la largeur */
}

/* Ajustements pour les écrans tactiles */
@media (max-width: 768px) {
    .nav-container {
        justify-content: flex-start;
        padding-left: 1rem;
        gap: 1.2rem;
        mask-image: linear-gradient(to right, black 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent);
    }

    .nav-container a {
        height: 50px;
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
}


/* ========================================
   Homepage - Articles Grid
   ======================================== */
.page-title {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

.page-title h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2563eb;
    display: inline-block;
}

.articles-grid {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-image-container {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #666;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #2563eb;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.avatar--lg {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-title a:hover {
    color: #2563eb;
}

.card-excerpt {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.read-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.8rem;
}

/* ========================================
   Article Page
   ======================================== */
.article-wrapper {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 20px;
}

.article-header {
    background: white;
    padding: 3rem 3rem 2rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-details h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.2rem;
}

.author-title {
    font-size: 0.85rem;
    color: #666;
}

.publication-date {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #666;
}

.publication-date strong {
    color: #333;
}

.article-featured-image {
    width: 100%;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: white;
    padding: 1rem 3rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.article-body {
    background: white;
    padding: 3rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.article-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 2.5rem 0 1.5rem;
}

.article-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 2rem 0 1rem;
}

/* ========================================
   Content Blocks
   ======================================== */
.premium-quote {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 5px solid #2563eb;
    padding: 3rem 2.5rem 2.5rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(37, 99, 235, 0.15);
    font-family: serif;
    line-height: 1;
}

.premium-quote p {
    font-size: 1.25rem !important;
    line-height: 1.7 !important;
    color: #1a1a1a !important;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 1.5rem !important;
    font-family: "Inter", serif;
}

.premium-quote cite {
    display: block;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-box {
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box {
    background: #f0f9ff;
    border: 2px solid #2563eb;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.info-box h3 {
    color: #2563eb;
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box ul {
    margin-left: 1.5rem;
    margin-bottom: 0;
}

.info-box ul li {
    margin-bottom: 0.8rem;
    color: #333;
}

.article-image-container {
    width: 100%;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ========================================
   Contact Box
   ======================================== */
.contact-box {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    text-align: center;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-box p {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.faq-section h2 {
    margin-bottom: 1.5rem;
}

.faq-item {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin: 0;
}

/* ========================================
   Tags
   ======================================== */
.article-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.tag {
    background: #f0f0f0;
    color: #555;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #2563eb;
    color: white;
}

/* ========================================
   Footer Global - Design Premium 2026
   ======================================== */
.main-footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #111827 100%);
    color: #cbd5e0;
    padding: 6rem 0 0;
    margin-top: 6rem;
    font-family: 'Inter', -apple-system, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1.2fr;
    gap: 5rem;
    padding-bottom: 5rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 25px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

/* About Column */
.footer-logo {
    display: inline-block;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon .abbr-icon {
    font-size: 0.8rem;
    font-weight: 800;
}

.social-icon:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Links Column */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a::before {
    content: '→';
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.contact-info p {
    margin-bottom: 1.5rem;
    color: #94a3b8;
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info p strong {
    color: #fff;
    font-weight: 600;
    min-width: 80px;
}

.contact-info a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-info a:hover {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
}

.opening-badge {
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(59, 130, 246, 0.2);
    letter-spacing: 0.5px;
}

/* Bottom Footer */
.footer-bottom {
    background-color: #0f172a;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive Footer - Optimisation Mobile Premium 2026 */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        padding: 0 3rem;
        text-align: center;
    }

    .footer-about {
        grid-column: span 1;
        margin: 0 auto;
        max-width: 500px;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-description {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding-top: 4.5rem;
        margin-top: 4.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
        gap: 3.5rem;
    }

    .footer-logo img {
        max-height: 42px;
    }

    .footer-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .social-icon {
        width: 48px;
        /* Plus facile à cliquer sur mobile */
        height: 48px;
    }

    .footer-bottom {
        padding: 2rem 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1.8rem;
        text-align: center;
    }

    .footer-legal {
        gap: 1.2rem;
        flex-direction: column;
        align-items: center;
    }

    .footer-legal a {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .opening-badge {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* ========================================
   Responsive Design - Granulaire & Fluide
   ======================================== */

/* Grandes tablettes / Petits laptops */
@media (max-width: 1280px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Tablettes (Portrait) */
@media (max-width: 1024px) {

    .header-content,
    .nav-container,
    .page-title,
    .articles-grid,
    .article-wrapper {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-header h1 {
        font-size: 2.2rem;
    }
}

/* Mobiles Large (Tablettes mini / Phablettes) */
@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }

    .site-name {
        font-size: 1.25rem;
    }

    .nav-container a {
        padding: 1rem 0.25rem;
        font-size: 0.85rem;
    }

    .articles-grid {
        gap: 1.25rem;
        margin: 1.5rem auto;
    }

    .article-header {
        padding: 2rem 1.5rem;
    }

    .article-body {
        padding: 2rem 1.5rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1rem;
    }

    .author-info {
        gap: 0.75rem;
    }

    .avatar--lg {
        width: 40px;
        height: 40px;
    }
}

/* Mobiles Standard (iPhone, Samsung Galaxy, etc.) */
@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .page-title h2 {
        font-size: 1.5rem;
        width: 100%;
        display: block;
    }

    .card-content {
        padding: 1.25rem;
    }

    .article-header h1 {
        font-size: 1.6rem;
    }

    .image-caption {
        padding: 0.75rem 1.5rem;
    }

    .info-box {
        padding: 1.25rem;
    }

    .highlight-box {
        padding: 1.25rem;
    }

    .contact-box {
        padding: 1.5rem;
    }
}

/* Mobiles Trop petits (Anciens terminaux / SE) */
@media (max-width: 380px) {
    .nav-container {
        gap: 0.75rem;
    }

    .nav-container a {
        font-size: 0.75rem;
    }

    .article-header h1 {
        font-size: 1.4rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .avatar--lg {
        width: 36px;
        height: 36px;
    }
}

/* Optimisation pour l'affichage paysage sur mobile */
@media (max-height: 500px) and (orientation: landscape) {
    header {
        padding: 0.5rem 0;
    }

    nav {
        position: relative;
    }
}

/* ========================================
   Article Content Blocks - Premium Styles
   ======================================== */

/* Article Lists */
.article-list {
    margin: 1.5rem 0 1.5rem 2rem;
    padding: 0;
    list-style: none;
}

.article-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.article-list li::before {
    content: "▪";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Checklist Style */
.article-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 3px solid #22c55e;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.article-checklist li:hover {
    transform: translateX(5px);
}

.article-checklist .check-icon {
    color: #22c55e;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Pros & Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

.pros-box,
.cons-box {
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pros-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
}

.cons-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #ef4444;
}

.pros-box h4,
.cons-box h4 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.pros-box ul,
.cons-box ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style: none;
}

.pros-box li,
.cons-box li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.pros-box li::before {
    content: "✓";
    position: absolute;
    left: -1.2rem;
    color: #22c55e;
    font-weight: bold;
}

.cons-box li::before {
    content: "✗";
    position: absolute;
    left: -1.2rem;
    color: #ef4444;
    font-weight: bold;
}

/* CTA Button in Article */
.article-cta {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 16px;
}

.article-cta .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.article-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.5);
}

.article-cta .btn-cta:active {
    transform: translateY(-1px);
}