.field-notes-note {
    padding: 4px 0 calc(var(--nv-section-space) - 12px);
}

.field-notes-note__frame {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
    gap: clamp(22px, 3.2vw, 34px);
    align-items: stretch;
}

.field-notes-note__aside {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.field-notes-note__media {
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(240, 238, 232, 0.8);
    box-shadow: 0 22px 56px rgba(15, 23, 32, 0.06);
}

.field-notes-note__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.field-notes-note__media--primary img {
    aspect-ratio: 5 / 6;
}

.field-notes-note__media--secondary img {
    aspect-ratio: 4 / 3;
}

.field-notes-note__copy {
    align-self: end;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(15, 23, 32, 0.08);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 242, 0.96) 100%);
    box-shadow: 0 18px 48px rgba(15, 23, 32, 0.05);
}

.field-notes-note__eyebrow {
    margin: 0 0 10px;
    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-note__title {
    max-width: 13ch;
    margin: 0;
    color: #16202a;
    font-family: var(--nv-font-heading);
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

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

@media (max-width: 991px) {
    .field-notes-note__frame {
        grid-template-columns: 1fr;
    }

    .field-notes-note__aside {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
    }

    .field-notes-note__copy {
        align-self: stretch;
    }

    .field-notes-note__title,
    .field-notes-note__body {
        max-width: none;
    }
}

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

    .field-notes-note__frame,
    .field-notes-note__aside {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .field-notes-note__media,
    .field-notes-note__copy {
        border-radius: 22px;
    }

    .field-notes-note__media--primary img,
    .field-notes-note__media--secondary img {
        aspect-ratio: 5 / 6;
    }

    .field-notes-note__copy {
        padding: 20px 18px;
    }

    .field-notes-note__title {
        font-size: 1.84rem;
    }

    .field-notes-note__body {
        font-size: 0.92rem;
        line-height: 1.66;
    }
}
