/* ============================================
   STATIC - HEADER
   ============================================ */
.static-header {
    padding: 80px 20px 16px;
    background: #FFFFFF;
}
@media (min-width: 768px) {
    .static-header {
        padding: 110px 20px 20px; 
    }
}

.static-header .container {
    max-width: 1000px;
    margin: 0 auto;
}

.static-header__title {
    margin: 0 0 16px 0;
    font-family: var(--sd-font-heading);
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #000000;
}
@media (min-width: 768px) {
    .static-header__title {
        margin-bottom: 20px;
    }
}

.static-header__excerpt {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: #333333;
}

.static-header__excerpt p {
    margin: 0 0 16px 0;
}

.static-header__excerpt p:last-child {
    margin-bottom: 0;
}

/* ============================================
   STATIC - CONTENT
   ============================================ */
.static-content {
    padding: 32px 20px 80px; /* Ridotto padding-top per avvicinare al titolo */
    background: #FFFFFF;
}
@media (min-width: 768px) {
    .static-content {
        padding: 40px 20px 100px; /* Ridotto padding-top desktop */
    }
}
.static-content .container {
    max-width: 1000px;
    margin: 0 auto;
}
.static-content__article {
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: #333333;
}

.static-content__article h2 {
    margin: 48px 0 24px 0;
    font-family: var(--sd-font-heading);
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #000000;
}
.static-content__article h3 {
    margin: 40px 0 20px 0;
    font-family: var(--sd-font-heading);
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #000000;
}
.static-content__article h4 {
    margin: 32px 0 16px 0;
    font-family: var(--sd-font-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 500;
    line-height: 1.4;
    color: #000000;
}
.static-content__article p {
    margin: 0 0 20px 0;
}
.static-content__article p:last-child {
    margin-bottom: 0;
}
.static-content__article ul,
.static-content__article ol {
    margin: 24px 0;
    padding-left: 24px;
}
.static-content__article li {
    margin-bottom: 12px;
    line-height: 1.7;
}
.static-content__article a {
    color: var(--sd-color-ripe-tomato, #e86a4d);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}
.static-content__article a:hover {
    opacity: 0.7;
}
.static-content__article blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--sd-color-ripe-tomato, #e86a4d);
    background: #f9f9f9;
    font-style: italic;
    color: #666666;
}
.static-content__article img {
    max-width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 4px;
}
.static-content__article strong {
    font-weight: 600;
    color: #000000;
}