/* ======================================================
   NEWSPAPER STYLE — Textured paper, stronger grain
====================================================== */

.ulse-newspaper {
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.85;
    color: #1a1a1a;
    width: 100%;
    box-sizing: border-box;

    background:
        repeating-linear-gradient(0deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 1px, transparent 2px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 1px, transparent 2px),
        #f7f3ea;

    border: 1px solid #c8c8c2;
    padding: 28px 26px;
    max-width: 900px;
    margin: 40px auto;
    border-radius: 4px;

    box-shadow: 0 0 18px rgba(0,0,0,0.12);
}

.ulse-newspaper article {
    column-count: 2;
    column-gap: 36px;
    column-rule: 1px solid rgba(0,0,0,0.12);
}

.ulse-newspaper h1 {
    font-family: "Georgia", serif;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 16px;
    column-span: all;
    letter-spacing: 0.4px;
}

/* Optional meta line: place a paragraph right after h1 */
.ulse-newspaper h1 + p,
.ulse-newspaper .ulse-meta {
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #5a5a5a;
    margin: -6px 0 18px 0;
    column-span: all;
}

.ulse-newspaper h2 {
    font-size: 22px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 12px;
    column-span: all;
}

.ulse-newspaper h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    column-span: all;
}

.ulse-newspaper p,
.ulse-newspaper ul,
.ulse-newspaper ol,
.ulse-newspaper blockquote {
    break-inside: avoid;
}

.ulse-newspaper .ulse-divider {
    height: 0;
    margin: 4px 0 18px;
    border-bottom: 2px solid #000;
    column-span: all;
}


.ulse-newspaper a {
    color: #003366;
    text-decoration: underline;
}
.ulse-newspaper a:hover {
    color: #001f44;
}

.ulse-newspaper blockquote {
    border-left: 3px solid #444;
    padding-left: 14px;
    margin-left: 0;
    color: #555;
    font-style: italic;
}

@media (max-width: 800px) {
    .ulse-newspaper article {
        column-count: 1;
        column-rule: none;
    }
}
