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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 20px;
}

header {
    margin-bottom: 60px;
}

nav {
    margin-bottom: 40px;
}

nav a {
    color: #333;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
}

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

nav a.active {
    font-weight: 600;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 40px 0 20px 0;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content {
    margin-top: 40px;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.2s;
}

.gallery-grid img:hover {
    opacity: 0.8;
}

/* Posts Styles */
.post {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.post:last-child {
    border-bottom: none;
}

.post-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

.post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.post-title a {
    color: #333;
}

.post-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Individual Post Page Styles */
.post-content {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.7;
}

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

.back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}