:root {
    --green-dark:   #1e4d2b;
    --green-mid:    #2e7d3f;
    --green-light:  #4caf66;
    --gold:         #c9a84c;
    --cream:        #f7f4ee;
    --warm-white:   #fdfcf8;
    --text-body:    #2f2f2f;
    --border:       #d8d0c4;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.articles-wrapper { max-width: 860px; margin: 0 auto; padding: 60px 40px 80px; }
.article {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 56px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.article-header {
    background: var(--green-dark);
    padding: 28px 36px 22px;
    position: relative;
}
.article-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(255,255,255,.12);
    position: absolute;
    right: 28px; top: 12px;
    line-height: 1;
    pointer-events: none;
}
.article-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 10px;
}
.article-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: #fff;
    line-height: 1.25;
    font-weight: 600;
}
.article-body { padding: 30px 36px 34px; }
.article-body p { font-size: 1rem; color: var(--text-body); margin-bottom: 1.1em; }
.article-body p:last-child { margin-bottom: 0; }
.article-body a {
    color: var(--green-mid);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(46,125,63,.35);
    transition: color .2s, border-color .2s;
}
.article-body a:hover { color: var(--green-dark); border-bottom-color: var(--green-dark); }
.picks {
    background: var(--cream);
    border-left: 3px solid var(--green-light);
    border-radius: 0 3px 3px 0;
    padding: 18px 22px;
    margin: 22px 0;
}
.picks-title {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    color: var(--green-dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.picks ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.picks ul li { font-size: .95rem; padding-left: 18px; position: relative; }
.picks ul li::before { content: '+'; color: var(--green-light); font-weight: 700; position: absolute; left: 0; }
.article-cta {
    display: inline-block;
    margin-top: 18px;
    background: var(--green-dark) !important;
    color: #fff !important;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 3px;
    text-decoration: none !important;
    border: none !important;
    transition: background .2s;
}
.article-cta:hover { background: var(--green-mid) !important; }
@media (max-width: 640px) {
    .articles-wrapper { padding: 40px 20px 60px; }
    .article-header { padding: 22px 22px 18px; }
    .article-body { padding: 22px 22px 26px; }
}