
/* Stili specifici per il blog */

.blog-list-section {
    padding: 6rem 2rem;
    text-align: center;
}

.blog-article-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-article-item {
    background-color: var(--solshard-gray);
    border: 1px solid var(--solshard-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.blog-article-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-article-item h3 {
    font-size: 1.5rem;
    margin: 1rem;
}

.blog-article-item h3 a {
    color: var(--solshard-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-article-item h3 a:hover {
    color: var(--solshard-primary);
}

.blog-article-item p {
    font-size: 1rem;
    padding: 0 1rem 1rem 1rem;
    color: var(--solshard-light);
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: left;
}

.blog-article-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.blog-article-content img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.blog-article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}


