/* =========================================================
   SATUSPORT SPORT 1
   ========================================================= */

.satusport-sport-1-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}


/* =========================================================
   CARD
   ========================================================= */

.satusport-sport-1-card {
    min-width: 0;
    margin: 0;
    padding: 0;
}


/* =========================================================
   GAMBAR
   ========================================================= */

.satusport-sport-1-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.satusport-sport-1-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    margin: 0;
    padding: 0;
}


/* =========================================================
   JIKA TIDAK ADA GAMBAR
   ========================================================= */

.satusport-sport-1-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eeeeee;
}


/* =========================================================
   KONTEN
   ========================================================= */

.satusport-sport-1-content {
    min-width: 0;
    padding-top: 8px;
}


/* =========================================================
   JUDUL
   ========================================================= */

.satusport-sport-1-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;

    color: #222;
    text-decoration: none;

    margin: 0;
    padding: 0;
}

.satusport-sport-1-title:hover {
    color: #007DBE;
}


/* =========================================================
   TANGGAL
   ========================================================= */

.satusport-sport-1-date {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #999;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .satusport-sport-1-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 8px;
    }

    .satusport-sport-1-content {
        padding-top: 7px;
    }

    .satusport-sport-1-title {
        font-size: 14px;
        line-height: 1.3;
    }

    .satusport-sport-1-date {
        margin-top: 5px;
        font-size: 11px;
    }

}