/* Stili per la sezione Blog */
.blog-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-section {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 1rem;
}

.blog-section h3 {
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.feed-container {
    min-height: 200px;
}

.blog-post {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
}

.blog-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-post h4 {
    margin-bottom: 0.5rem;
}

.blog-post-date {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-post-excerpt {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

@media screen and (min-width: 736px) {
    .blog-container {
        flex-direction: row;
    }

    .blog-section {
        flex: 1;
    }
}