.gps-posts__grid {
    display: grid;
    gap: 20px;
    margin: 20px 0;
}

.gps-posts__card {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gps-posts__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gps-posts__thumbnail {
    position: relative;
}

.gps-posts__thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gps-posts__progress {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}

.gps-posts__progress-bar {
    width: 100%;
    height: 5px;
    margin-top: 5px;
}

.gps-posts__complete {
    margin-top: 0;
    font-size: 12px;
}

.gps-posts__content {
    padding: 15px;
    text-align: left;
}

.gps-posts__category {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #888;
}

.gps-posts__title {
    font-size: 18px;
    margin-bottom: 10px;
}

.gps-posts__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gps-posts__rating, .gps-posts__reviews {
    font-size: 14px;
    color: #555;
}

.star-ratings {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #ffbf00;
}

.fill-ratings {
    color: #ffbf00;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.empty-ratings {
    color: #ccc;
}

/* Add more styles here for different themes or custom styles later */
