* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body {
    background-color: #ffff;
    font-family: arial, sans-serif;
    line-height: 1.6;
}

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header-section {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
    margin-bottom: 30px;
}

.header-section h1 {
    color: purple;
    grid-column: 2 / 3;
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.1em;
}

.header-section .subtitle {
    grid-column: 2 / 3;
    font-size: 1.1em;
    font-weight: 500;
    color: #333;
}

.article-body {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
}

.column-wrapper {
    grid-column: 2 / 3;
    column-count: 2;
    column-gap: 30px;
}

.column-wrapper p {
    margin-bottom: 1em;
    break-inside: avoid;
}

.pull-quote {
    position: relative;
    grid-column: 1 / 2;
    font-size: 1.4em;
    font-style: italic;
    color: #444;
    border-left: 5px solid #000;
    padding-left: 15px;
    margin-bottom: 2em;
}

.pull-quote p {
    font-weight: 600;
    margin-bottom: 0.5em;
    column-span: none;
}

.pull-quote cite {
    display: block;
    font-size: 0.6em;
    font-style: normal;
    text-transform: uppercase;
    color: #888;
}

.footer-section {
    grid-column: 1 / 3;
    text-align: center;
    margin-top: 50px;
    font-size: 0.7em;
    color: #aaa;
}

