/* ----------------------------------------------------
   MATCH LIST CONTAINER
---------------------------------------------------- */
.hw-match-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ----------------------------------------------------
   MATCH CARD
---------------------------------------------------- */
.hw-match-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    font-size: 20px; /* desktop lettertype */
}

/* ----------------------------------------------------
   GRID LAYOUT VOOR DE WEDSTRIJD
   (desktop: extra brede teamkolommen)
---------------------------------------------------- */
.hw-match-main {
    display: grid;
    grid-template-columns: 200px auto 200px; /* <<< BREEDER */
    align-items: center;
    gap: 16px;
}

/* ----------------------------------------------------
   TEAM BLOKKEN (logo boven naam)
---------------------------------------------------- */
.hw-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px; /* <<< BREEDER */
    text-align: center;
}

.hw-team img {
    height: 50px;
    width: auto;
    display: block;
}

.hw-team span {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 4px;
}

/* ----------------------------------------------------
   SCORE
---------------------------------------------------- */
.hw-score {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

/* ----------------------------------------------------
   DETAILS
---------------------------------------------------- */
.hw-match-details {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 18px;
}

.hw-detail-line {
    margin: 6px 0;
}

.hw-detail-line a {
    color: #0073aa;
    font-weight: 600;
    text-decoration: none;
}

.hw-detail-line a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------
   MOBIEL OPTIMALISATIE
---------------------------------------------------- */
@media (max-width: 600px) {

    .hw-match-card {
        padding: 14px;
        font-size: 16px;
    }

    .hw-match-main {
        grid-template-columns: 80px auto 80px;
        gap: 6px;
    }

    .hw-team {
        width: 80px;
    }

    .hw-team img {
        height: 28px;
    }

    .hw-team span {
        font-size: 12px;
    }

    .hw-score {
        font-size: 22px;
    }

    .hw-match-details {
        font-size: 14px;
    }
}
