* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* HERO */
.hero {
    height: 85vh;
    background: url("heroblog.avif") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 12px;
}

.hero p {
    font-size: 20px;
    opacity: 0.9;
}


/* MAIN */
main {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* INTRO */
.intro {
    margin-bottom: 50px;
    font-size: 17px;
    color: #444;
}

/* POST */
.post {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.post img {
    width: 420px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 14px;
}

.post-content p {
    font-size: 16px;
    color: #555;
}

/* INSPIRED SECTION */
.inspired-section {
    margin-bottom: 60px;
}

.inspired-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.inspired-item {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.inspired-item img {
    width: 60px;
    margin-bottom: 10px;
}

.inspired-item p {
    font-size: 15px;
    color: #555;
}

/* LINK FINALI */
.linkFinali {
    list-style: none;
    margin-top: 40px;
    text-align: center;
}

.linkFinali li {
    margin-bottom: 10px;
}

.linkFinali a {
    text-decoration: none;
    color: #007acc;
}

.linkFinali a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .post {
        flex-direction: column;
    }
    .post img {
        width: 100%;
        height: auto;
    }
    .hero-content h1 {
        font-size: 42px;
    }
}
