.heads-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.heads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.head-item {
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s ease;
}

.head-item:hover {
    border-color: #444;
    background: #1a1a1a;
    transform: translateY(-3px);
}

.head-item img {
    width: 64px; 
    height: 64px;
    image-rendering: pixelated;
    margin-bottom: 12px;
}

.head-item p {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: #eee;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}