.btn-space {
    margin: 5px;
}

:root {
    --brand: #FF7513;
}

/** BOX PREMIATI HOMEPAGE */
.ranking-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #eee;
    transition: 0.25s ease;
}

.ranking-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(255,117,19,0.25);
}

.ranking-box h3 {
    color: #1f2d3d;
    font-weight: 600;
}

.ranking-box p {
    color: #6c757d;
    margin-bottom: 20px;
}


/** BOTTONI */

.btn-brand {
    background: var(--brand);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
}

.btn-brand:hover {
    background: #e96510;
    color: #fff;
}

.btn-brand-outline {
    border: 1px solid var(--brand);
    color: var(--brand);
    border-radius: 30px;
    padding: 8px 20px;
}

.btn-brand-outline:hover {
    background: var(--brand) !important;
    color: #fff !important;
}

/** CARD CLASSIFICHE */

.ranking-card {
    border-radius: 16px;
    transition: 0.25s ease;
}

.ranking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.ranking-img {
    max-width: 180px;
    max-height: 120px;
    object-fit: contain;
}


/** LAYOUT CLASSIFICHE */

.practice-header {
    display: flex;
    align-items: center;
    justify-content: center; /* centra tutto il blocco */
    gap: 15px; /* spazio tra immagine e testo */
    text-align: left;
}

.practice-logo {
    max-height: 110px;
    width: auto;
}

.practice-text h2 {
    margin: 0;
}