/* Home page specific styles */
.home-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
}

.profile-photo {
    border: 1px solid #eee;
    max-width: 160px;
    padding: 2px;
    border-radius: 50%;
    margin-bottom: 2rem;
}

.about-section {
    text-align: left;
    margin-bottom: 2rem;
}

.about-section h2 {
    margin-bottom: 1rem;
}

.about-content {
    line-height: 1.6;
}

.links-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.links-section a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.links-section a:hover {
    text-decoration: underline;
}

.latest-posts {
    margin-top: 5rem;
    text-align: left;
}

.latest-posts h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--divider);
    padding-bottom: 0.5rem;
    color: var(--muted);
}

.post-entry {
    margin-bottom: 1.5rem;
}

.post-entry-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.post-entry-title a {
    color: var(--accent);
    text-decoration: none;
}

.post-entry-title a:hover {
    text-decoration: underline;
}

.post-entry-meta {
    font-size: 0.85rem;
    color: var(--muted);
}
