body {
    background: #f7f0dc;
    color: #111;
    font-family: Georgia, serif;
}

.news-banner {
    background: linear-gradient(
        to bottom,
        #ffd700,
        #d4a500
    );

    color: #111;
    text-align: center;
    padding: 18px;

    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;

    letter-spacing: 3px;

    border-bottom: 5px solid #7d5b00;
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 14px;
    background: #d4a500;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    width: auto; /* allows it to fit text only */
    text-align: center;
}

.article-container {
    max-width: 900px;

    margin: 30px auto;

    background: white;

    border: 4px solid #d4a500;

    box-shadow:
        0 0 20px rgba(0,0,0,.25);

    padding: 40px;
}

.article-headline {
    font-family: 'Oswald', sans-serif;

    font-size: 4.5rem;

    line-height: 1;

    color: #b71c1c;

    text-transform: uppercase;

    text-align: center;

    margin-bottom: 15px;
}

.article-subtitle {
    text-align: center;

    font-style: italic;

    color: #666;

    margin-bottom: 25px;

    font-size: 1.25rem;
}

.article-interactions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    color: #b71c1c;
    background: #fff7d1;
    border: 2px solid #d4a500;
    border-radius: 10px;
    padding: 10px 20px;
}

.like-button {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.1s;
}

.like-button:hover {
    transform: scale(1.05);
}

.article-meta {
    text-align: center;

    color: #777;

    margin-bottom: 30px;

    border-top: 1px solid #ddd;

    border-bottom: 1px solid #ddd;

    padding: 12px;
}

.article-content {
    background: #fff8f0;
    color: #111;
    border: 1px solid #ddd;
    padding: 30px;
    line-height: 2;
    font-size: 1.1rem;

    column-count: 2;
    column-gap: 50px;
}

.quote-box {
    background: #fff7d1;

    border: 2px solid #d4a500;

    padding: 20px;

    margin: 20px 0;

    font-style: italic;

    break-inside: avoid;
}

.fake-breaking {
    color: #b71c1c;

    font-weight: bold;

    text-transform: uppercase;
}

.magazine-layout {
    max-width: 1400px;
    margin: 40px auto;
    padding: 30px;

    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.article-main {
    background: white;
    padding: 40px;
    border: 4px solid #d4a500;
}

.cover-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    color: #b71c1c;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 25px;
}

.feature-image img {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: #fff7d1;
    border: 2px solid #d4a500;
    padding: 20px;
}

.sidebar-card h3 {
    margin-top: 0;
}