/* game_info.php 城市支持组件；所有规则仅作用于此组件。 */
.game-info-support {
    display: flex;
    width: 100%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-sizing: border-box;
    margin: 12px 0 18px;
    padding: 13px 16px;
    border: 1px solid #cfd3d8;
    border-left: 3px solid #c8102e;
    border-radius: 6px;
    background: #f8f9fa;
    color: #292d33;
}

.game-info-support *,
.game-info-support *::before,
.game-info-support *::after {
    box-sizing: border-box;
}

.game-info-support__content {
    min-width: 0;
    flex: 1 1 460px;
}

.game-info-support__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 9px;
    margin: 0;
    color: #4f5964;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.game-info-support__meta.is-unavailable {
    color: #66707c;
    font-weight: 600;
}

.game-info-support__personal {
    display: inline-block;
    margin-top: 3px;
    color: #8d1225;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.game-info-support__personal:hover,
.game-info-support__personal:focus-visible {
    color: #b5122b;
    text-decoration: underline;
}

.game-info-support__personal.is-unavailable {
    color: #66707c;
    font-weight: 600;
    text-decoration: none;
}

.game-info-support__actions {
    display: flex;
    flex: 0 1 220px;
    justify-content: flex-end;
}

.game-info-support__action {
    display: inline-flex;
    width: auto;
    min-width: 176px;
    min-height: 42px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border: 1px solid #c8102e;
    border-radius: 6px;
    background: #c8102e;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.game-info-support__action:hover:not(:disabled):not(.is-disabled):not(.is-supported),
.game-info-support__action:focus-visible {
    border-color: #a50d26;
    background: #a50d26;
    color: #fff;
}

.game-info-support__action:focus-visible {
    outline: 3px solid rgba(200, 16, 46, .2);
    outline-offset: 2px;
}

.game-info-support__action.is-secondary,
.game-info-support__action.is-supported,
.game-info-support__action.is-disabled {
    border-color: #cfd3d8;
    background: #eef0f2;
    color: #292d33;
}

.game-info-support__action.is-supported,
.game-info-support__action.is-disabled {
    cursor: default;
    opacity: .84;
}

.game-info-support__action.is-loading {
    cursor: wait;
    opacity: .7;
}

@media (max-width: 700px) {
    .game-info-support {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        padding: 13px 14px;
    }

    .game-info-support__content,
    .game-info-support__actions {
        width: 100%;
        flex: 0 1 auto;
    }

    .game-info-support__actions {
        justify-content: stretch;
    }

    .game-info-support__action {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .game-info-support {
        gap: 11px;
        margin: 10px 0 16px;
        padding: 12px;
    }

    .game-info-support__meta,
    .game-info-support__personal {
        font-size: 13px;
    }
}
