.hero {
    text-align: center;
    padding: 4em 1.5em;
}

.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

.hero p {
    margin-bottom: 1.5em;
    color: #555;
}

.recent-posts {
    padding: 2em 1.5em;
}

.recent-posts h2 {
    margin-bottom: 1.5em;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5em;
    margin-bottom: 2em;
}

.post-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1.25em;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
}

.post-card-meta {
    display: flex;
    gap: 1em;
    font-size: 0.85em;
    color: #777;
}

.post-category {
    font-weight: bold;
    color: #555;
}

.post-card h3 {
    margin: 0;
}

.post-card h3 a {
    text-decoration: none;
}

.post-card h3 a:hover {
    text-decoration: underline;
}

.post-card p {
    color: #555;
    flex: 1;
}

.read-more {
    font-size: 0.9em;
    text-decoration: none;
    align-self: flex-end;
}


.about {
    padding: 3em 1.5em;
    border-top: 1px solid #eee;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2em;
    align-items: center;
}

.about-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
}

.about-text h2 {
    margin-bottom: 0.5em;
}

.about-text p {
    color: #555;
    margin-bottom: 0.75em;
    line-height: 1.6;
}

.about-author {
    margin-top: 1em;
    font-size: 0.9em;
    color: #777;
}