.hero-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.hero-img {
    width: 68px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
}
.win-rate {
    font-weight: bold;
    font-size: 0.85rem;
}
.win-rate-high {
    color: #28a745;
}
.win-rate-low {
    color: #dc3545;
}
.position-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px 8px 0 0;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}
.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}
.position-column {
    margin-bottom: 30px;
}
.hero-item {
    border-bottom: 1px solid;
    border-color: var(--bs-border-color);
    padding: 10px 0;
    transition: background-color 0.2s;
}
/* Для 5 колонок на десктопе */
@media (min-width: 1200px) {
    .col-lg-5col {
        flex: 0 0 auto;
        width: 20%;
    }
}