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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    border-bottom: 1px solid #e0e0e0;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: normal;
    text-decoration: none;
    color: #2c2c2c;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav a:hover {
    color: #2c2c2c;
}

/* Main Content */
.main {
    padding: 4rem 0;
}

.hero-post {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.post {
    margin-bottom: 3rem;
}

.post.featured {
    max-width: 800px;
    margin: 0 auto;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-date {
    color: #999;
}

.post-category {
    color: #2c2c2c;
    font-weight: 600;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1.3;
    transition: color 0.3s;
}

.post.featured .post-title a {
    font-size: 3.5rem;
}

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

.post-excerpt {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.post.featured .post-excerpt {
    font-size: 1.2rem;
}

.read-more {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: inline-block;
}

.read-more:hover {
    color: #666;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.posts-grid .post-title a {
    font-size: 1.8rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
    border-top: 1px solid #e0e0e0;
}

.pagination-link {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.pagination-link:hover {
    color: #666;
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    padding: 4rem 0;
    border-top: 1px solid #e0e0e0;
}

.sidebar-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.sidebar-widget {
    max-width: 400px;
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    font-weight: normal;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-widget p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.category-list a:hover {
    color: #2c2c2c;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 12px;
    border: 1px solid #e0e0e0;
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2c2c2c;
}

.newsletter-form button {
    padding: 12px;
    background: #2c2c2c;
    color: white;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    background: #000;
}

/* Footer */
.footer {
    border-top: 1px solid #e0e0e0;
    padding: 3rem 0;
    background: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-content p {
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2c2c2c;
}

/* Layout adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .post.featured .post-title a {
        font-size: 2.5rem;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .pagination {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .sidebar-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-title a {
        font-size: 1.8rem;
    }

    .post.featured .post-title a {
        font-size: 2rem;
    }
}

