/* Blog-specific styles */
.info {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.info .date, .info .author {
    margin: 0;
}

.tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags li {
    margin: 0;
}

.tag {
    background: #f4f4f4;
    color: #333;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-decoration: none;
    font-size: 0.8rem;
}

.tag:hover {
    background: #e0e0e0;
}

.navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.index section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.index section:last-child {
    border-bottom: none;
}

.content img {
    max-width: 60%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 1rem auto;
    display: block;
}

.image.main img {
    width: 80%;
        height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 1rem auto;
    display: block;
}
