/* Note Callout Element - Root */
.fx-element.note-callout-element,
.note-callout-element {
    border-radius: var(--Corner-Radius-m, 8px);
    background: var(--Color-Palette-Primary-Light-Blue, #F7FAFC);
    padding: var(--spacing-s-3) var(--spacing-s-4);
    border-left: 3px solid #61B2DE;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Note Callout Element - Container */
.note-callout-element .note-callout-element__container {
    /* Add container-specific styles if needed */
}

/* Note Callout Element - Content */
.note-callout-element .note-callout-element__container .note-callout-element__content {
    /* Add content-specific styles if needed */
}

/* Note Callout Element - Title */
.note-callout-element .note-callout-element__container .note-callout-element__content .note-callout-element__title,
.note-callout-element .note-callout-element__title {
    color: var(--Color-Palette-Primary-Navy, #0D0F33);
    font-family: var(--font-primary);
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    padding-bottom: var(--spacing-s-1);
    text-align: left!important;
}

.note-callout-element .note-callout-element__description {
    color: var(--Text-text-primary, #0D0F33);
    font-family: var(--font-secondary);
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    text-align: left!important;
}

/* Note Callout Element - Description */
.note-callout-element .note-callout-element__container .note-callout-element__content .note-callout-element__description,
.note-callout-element .note-callout-element__description {
    /* Add description-specific styles if needed */
}

/* Note Callout Element - Description Paragraph */
.note-callout-element .note-callout-element__container .note-callout-element__content .note-callout-element__description p,
.note-callout-element .note-callout-element__description p {
    color: var(--Text-Colors-text-primary, #1E212B);
    font-family: var(--font-secondary);
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 0;
}

/* Note Callout Element - Description Links */
.note-callout-element .note-callout-element__container .note-callout-element__content .note-callout-element__description p a,
.note-callout-element .note-callout-element__description p a {
    /* Add link-specific styles if needed */
}

