.sq-mod-note,
.sq-mod-note * {
    box-sizing: border-box;
}

.sq-mod-note {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;

    margin: 15px 0;
    padding: 18px;

    background:
        radial-gradient(circle at top right, rgba(255,121,0,.08), transparent 30%),
        #121216;

    border: 1px solid #2b2b31;
    border-left: 4px solid #ff7900;
    border-radius: 12px;

    color: #d8d8de;
}

.sq-mod-note__icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    background: linear-gradient(180deg,#ff9422,#ff7900);
    border-radius: 12px;

    font-size: 24px;
}

.sq-mod-note__content {
    flex: 1;
}

.sq-mod-note__label {
    margin-bottom: 5px;

    color: #ff7900;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sq-mod-note__title {
    margin-bottom: 8px;

    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.sq-mod-note__text {
    color: #b8b8c0;
    font-size: 13px;
    line-height: 1.7;
}

.sq-mod-note__footer {
    margin-top: 12px;
    padding-top: 12px;

    border-top: 1px solid #232329;

    color: #e7e7eb;
    font-size: 13px;
}

.sq-mod-note__footer strong {
    color: #ff8a17;
}