.field-notes {
    display: flex;
    flex-direction: column;

    & .field-notes-header {
        display: flex;
        flex-direction: column;
        padding: 3rem;
        align-items: center;
        text-align: center;

        & h2 {
            font-size: 3rem;
            color: var(--accent-gold);
        }

        & h3 {
            font-size: 1.5rem;
        }

        & p {
            max-width: 75%;
        }

        & .sub {
            font-style: italic;
            color: var(--text-secondary);
        }
    }

    & .main-field-notes-index {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 2rem;

        & .field-note-preview {
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1rem;
            box-shadow: 1px 1px 1px 0 var(--bg-elevated);

            & h3 {
                padding: 1rem;
                border-bottom: 1px solid var(--border);
                width: 100%;
                text-align: center;
                font-size: 1.5rem;

                & a {
                    color: var(--accent-gold);
                }
            }

            & .preview-container {
                color: var(--text-muted);
                font-style: italic;
                font-size: .7rem;
            }
        }
    }
}


.field-note {
    display: flex;
    flex-direction: column;

    & pre {
        white-space: pre-wrap;
    }

    & header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5rem 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid var(--border);

        & h3 {
            font-size: 2rem;
            color: var(--accent-gold);
        }
    }

    & .main-field-note {
        h3 {
            color: var(--accent-gold);
            font-size: 1.2rem;
        }

        & blockquote {
            color: var(--accent-gold);
        }
    }
}







@media screen and (max-width: 900px) {
    .field-notes {

        & .field-notes-header {
            & p {
                max-width: 100%;
            }
        }

        & .main-field-notes-index {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .field-note {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}