/* ============================================================
   Lipgloss & Lore — cheetah.css
   Article stylesheet for "Styling Cheetah Print for Sunday Steals"
   Builds on the site's global style.css (nav, footer, maximalist-card).
   Upload to the same folder as cheetah.html.
   ============================================================ */

:root {
    --brand-pink: #ff1493;
    --brand-plum: #4a0e4e;
    --brand-orange: #ff8c00;
    --brand-gold: #d4af37;
}

/* ---- HERO IMAGE ---- */
.hero {
    text-align: center;
    margin: 10px 0 30px;
}

.hero img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border: 4px solid var(--brand-gold);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(74, 14, 78, 0.25);
}

.hero-caption {
    font-style: italic;
    color: var(--brand-plum);
    font-size: 13px;
    margin-top: 8px;
}

/* ---- BACK BUTTON ---- */
.back-btn {
    display: inline-block;
    margin: 20px;
    padding: 8px 15px;
    background: var(--brand-plum);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.back-btn:hover {
    background: var(--brand-pink);
    box-shadow: 0 0 10px var(--brand-pink);
}

/* ---- ARTICLE LAYOUT ---- */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fff9fc;
    color: #333;
    line-height: 1.6;
}

.article-container {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.article-container h1 {
    color: var(--brand-orange);
    font-family: 'Georgia', serif;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    font-style: italic;
    color: var(--brand-plum);
    margin-top: 0;
}

.byline {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
}

.article-container h2 {
    color: var(--brand-plum);
    border-bottom: 2px dashed var(--brand-pink);
    padding-bottom: 5px;
    margin-top: 30px;
}

.article-container p {
    font-size: 16px;
    margin-bottom: 20px;
}

.hit-list {
    background: #fdf5f8;
    border-left: 5px solid var(--brand-pink);
    padding: 15px 25px;
    margin: 20px 0;
}

.hit-list li {
    margin-bottom: 10px;
}

.next-issue {
    margin-top: 50px;
    padding: 20px;
    background: #fff9fc;
    border: 2px dashed var(--brand-gold);
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: var(--brand-plum);
}
