.field-notes-cta {
    padding: 8px 0 calc(var(--nv-section-space) + 10px);
}

.field-notes-cta__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    gap: clamp(18px, 3vw, 26px);
    width: 100%;
    padding: clamp(30px, 4vw, 52px);
    border: 0;
    border-radius: 32px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 38%, rgba(255, 255, 255, 0.7) 58%, rgba(255, 255, 255, 0.18) 100%),
        var(--field-notes-cta-image, linear-gradient(180deg, rgba(241, 245, 248, 0.96) 0%, rgba(236, 241, 245, 0.94) 100%));
    background-position: left top, center center;
    background-size: auto, cover;
    background-repeat: no-repeat;
    box-shadow: 0 18px 42px rgba(15, 23, 32, 0.035), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.field-notes-cta__copy {
    min-width: 0;
    max-width: 640px;
}

.field-notes-cta__eyebrow {
    margin: 0 0 12px;
    color: rgba(22, 32, 42, 0.5);
    font-family: var(--nv-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.field-notes-cta__title {
    max-width: 14ch;
    margin: 0;
    color: #16202a;
    font-family: var(--nv-font-heading);
    font-size: clamp(1.95rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.field-notes-cta__body {
    max-width: 54ch;
    margin: 16px 0 0;
    color: rgba(22, 32, 42, 0.66);
    font-family: var(--nv-font-body);
    font-size: 0.96rem;
    line-height: 1.72;
}

.field-notes-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
    padding-top: 2px;
}

.field-notes-cta__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #16202a;
    background: rgba(255, 255, 255, 0.84);
    font-family: var(--nv-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.field-notes-cta__link::after {
    content: "\2197";
    font-size: 0.95em;
}

.field-notes-cta__link:hover,
.field-notes-cta__link:focus-visible {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-1px);
}

.field-notes-cta__link--primary {
    color: #eef3ef;
    background: #21453b;
    border-color: #21453b;
}

.field-notes-cta__link--primary:hover,
.field-notes-cta__link--primary:focus-visible {
    color: #eef3ef;
    background: #18342d;
    border-color: #18342d;
}

@media (max-width: 991px) {
    .field-notes-cta__panel {
        gap: 22px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.84) 44%, rgba(255, 255, 255, 0.48) 100%),
            var(--field-notes-cta-image, linear-gradient(180deg, rgba(241, 245, 248, 0.96) 0%, rgba(236, 241, 245, 0.94) 100%));
        background-position: left top, center center;
        background-size: auto, cover;
        background-repeat: no-repeat;
    }

    .field-notes-cta__title {
        max-width: none;
    }

    .field-notes-cta__body {
        max-width: 60ch;
    }
}

@media (max-width: 575px) {
    .field-notes-cta {
        padding-bottom: calc(var(--nv-section-space) - 12px);
    }

    .field-notes-cta__panel {
        padding: 22px 18px;
        border-radius: 26px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.84) 52%, rgba(255, 255, 255, 0.56) 100%),
            var(--field-notes-cta-image, linear-gradient(180deg, rgba(241, 245, 248, 0.96) 0%, rgba(236, 241, 245, 0.94) 100%));
        background-position: left top, center center;
        background-size: auto, cover;
        background-repeat: no-repeat;
    }

    .field-notes-cta__title {
        font-size: 1.98rem;
    }

    .field-notes-cta__body {
        font-size: 0.93rem;
        line-height: 1.68;
    }

    .field-notes-cta__actions {
        gap: 10px;
        width: 100%;
    }

    .field-notes-cta__link {
        width: 100%;
        min-height: 44px;
        font-size: 0.87rem;
        padding: 0 16px;
    }
}


