/* PremierLiga widget — gamesfun9 left sidebar */
.side-block--pl {
    margin-top: 0;
}

.pl-widget-games {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pl-news-card {
    display: block;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pl-news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    border-color: rgba(64, 115, 158, 0.55);
}

.pl-news-card__img {
    width: 100%;
    height: 118px;
    background: #1a2a3a;
}

.pl-news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pl-news-card__body {
    padding: 10px 12px 12px;
}

.pl-news-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 10px;
    line-height: 1.2;
}

.pl-news-card__cat {
    background: #3d195b;
    color: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    max-width: 62%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pl-news-card__date {
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.pl-news-card__title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    -webkit-line-clamp: 3;
}

.pl-news-card:hover .pl-news-card__title {
    color: #7ec8ff;
}

.pl-news-more {
    display: block;
    margin-top: 2px;
    padding: 10px 12px;
    text-align: center;
    border-radius: 10px;
    background: rgba(64, 115, 158, 0.25);
    border: 1px solid rgba(64, 115, 158, 0.45);
    color: #d8ebff !important;
    font-size: 12px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.pl-news-more:hover {
    background: #40739e;
    color: #fff !important;
}

.side-block--pl .side-block__title .fal.fa-futbol {
    color: #7ec8ff;
}
