.rtd-grc-success,
.rtd-grc-status {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.rtd-grc-code {
    background: #f5f5f5;
    border: 1px dashed #999;
    border-radius: 6px;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 4px 0 14px;
    padding: 12px 18px;
}

.rtd-grc-copy {
    background: #da251d;
    border: 0;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-weight: 700;
    margin: 0 auto 18px;
    padding: 11px 18px;
}

.rtd-grc-copy:hover,
.rtd-grc-copy:focus {
    background: #b91e18;
    color: #fff;
}

.rtd-grc-choice-intro {
    margin-bottom: 22px;
    text-align: center;
}

.rtd-grc-choice-intro h2 {
    margin-bottom: 6px;
}

.rtd-grc-choices {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rtd-grc-choice {
    background: #fff;
    border: 2px solid #e2e2e2;
    border-radius: 10px;
    color: #151515;
    cursor: pointer;
    min-height: 150px;
    padding: 24px;
    text-align: left;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.rtd-grc-choice:hover,
.rtd-grc-choice:focus {
    border-color: #da251d;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    color: #151515;
    transform: translateY(-2px);
}

.rtd-grc-choice strong,
.rtd-grc-choice span {
    display: block;
}

.rtd-grc-choice strong {
    font-size: 20px;
    margin-bottom: 10px;
}

.rtd-grc-choice span {
    color: #5d5d5d;
    line-height: 1.5;
}

.rtd-grc-panel {
    margin-top: 22px;
}

.rtd-grc-panel[hidden],
.rtd-grc-choice[hidden] {
    display: none !important;
}

.rtd-grc-back {
    background: transparent;
    border: 0;
    color: #555;
    cursor: pointer;
    margin: 0 0 14px;
    padding: 0;
    text-decoration: underline;
}

@media (max-width: 700px) {
    .rtd-grc-choices {
        grid-template-columns: 1fr;
    }

    .rtd-grc-choice {
        min-height: 0;
    }
}
