.speech-consent {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.speech-consent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 24, 44, 0.48);
    backdrop-filter: blur(3px);
}

.speech-consent__dialog {
    position: relative;
    width: min(420px, calc(100vw - 32px));
    border-radius: 22px;
    background: #ffffff;
    color: #22313f;
    box-shadow: 0 24px 60px rgba(14, 31, 53, 0.22);
    padding: 24px;
}

.speech-consent__title {
    margin: 0 0 10px;
    color: #123a61;
    font-size: 22px;
    line-height: 1.3;
}

.speech-consent__description,
.speech-consent__hint,
.speech-consent__status {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #566879;
}

.speech-consent__description,
.speech-consent__hint {
    margin-bottom: 12px;
}

.speech-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.speech-consent__button {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.speech-consent__button--primary {
    background: #0b66c3;
    color: #ffffff;
}

.speech-consent__button--ghost {
    background: #fff4df;
    color: #9a6500;
}

.speech-consent__status {
    min-height: 22px;
    margin-top: 14px;
}

body.speech-enabled a,
body.speech-enabled button,
body.speech-enabled [role="button"],
body.speech-enabled label,
body.speech-enabled h1,
body.speech-enabled h2,
body.speech-enabled h3,
body.speech-enabled h4,
body.speech-enabled h5,
body.speech-enabled h6,
body.speech-enabled p,
body.speech-enabled li,
body.speech-enabled td,
body.speech-enabled th,
body.speech-enabled span,
body.speech-enabled strong,
body.speech-enabled em {
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .speech-consent__dialog {
        width: min(360px, calc(100vw - 24px));
        border-radius: 18px;
        padding: 20px;
    }

    .speech-consent__title {
        font-size: 20px;
    }
}
