/* The "Classic" Palette */
body {
    background-color: ivory;
    color: #000000;
    font-family: Verdana, sans-serif;
    font-size: 13px; /* PG uses small, crisp text */
    line-height: 1.4;
    margin: 20px;
}

a:link { color: #000099; text-decoration: none; }
a:visited { color: #464646; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Navigation links - always gray, no blue */
nav a:link,
nav a:visited,
nav a:hover,
nav a:active {
    color: #464646;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

/* Modern Grid Layout */
.container {
    display: grid;
    grid-template-columns: 120px 40px 1fr; /* Sidebar, Gap, Content */
    max-width: 750px;
}

/* Sidebar Styling */
nav {
    margin-top: 110px; /* Replaces the top spacer.gif */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    margin-bottom: 4px;
}

.home-icon {
    margin-top: 20px;
    display: block;
}

/* Main Content */
main {
    padding-top: 10px;
}

.hero-img {
    display: block;
    margin-bottom: 30px;
    border: 0;
    max-width: 100%;
    height: auto;
}

article {
    max-width: 410px; /* Matches PG's narrow reading width */
}