.hl-article-section {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hl-article-section h1,
.hl-article-section h2 {
    color: #222;
    /* neutral headings */
    margin-bottom: 1rem;
    font-weight: 600;
}

.hl-article-section p {
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.8;
}

/* HERO */
.hl-article-hero {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.hl-article-hero img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.hl-article-hero h1 {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 2.4rem);
    margin-bottom: 0.75rem;
}

.hl-article-hero p {
    max-width: 70ch;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

/* INTRO */
.hl-article-intro {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-left: 4px solid #888;
    /* neutral accent */
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    color: #444;
}

/* COMPONENTS: one per row, generous spacing */
.hl-article-components {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    /* big breathing room between components */
}

.hl-article-component {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hl-article-component ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.hl-article-component li {
    margin-bottom: .5rem;
}

.hl-article-component img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

/* CHECKLIST */
.hl-article-checklist {
    background: #fefcf6;
    border: 1px solid #e0dcc5;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.hl-article-checklist h2 {
    margin-top: 0;
}

.hl-article-checklist ul {
    padding-left: 1.5rem;
}

/* MISTAKES */
.hl-article-mistakes {
    margin-top: 3rem;
}

.hl-article-mistakes ul {
    padding-left: 1.5rem;
    font-size: 1.05rem;
}

/* SUMMARY */
.hl-article-summary {
    background: #f5f5f5;
    border: 1px dashed #bbb;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #444;
}

/* CTA */
.hl-article-cta {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.hl-article-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .75rem 1.5rem;
    border: 1px solid #444;
    border-radius: 999px;
    color: #444;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s, color .2s, border-color .2s;
}

.hl-article-btn:hover {
    background: #444;
    color: #fff;
    border-color: #444;
}

/* Small tweaks for very narrow screens */
@media (max-width: 420px) {
    .hl-article-component {
        padding: 1.25rem;
    }

    .hl-article-hero img {
        max-height: 260px;
    }
}

/* Optional: If you want the blog page to feel a bit ‘bigger’ on desktop */
@media (min-width: 1200px) {
    .hl-article-section {
        max-width: 1080px;
    }
}