.gsc-round-card {
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dde0e2;
    border-radius: var(--gsc-card-radius);
    background: #ffffff;
    box-shadow: var(--gsc-shadow);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.gsc-round-card-media {
    position: relative;
    display: block;
    height: 178px;
    overflow: hidden;
}

.gsc-round-card-image {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none;
    object-fit: cover;
}

.gsc-round-card-mark {
    position: absolute;
    top: 14px;
    left: 14px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--gsc-green);
    font-size: 27px;
}

.gsc-round-card-body {
    display: block;
    padding: 12px 17px 14px;
}

.gsc-round-card-primary-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 10px;
}

.gsc-round-card-title {
    min-width: 0;
    color: var(--gsc-green);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.16;
}

.gsc-round-card-location {
    margin-bottom: 1px;
    color: var(--gsc-text-muted);
    font-size: 12px;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.gsc-round-card-routing {
    display: block;
    margin-top: 8px;
    color: var(--gsc-green);
    font-size: 14px;
    font-weight: 700;
}

.gsc-round-card-detail-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 11px;
    color: var(--gsc-text-muted);
    font-size: 13px;
    line-height: 1.25;
}

.gsc-round-card-detail-row > :first-child:last-child {
    grid-column: 1 / -1;
}

.gsc-round-card-score {
    color: #06285a;
    font-size: 22px;
    font-weight: 750;
}

.gsc-round-card-review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
}

.gsc-round-card-review-meta.has-review {
    transform: translateY(-21px);
    gap: 15px;
}

.gsc-round-card-needs-review {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff4d6;
    color: #7a4b00;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.gsc-round-card-tsm-level {
    white-space: nowrap;
}

@media (max-width: 390px) {
    .gsc-round-card-detail-row {
        gap: 7px;
        font-size: 12px;
    }
}