/* Spacing Option 3: Minimal Whitespace (Maximum Density) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.55;
    color: #2d3748;
    background: #f8f9fa;
}

/* Minimal Header */
header {
    background: #0066cc;
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 4px double white;
}

header h1 {
    font-size: 2.3em;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-family: 'Times New Roman', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

header p {
    font-size: 0.9em;
    opacity: 0.95;
    margin: 3px 0;
    font-style: italic;
}

header a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

/* Minimal Navigation */
nav {
    background: white;
    padding: 12px 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-bottom: 2px solid #0066cc;
}

nav h2 {
    font-size: 1.1em;
    color: #0066cc;
    margin-bottom: 8px;
    font-weight: 700;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

nav a {
    display: inline-block;
    padding: 5px 10px;
    background: #f0f0f0;
    color: #0066cc;
    text-decoration: none;
    border: 1px solid #0066cc;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    transition: all 0.2s;
}

nav a:hover {
    background: #0066cc;
    color: white;
}

/* Minimal Main Content */
main {
    max-width: 900px;
    margin: 15px auto;
    padding: 0 15px;
}

main h2 {
    font-size: 1.7em;
    color: #0066cc;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    border-bottom: 3px double #0066cc;
    padding-bottom: 8px;
}

/* Minimal Articles */
article {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    border-left: 3px solid #0066cc;
    background: white;
    padding: 18px 18px 18px 40px;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

article::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0066cc;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #0066cc;
}

article time {
    display: block;
    font-size: 0.82em;
    color: #0066cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    font-family: Arial, sans-serif;
}

article h3 {
    font-size: 1.35em;
    line-height: 1.28;
    font-weight: 700;
    margin-bottom: 0;
}

article h3 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.2s;
}

article h3 a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Minimal Footer */
footer {
    background: white;
    padding: 18px;
    text-align: center;
    margin-top: 25px;
    border-top: 4px double #0066cc;
    color: #666;
    font-style: italic;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    header {
        padding: 18px 12px;
    }

    header h1 {
        font-size: 1.9em;
        letter-spacing: 1px;
    }

    nav {
        padding: 10px 12px;
    }

    main {
        margin: 12px auto;
        padding: 0 12px;
    }

    article {
        padding: 15px 15px 15px 32px;
        margin-bottom: 18px;
    }
}
