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

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: #e0d5c7;
    color: #3d2f2a;
    font-size: 1.125rem;
    line-height: 1.5;
}

a {
    color: #3d2f2a;
    text-decoration: underline;
    text-decoration-color: #c9a882;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

a:hover {
    color: #8b6f47;
    text-decoration-color: #8b6f47;
}

nav {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #c9a882;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-right: 20px;
    text-decoration: none;
    font-weight: 500;
}

.nav-name {
    font-family: Georgia, 'Times New Roman', serif;
    color: #6a3f30;
    font-size: 1.1em;
}

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

h1 {
    margin-bottom: 20px;
    color: #4a3728;
}

h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    color: #5d4a3d;
}

p {
    margin-bottom: 15px;
    color: #4a3f35;
}

article {
    margin-bottom: 40px;
    padding: 20px;
    background: #faf8f3;
    border-left: 3px solid #b89968;
}

article h2 a {
    color: #4a3728;
    text-decoration: none;
    text-decoration-color: transparent;
}

article h2 a:hover {
    text-decoration: underline;
    text-decoration-color: #8b6f47;
}

time {
    color: #8b7355;
    font-size: 0.9em;
    display: block;
    margin-bottom: 10px;
}

.blog-list {
    list-style: none;
    padding: 0;
}

.blog-list li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #faf8f3;
    border-left: 3px solid #b89968;
}

.blog-list li a {
    color: #4a3728;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
}

.blog-list li:hover {
    background: #f5f1ea;
}

.blog-list li a:hover {
    color: #8b6f47;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #c9a882;
}

.back-link:hover {
    background: #c9a882;
    color: #3d2f2a;
    text-decoration: none;
}

.darker {
    color: #543d1f;
    font-weight: 650;
}
