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

body {
    font-family: Georgia, serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fafafa;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

header p {
    color: #666;
    font-style: italic;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

a {
    color: #333;
    text-decoration: underline;
}

a:hover {
    color: #000;
}

time {
    color: #666;
    font-size: 0.9rem;
}

article {
    border-left: 3px solid #ddd;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.post {
    border: none;
    padding: 0;
}

.content p {
    margin-bottom: 1rem;
}

.admin-links {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.post-nav {
    margin-top: 2rem;
}

footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-style: italic;
}

.silvaris {
    position: relative;
    cursor: help;
    text-decoration: underline;
    color: inherit;
}

.popover {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1000;
    transition: opacity 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.popover::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.silvaris:hover .popover {
    visibility: visible;
    opacity: 1;
}

.drawer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.drawer.open {
    max-height: 2000px;
    transition: max-height 0.5s ease-in;
}

.why-preview.hidden {
    display: none;
}

.why-full {
    padding-top: 1rem;
}

.why-preview p,
.why-full p {
    margin-bottom: 1.5rem;
}

.why-preview p:last-child,
.why-full p:last-child {
    margin-bottom: 0;
}

#drawer-toggle {
    display: inline-block;
    margin-top: 1rem;
    cursor: pointer;
    transition: color 0.2s;
}

#drawer-toggle:hover {
    color: #000;
}

.title-link {
    color: inherit;
    text-decoration: none;
}

.title-link:hover {
    color: inherit;
}

.copyright {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
}