.gstv_match-item-short {
    width: 100%;
    background-size: cover;
    background-position: center top;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gstv_match-item-short:hover {
    transform: scale(1.02);
}

.gstv_match-item-short a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    position: relative;
}

.gstv_match-item-short__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    background: linear-gradient(266.54deg, #FF620E 40.18%, #F69138 76.02%, #F9E764 98.6%);
    font-size: 0.75rem;
    color: #fff;
    border-radius: 10px 10px 0 0;
}

.gstv_match-item-short-league {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.gstv_match-item-short__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gstv_match-item-short__view {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #FFDE29;
}

.gstv_match-item-short__view svg {
    width: 16px;
    height: 16px;
}

.gstv_match-item-short__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    background: #ff0000;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
}

.gstv_match-item-short__live img {
    width: 12px;
    height: auto;
}

.gstv_match-item-short__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: calc(100% - 38px); /* 38px là chiều cao header */
    backdrop-filter: blur(2px);
}

.gstv_match-item-short__teams {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000;
    text-align: center;
    width: 40%;
    padding: 0.5em;
}

.gstv_match-item-short__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 4px;
}

.gstv_match-item-short__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 2em; /* Đảm bảo luôn cao 2 dòng */
    line-height: 1em;
    text-align: center;
}

.gstv_match-item-short__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #000;
    font-size: 0.8rem;
    text-align: center;
    width: 20%;
}

.gstv_match-item-short__score span {
    display: block;
}

.gstv_match-item-short__time,
.gstv_match-item-short__date {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.gstv_match-item-short__score span:nth-child(2) {
    font-size: 1.2rem;
    font-weight: bold;
    color: blue;
}
.gstv_match-item-short__blv-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    background-image: linear-gradient(to bottom, #fff, #FFFEED);
    padding: 5px;
    border-radius: 0 0 10px 10px;
}

.gstv_match-item-short__blv {
    display: flex!important;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 30%;
    text-align: center;
}

.gstv_match-item-short__blv-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.gstv_match-item-short__blv-name {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

