.jwk-info-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.jwk-info-box__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(17, 24, 39, 0.08);
}

.jwk-info-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 28px;
    line-height: 1;
}

.jwk-info-box__icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.jwk-info-box__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #111827;
}

.jwk-info-box__description {
    color: #4b5563;
    line-height: 1.7;
}

.jwk-info-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 20px;
    border-radius: 12px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.jwk-info-box__button:hover {
    transform: translateY(-2px);
    opacity: 0.96;
}
