/* ===== HOME CSS - Mercerie Ajaccio ===== */
/* V5.1 - Design Hero Diagonal - Loisirs créatifs / Mercerie / Couture */

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    background-color: #1a365d;
    overflow: hidden;
    padding: 0;
    min-height: 580px;
}

.hero-diagonal-bg {
    position: absolute;
    top: 0;
    right: -5%;
    width: 55%;
    height: 100%;
    background-color: #162d54;
    transform: skewX(-6deg);
    transform-origin: top right;
    z-index: 0;
}

.hero-shape-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fbb6ce;
    z-index: 2;
}

.hero-shape-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #f8f4f0;
    clip-path: polygon(0 60px, 100% 0, 100% 60px);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 70px 24px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero content */
.hero-content {
    color: #fff;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fbb6ce;
    margin-bottom: 20px;
    padding: 6px 14px;
    background-color: rgba(251, 182, 206, 0.12);
    border: 1px solid rgba(251, 182, 206, 0.3);
    border-radius: 20px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: #fbb6ce;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #a0bce0;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fbb6ce;
    color: #1a365d;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: 2px solid #fbb6ce;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
    background-color: #f9a3be;
    border-color: #f9a3be;
    color: #1a365d;
    transform: translateY(-1px);
    outline: none;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #e2e8f0;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.btn-hero-secondary:hover,
.btn-hero-secondary:focus {
    border-color: #fbb6ce;
    color: #fbb6ce;
    background-color: rgba(251, 182, 206, 0.08);
    outline: none;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tag {
    font-size: 0.78rem;
    color: #a0bce0;
    padding: 4px 12px;
    border: 1px solid rgba(127, 156, 245, 0.3);
    border-radius: 16px;
    background-color: rgba(127, 156, 245, 0.08);
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(251, 182, 206, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: #fff;
    color: #1a365d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.hero-floating-card {
    position: absolute;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #2d3748;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    white-space: nowrap;
    z-index: 3;
}

.hero-fc-1 {
    top: -12px;
    right: -16px;
}

.hero-fc-2 {
    bottom: 60px;
    right: -20px;
}

/* ============================================
   DASHBOARD MINI
============================================ */
.dashboard-section {
    padding: 48px 0 56px;
    background-color: #fff;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-card {
    background-color: #f8f4f0;
    border-radius: 14px;
    padding: 28px 20px 24px;
    text-align: center;
    border: 1px solid #e8e0d8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dash-card:hover {
    border-color: #fbb6ce;
    box-shadow: 0 4px 20px rgba(251, 182, 206, 0.2);
}

.dash-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.dash-number {
    font-size: 2rem;
    font-weight: 900;
    color: #1a365d;
    line-height: 1;
    margin-bottom: 6px;
}

.dash-label {
    font-size: 0.82rem;
    color: #718096;
    font-weight: 500;
}

/* ============================================
   CATEGORIES
============================================ */
.categories-section {
    padding: 72px 0;
    background-color: #f8f4f0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-card {
    background-color: var(--cat-bg);
    border: 2px solid var(--cat-border);
    border-radius: 14px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 54, 93, 0.12);
}

.cat-icon {
    width: 56px;
    height: 56px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cat-color);
    border: 1px solid var(--cat-border);
}

.cat-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cat-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
}

.cat-name a {
    color: #1a365d;
    text-decoration: none;
}

.cat-name a:hover,
.cat-name a:focus {
    color: var(--cat-color);
    outline: none;
}

.cat-desc {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.5;
}

.cat-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cat-color);
    padding: 3px 10px;
    background-color: #fff;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid var(--cat-border);
    align-self: flex-start;
}

/* ============================================
   ARTICLES
============================================ */
.articles-section {
    padding: 72px 0;
    background-color: #fff;
}

/* Article vedette */
.featured-article {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(26, 54, 93, 0.1);
    margin-bottom: 48px;
    border: 1px solid #e2e8f0;
}

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

