.article-section {
    background: #f8f9ff;
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px 0;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.article-header .article-category {
    display: inline-block;
    background: #764ba2;
    color: white;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.9em;
    margin-bottom: 18px;
}

.article-header h2 {
    font-size: 2.7em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #222;
}

.article-header p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.article-content {
    max-width: 980px;
    margin: 0 auto;
    color: #222;
    line-height: 1.9;
    font-size: 1.02em;
}

.article-content h3 {
    font-size: 1.65em;
    margin-top: 42px;
    margin-bottom: 18px;
    color: #222;
}

.article-content h4 {
    font-size: 1.35em;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #333;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
    margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
    margin-left: 1.5rem;
}

.article-content ul {
    list-style-type: disc;
}

.article-content li {
    margin-bottom: 12px;
}

.article-content strong {
    color: #111;
}

.article-list {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.article-card {
    background: white;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.12);
}

.article-preview-section {
    padding: 90px 0;
}

.article-preview-card {
    max-width: 860px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,255,0.98));
    border: 1px solid rgba(118, 75, 162, 0.17);
    border-radius: 30px;
    padding: 42px 48px;
    box-shadow: 0 25px 65px rgba(61, 54, 103, 0.12);
    text-align: center;
}

.article-preview-badge {
    display: inline-flex;
    background: #764ba2;
    color: white;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}

.article-preview-card h2 {
    font-size: 2.75rem;
    line-height: 1.03;
    margin-bottom: 20px;
    color: #14142b;
}

.article-preview-card p {
    font-size: 1.08rem;
    color: #4b4a6b;
    max-width: 760px;
    margin: 0 auto 28px;
}

.article-preview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px 32px;
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    max-width: 720px;
}

.article-preview-list li {
    position: relative;
    padding-left: 26px;
    color: #444;
    font-weight: 500;
}

.article-preview-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    color: #764ba2;
    font-weight: 700;
}

.article-preview-cta,
.article-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #764ba2;
    color: white;
    padding: 16px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease;
}

.article-preview-cta:hover,
.article-read-more:hover {
    background: #5b379f;
    transform: translateY(-2px);

@media (max-width: 768px) {
    .article-section,
    .article-preview-section {
        padding: 48px 0;
    }

    .article-preview-card {
        padding: 32px 20px;
    }

    .article-preview-card h2 {
        font-size: 2.2rem;
    }

    .article-header h2 {
        font-size: 2.2rem;
    }

    .article-content {
        font-size: 0.95rem;
    }

    .article-preview-list {
        grid-template-columns: 1fr;
    }
}
}