
.hf-hold-container {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.hf-players {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hf-player {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    width: 22%;
    min-width: 200px;
}

.hf-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px auto;
    overflow: hidden;
    border-radius: 50%;
}

.hf-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hf-name {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.hf-role {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.hf-phone {
    font-weight: bold;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.hf-details {
    font-size: 0.9em;
}

@media (max-width: 1024px) {
    .hf-player {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .hf-player {
        width: 90%;
    }
}


/* 2-kolonne visning */
.hf-players.hf-two-cols .hf-player {
    width: 45%;
}

@media (max-width: 600px) {
    .hf-players.hf-two-cols .hf-player {
        width: 90%;
    }
}
