.logo-showcase {
    text-align: center;
    margin: 40px auto;
}

.logo-showcase img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

.logo-showcase img:hover {
    transform: scale(1.05);
}

.logo-credits {
    max-width: 800px;
    margin: 40px auto 60px;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-left: 4px solid var(--rosso);
}

.logo-credits h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--rosso);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-credits p {
    font-size: 1rem;
    color: var(--grigio-scuro);
    line-height: 1.8;
    margin-bottom: 15px;
}

.logo-credits p:last-child {
    margin-bottom: 0;
}

.logo-credits strong {
    color: var(--nero);
}