.featured-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.featured-article:hover .featured-image img {
    transform: scale(1.03);
}

.featured-content {
    background-color: #f8f4f0;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.featured-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a365d;
    line-height: 1.3;
}

.featured-title a {
    color: #1a365d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-title a:hover,
.featured-title a:focus {
    color: #4c6ef5;
    outline: none;
}

.featured-excerpt {
    font-size: 0.97rem;
    color: #4a5568;
    line-height: 1.7;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #c2447f;
    padding: 4px 12px;
    background-color: #fff0f6;
    border: 1px solid #fbb6ce;
    border-radius: 20px;
    align-self: flex-start;
}

/* Grille articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background-color: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e8e0d8;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(26, 54, 93, 0.1);
    border-color: #fbb6ce;
}

.art-img-wrap {
    overflow: hidden;
    aspect-ratio: 16/9;
}

.art-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.article-card:hover .art-img-wrap img {
    transform: scale(1.05);
}

.art-card-body {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.art-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.art-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a365d;
    line-height: 1.35;
}

.art-card-title a {
    color: #1a365d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.art-card-title a:hover,
.art-card-title a:focus {
    color: #4c6ef5;
    outline: none;
}

.art-card-excerpt {
    font-size: 0.88rem;
    color: #4a5568;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.art-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f0ebe4;
}

/* ============================================
   OUTILS / CALCULATEURS
============================================ */
.tools-section {
    padding: 72px 0;
    background-color: #f8f4f0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tool-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tool-card:hover {
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.1);
    border-color: #7f9cf5;
}

.tool-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 16px;
    background-color: #eef2ff;
    border-bottom: 1px solid #c5d2f6;
}

.tool-icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #c5d2f6;
}

.tool-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 3px;
}

.tool-subtitle {
    display: block;
    font-size: 0.8rem;
    color: #718096;
    line-height: 1.4;
}

.tool-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tool-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tool-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a5568;
}

.tool-input {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.95rem;
    padding: 9px 13px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8f9fc;
    color: #2d3748;
    width: 100%;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.tool-input:focus {
    border-color: #7f9cf5;
    outline: none;
    background-color: #fff;
}

.tool-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    background-color: #1a365d;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.tool-btn:hover,
.tool-btn:focus {
    background-color: #2d4a7a;
    outline: none;
    transform: translateY(-1px);
}

.tool-result {
    min-height: 44px;
    padding: 12px 16px;
    background-color: #f0f4ff;
    border-radius: 8px;
    border-left: 3px solid #7f9cf5;
    font-size: 0.9rem;
    color: #1a365d;
    font-weight: 600;
    display: none;
}

.tool-result.visible {
    display: block;
}

/* ============================================
   FAQ ACCORDÉON
============================================ */
.faq-section {
    padding: 72px 0;
    background-color: #fff;
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}

.faq-header-col {
    position: sticky;
    top: 24px;
}

.faq-intro {
    font-size: 0.97rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 28px;
}

.faq-illustration {
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #fbb6ce;
}

.faq-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8f4f0;
    transition: border-color 0.2s ease;
}

.faq-item[open] {
    border-color: #7f9cf5;
    background-color: #fff;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.97rem;
    color: #1a365d;
    list-style: none;
    user-select: none;
    transition: color 0.2s ease;
}

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

.faq-question:hover,
.faq-question:focus {
    color: #4c6ef5;
    outline: none;
}

.faq-question span {
    flex: 1;
}

.faq-arrow {
    flex-shrink: 0;
    color: #7f9cf5;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px;
    border-top: 1px solid #e8e0d8;
    margin-top: 2px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: #4a5568;
    line-height: 1.7;
    padding-top: 16px;
}

/* ============================================
   TABLEAU COMPARATIF TISSUS
============================================ */
.table-section {
    padding: 72px 0;
    background-color: #f8f4f0;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background-color: #fff;
}

