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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    line-height: 1.8;
    color: #2a2a2a;
    background: #fafafa;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
}

header {
    margin-bottom: 80px;
    text-align: center;
}

nav {
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #2a2a2a;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    color: #1a1a1a;
}

main {
    min-height: 60vh;
}

footer {
    margin-top: 120px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: #999;
}

/* Blog Posts */
.posts-list {
    display: grid;
    gap: 100px;
}

.post-preview {
    transition: opacity 0.3s ease;
}

.post-preview:hover {
    opacity: 0.85;
}

.post-preview-content {
    text-align: center;
    margin-bottom: 30px;
}

.post-preview h2 {
    margin: 0 0 12px 0;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.post-preview h2 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-preview h2 a:hover {
    color: #666;
}

.post-preview time {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.post-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.post-preview-excerpt {
    text-align: center;
    margin-top: 25px;
}

.post-preview-excerpt p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Individual Post */
.post {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 60px;
    text-align: center;
}

.post-header h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: #1a1a1a;
}

.post-header time {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.post-image {
    margin: 60px 0;
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-gallery {
    display: grid;
    gap: 60px;
    margin: 60px 0;
}

.post-gallery img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    line-height: 2;
    font-size: 1.3rem;
    color: #555;
}

.post-content p {
    margin-bottom: 30px;
}
