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

body {
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}

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


.logo {
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
    color: #000;
}

/* Header Section */
.post-header {
    padding: 4rem 0 2rem;
    text-align: center;
    margin-top: 70px;

}

.post-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 1.5rem;
}

.category {
    color: #0070f3;
    font-weight: 700;
}

.dot {
    margin: 0 10px;
}

.post-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.post-excerpt {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Author Section */
.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 700;
}

.post-date {
    font-size: 0.9rem;
    color: #888;
}

/* Hero Image */
.post-hero {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto;
}

.post-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

/* Article Content */
.post-content {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin-bottom: 100px;
}

.post-content h2 {
    font-family: 'Inter', sans-serif;
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.dropcap {
    float: left;
    font-size: 5rem;
    line-height: 1;
    margin: 0.1em 0.1em 0 0;
    font-weight: 800;
    color: #000;
}

blockquote {
    border-left: 4px solid #000;
    padding-left: 20px;
    font-style: italic;
    font-size: 1.5rem;
    margin: 2rem 0;
    color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .post-title {
        font-size: 2.2rem;
    }

    .post-hero img {
        height: 300px;
    }

    .post-hero {
        padding: 0 10px;
    }
}

.list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 17px;
}