.fabric-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.fabric-table thead {
    background-color: #1a365d;
}

.fabric-table thead th {
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 16px;
    text-align: left;
    white-space: nowrap;
}

.fabric-table tbody tr {
    border-bottom: 1px solid #f0ebe4;
    transition: background-color 0.15s ease;
}

.fabric-table tbody tr:last-child {
    border-bottom: none;
}

.fabric-table tbody tr:hover {
    background-color: #fdf4f8;
}

.fabric-table tbody td {
    padding: 14px 16px;
    color: #2d3748;
    vertical-align: middle;
    line-height: 1.4;
}

.level-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 9px;
    border-radius: 12px;
    white-space: nowrap;
}

.level-easy {
    background-color: #c6f6d5;
    color: #276749;
}

.level-medium {
    background-color: #fefcbf;
    color: #744210;
}

.level-hard {
    background-color: #fed7d7;
    color: #9b2c2c;
}

.table-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: #718096;
    padding: 12px 0 0;
    line-height: 1.5;
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
    padding: 72px 0;
    background-color: #fff;
}

.newsletter-card {
    background-color: #1a365d;
    border-radius: 20px;
    padding: 52px 48px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-deco {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.newsletter-desc {
    font-size: 0.97rem;
    color: #a0bce0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-fields {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.nl-input {
    flex: 1;
    min-width: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1rem;
    padding: 13px 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.nl-input:focus {
    outline: none;
    border-color: #fbb6ce;
    background-color: rgba(255, 255, 255, 0.12);
}

.nl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    background-color: #fbb6ce;
    color: #1a365d;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 13px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.nl-btn:hover,
.nl-btn:focus {
    background-color: #f9a3be;
    outline: none;
    transform: translateY(-1px);
}

.nl-mention {
    font-size: 0.76rem;
    color: rgba(160, 188, 224, 0.7);
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1060px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-fc-1,
    .hero-fc-2 {
        display: none;
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tools-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        padding: 48px 20px 80px;
        gap: 36px;
    }
    .hero-diagonal-bg {
        display: none;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-visual {
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }

    /* Dashboard */
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Categories */
    .categories-section {
        padding: 48px 0;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Articles */
    .articles-section {
        padding: 48px 0;
    }
    .featured-article {
        grid-template-columns: 1fr;
    }
    .featured-image img {
        min-height: 220px;
    }
    .featured-content {
        padding: 24px 20px;
    }
    .featured-title {
        font-size: 1.3rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Tools */
    .tools-section {
        padding: 48px 0;
    }
    .tools-grid {
        max-width: 100%;
    }

    /* FAQ */
    .faq-section {
        padding: 48px 0;
    }
    .faq-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faq-header-col {
        position: static;
    }
    .faq-illustration {
        max-width: 320px;
    }

    /* Table */
    .table-section {
        padding: 48px 0;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 48px 0;
    }
    .newsletter-card {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 28px;
        text-align: center;
    }
    .newsletter-deco {
        display: none;
    }
    .newsletter-title {
        font-size: 1.5rem;
    }
    .newsletter-fields {
        flex-direction: column;
    }
    .nl-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero-container {
        padding: 36px 16px 72px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-label {
        font-size: 0.72rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
    }
    .btn-hero-secondary {
        padding: 11px 20px;
    }

    /* Dashboard */
    .dashboard-section {
        padding: 32px 0 40px;
    }
    .dash-card {
        padding: 20px 14px 18px;
    }
    .dash-number {
        font-size: 1.6rem;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .cat-card {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 18px 16px;
    }
    .cat-icon {
        flex-shrink: 0;
    }

    /* Articles */
    .articles-grid {
        max-width: 100%;
    }

    /* FAQ */
    .faq-question {
        font-size: 0.92rem;
        padding: 14px 16px;
    }
    .faq-answer {
        padding: 0 16px 16px;
    }

    /* Newsletter */
    .newsletter-card {
        padding: 28px 16px;
    }
}