body.article-page {
    background: #f8fafc;
}

.article {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto 80px auto;
    max-width: 780px;
}

.article-hero {
    background: linear-gradient(120deg, #ccf5f0 0%, #e6f8ff 60%);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.article-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: #0c5bf5;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.article-hero h1 {
    margin: 0 0 16px 0;
}

.article-lede {
    font-size: 1.05rem;
    line-height: 1.72rem;
    margin: 0 0 20px 0;
}

.article-meta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.article-pill {
    background: rgba(12, 91, 245, 0.08);
    color: #0c5bf5;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 0.9rem;
}

.winner-card {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #dfe7ef;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.winner-badge {
    display: inline-block;
    background: #0c5bf5;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.winner-card h2 {
    margin: 12px 0 10px 0;
}

.winner-card p {
    margin: 0 0 10px 0;
}

.winner-list {
    margin: 10px 0 16px 18px;
    padding: 0;
}

.winner-list li {
    margin-bottom: 8px;
}

.winner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(90deg, #0c5bf5 0%, #19cffc 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(12, 91, 245, 0.3);
    margin: 10px 0 20px 0;
}

.winner-cta:hover,
.winner-cta:focus-visible {
    transform: translateY(-2px);
}

.article-section {
    background: #fff;
    border-radius: 24px;
    padding: 28px 32px;
    border: 1px solid #e5ebf3;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.04);
}

.article-section h2 {
    margin-top: 0;
}

.article-section p {
    margin: 0 0 12px 0;
}

.article-section ul,
.article-section ol {
    margin-top: 10px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.comparison-card {
    background: #f7fbff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #dfe7ef;
}

.comparison-card.highlight {
    background: #e9f6ff;
    border-color: #0c5bf5;
}

.comparison-card h3 {
    margin: 0 0 10px 0;
}

.comparison-card ul {
    padding-left: 18px;
}

.comparison-card li {
    margin-bottom: 6px;
}

.criteria-list {
    display: grid;
    gap: 8px;
    padding-left: 18px;
}

.bottom-line {
    font-weight: 700;
}

@media screen and (max-width: 900px) {
    .article-hero {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .article {
        gap: 28px;
    }

    .article-hero,
    .article-section {
        padding: 22px;
    }

    .article-meta-row {
        flex-direction: column;
    }
}
