.elementor-widget-notabene-infobox {
    width: 100%;
}

.notabene-infobox {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--Grey-100);
    border-radius: 16px;
    padding: var(--32-base-unit, 32px);
}

.notabene-infobox-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--32-base-unit, 32px);
}

.notabene-infobox-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--Red, #F4364C);
    border-radius: 500px;
    color: white;
}

.notabene-infobox-icon i,
.notabene-infobox-icon svg {
    width: 20px;
    height: 20px;
}

.notabene-infobox-title {
    margin: 0;
}

.notabene-infobox-description {
    font-size: var(--e-global-typography-dfd24a5-font-size);
    line-height: var(--e-global-typography-dfd24a5-line-height);
}
.notabene-infobox-description ~ .notabene-infobox-buttons {
    padding-top: var(--64-base-unit, 64px);
}

.notabene-infobox-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 8px;
    margin-top: auto;
}

.notabene-infobox-button {
    display: flex;
    width: 100%;
    min-width: 225px;
    padding: var(--16-base-unit, 16px) var(--32-base-unit, 32px);
    justify-content: center;
    align-items: center;
    gap: var(--4-base-unit, 4px);

    border-radius: var(--32-base-unit, 32px);
    background: var(--CTA, #03082B);
    color: var(--White, #FFF);
    text-align: center;

    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.65px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.notabene-infobox-button:hover {
    background: var(--CTA-Special, #F4364C);
    color: var(--White, #FFF);
}

.notabene-infobox-button i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .notabene-infobox {
        padding: 16px;
    }
    .notabene-infobox-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 4px;
    }
    .notabene-infobox-icon {
        width: 12px;
        height: 12px;
    }
    .notabene-infobox-icon i, .notabene-infobox-icon svg {
        display: none;
    }
    .notabene-infobox-buttons {
        grid-template-columns: 1fr;
    }
    .notabene-infobox-button {
        padding: var(--8-base-unit, 8px) var(--32-base-unit, 32px);
    }
}