/* Shared API choice guide component. */
.api-choice-guide {
    --api-choice-ink: #10231f;
    --api-choice-muted: #5d7470;
    --api-choice-line: #dbe7e4;
    --api-choice-accent: #0f766e;
    --api-choice-soft: #edf8f6;
    background: #fff;
    border: 1px solid var(--api-choice-line);
    border-radius: 14px;
    color: var(--api-choice-ink);
    margin-bottom: 18px;
    padding: 21px;
}

.api-choice-guide__kicker {
    color: var(--api-choice-accent);
    display: block;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .07em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.api-choice-guide__heading {
    font-size: 1.35rem;
    letter-spacing: -.02em;
    margin: 0 0 6px;
}

.api-choice-guide__intro {
    color: var(--api-choice-muted);
    margin: 0 0 16px;
    max-width: 52rem;
}

.api-choice-guide__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.api-choice-card {
    border: 1px solid var(--api-choice-line);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 17px;
}

.api-choice-card.is-current {
    background: var(--api-choice-soft);
    border-color: #8fc8bf;
    box-shadow: inset 0 0 0 1px rgba(15, 118, 110, .08);
}

.api-choice-card__top {
    align-items: center;
    display: flex;
    gap: 11px;
    margin-bottom: 12px;
    min-width: 0;
}

.api-choice-card__icon {
    align-items: center;
    background: var(--api-choice-soft);
    border-radius: 10px;
    color: var(--api-choice-accent);
    display: inline-flex;
    flex: 0 0 42px;
    font-size: 1rem;
    height: 42px;
    justify-content: center;
}

.api-choice-card.is-current .api-choice-card__icon {
    background: #fff;
}

.api-choice-card__name {
    font-size: 1.08rem;
    margin: 0;
}

.api-choice-card__current {
    background: var(--api-choice-accent);
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 4px;
    padding: 5px 8px;
}

.api-choice-card__starting-point {
    color: var(--api-choice-ink);
    font-weight: 700;
    margin-bottom: 7px;
}

.api-choice-card__description,
.api-choice-card__example {
    color: var(--api-choice-muted);
}

.api-choice-card__description {
    margin-bottom: 10px;
}

.api-choice-card__example {
    background: rgba(15, 118, 110, .055);
    border-radius: 8px;
    font-size: .88rem;
    margin-bottom: 14px;
    padding: 9px 10px;
}

.api-choice-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.api-choice-guide__rule {
    background: #f8fbfa;
    border-left: 4px solid var(--api-choice-accent);
    border-radius: 8px;
    color: #27463f;
    margin: 12px 0 0;
    padding: 10px 12px;
}

.api-choice-guide__credentials {
    color: var(--api-choice-muted);
    font-size: .86rem;
    margin-top: 10px;
}

@media (max-width: 767.98px) {
    .api-choice-guide__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 575.98px) {
    .api-choice-guide {
        border-radius: 11px;
        padding: 15px;
    }

    .api-choice-guide__heading {
        font-size: 1.18rem;
    }

    .api-choice-card {
        padding: 14px;
    }

    .api-choice-card .btn {
        align-items: center;
        align-self: stretch;
        display: inline-flex;
        justify-content: center;
        min-height: 44px;
        text-align: center;
        white-space: normal;
        width: 100%;
    }
}
