/* --- GRIGLIA BLOG --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* --- CARD ARTICOLO --- */
.post-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 20px; /* Angoli smussati coerenti */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.post-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.post-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.post-body h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #111;
    font-weight: 800;
}

.post-body p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-body p[align="right"] {
    margin-top: auto;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

/* --- HERO COMPACT --- */
.hero-compact {
    padding: 60px 0;
    background: #fdfdfd;
    text-align: center;
}

.hero-logo-img {
    max-width: 120px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: #000;
}

.hero-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #444;
}
