/* Research Notes shares the portfolio navigation and uses an editorial reading layout. */
.research-notes {
    color: #252c33;
}

.research-notes #content.row {
    margin-left: 0;
}

.research-notes #main {
    box-sizing: border-box;
    float: none;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

.notes-header {
    padding: 48px 0 34px;
    border-bottom: 2px solid #27333f;
}

.notes-eyebrow,
.research-notes .post-kicker {
    margin: 0 0 18px;
    color: #80534b;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.notes-header h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.notes-intro {
    max-width: 650px;
    margin: 0;
    color: #5b636b;
    font-size: 16px;
    line-height: 1.75;
}

.notes-archive-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 0 4px;
}

.notes-archive-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
}

.notes-archive-heading p {
    margin: 0;
    color: #68727b;
    font-size: 12px;
}

.notes-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.notes-list > li {
    padding: 30px 0;
    border-bottom: 1px solid #dfe3e7;
}

.note-entry {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.notes-list > li:first-child {
    grid-column: 1 / -1;
}

.notes-list > li:first-child .note-entry {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
    align-items: center;
    gap: 36px;
}

.notes-list > li:first-child h3 {
    font-size: 32px;
}

.note-cover {
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #e0e4e8;
    background: #f2f4f5;
}

.note-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.note-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 16px;
    margin: 0 0 8px;
    color: #68727b;
    font-size: 11px;
    line-height: 1.5;
}

.note-meta > span {
    color: #80534b;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.note-entry h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.note-entry h3 a {
    color: #243949;
    text-decoration: none;
}

.note-entry h3 a:hover {
    color: #80534b;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.research-notes a:focus-visible {
    outline: 2px solid #80534b;
    outline-offset: 4px;
}

.note-summary {
    margin: 0 0 12px;
    color: #535d65;
    font-size: 14px;
    line-height: 1.65;
}

.note-topics {
    display: block;
    color: #68727b;
    font-size: 11px;
    line-height: 1.6;
}

.note-content {
    min-width: 0;
}

.note-citation {
    margin-top: 14px;
    color: #68727b;
    font-size: 12px;
    line-height: 1.6;
}

.note-citation summary {
    width: fit-content;
    padding: 4px 0;
    cursor: pointer;
}

.note-citation summary span {
    margin-left: 8px;
    color: #80534b;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.note-citation summary:focus-visible {
    outline: 2px solid #80534b;
    outline-offset: 4px;
}

.note-citation p {
    margin: 10px 0;
    font-size: 12px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.note-citation pre {
    padding: 14px;
    border: 1px solid #e1e5e8;
    border-radius: 0;
    background: #f7f8f9;
    color: #46515b;
    font-size: 11px;
    line-height: 1.7;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: normal;
}

.post-citation {
    margin-top: 30px;
    padding-top: 14px;
    border-top: 1px solid #dfe3e7;
}

.note-engagement {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 16px;
    margin-top: 12px;
    color: #68727b;
    font-size: 12px;
    line-height: 1.5;
}

.notes-archive .note-reads {
    display: none;
}

.note-like {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    margin: 0;
    padding: 4px 9px;
    border: 1px solid #dfe3e7;
    border-radius: 3px;
    background: transparent;
    color: #596773;
    font: inherit;
    cursor: pointer;
}

.note-like .fa {
    font-size: 16px;
}

.note-like:hover:not(:disabled),
.note-like[aria-pressed="true"] {
    border-color: #80534b;
    color: #80534b;
    background: #faf6f4;
}

.note-like:focus-visible {
    outline: 2px solid #80534b;
    outline-offset: 3px;
}

.note-like:disabled {
    cursor: default;
    color: #858b91;
}

.note-metrics-status {
    color: #737c85;
    font-size: 11px;
}

.note-metrics-status:empty {
    display: none;
}

.post-engagement {
    margin: -14px 0 28px;
}

.research-notes #main.notes-article {
    max-width: 800px;
}

.research-notes .post-header {
    margin: 0;
    padding: 44px 0 20px;
    border: 0;
}

.research-notes .post-header h1 {
    margin: 0;
    color: #252c33;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 41px;
    font-weight: 400;
    line-height: 1.16;
    letter-spacing: -0.025em;
    text-align: left;
}

.research-notes .post-meta {
    margin: 0 0 28px;
    color: #68727b;
    font-size: 12px;
    line-height: 1.7;
    text-align: left;
}

.research-notes .post-cover {
    margin: 0 0 30px;
}

.research-notes .post-cover video,
.research-notes .post-cover img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #eef0f2;
}

.research-notes .post-cover figcaption {
    margin-top: 10px;
    color: #68727b;
    font-size: 12px;
    line-height: 1.6;
}

.research-notes .post-body {
    font-size: 16px;
    line-height: 1.8;
}

.research-notes .post-body p,
.research-notes .post-body li {
    font-size: inherit;
    line-height: inherit;
}

.research-notes .post-body .post-source {
    font-size: 13px;
}

.research-notes .post-body h2 {
    margin-top: 32px;
    font-size: 22px;
}

.research-notes .post-nav {
    padding-top: 20px;
    border-top-color: #dfe3e7;
    font-size: 13px;
}

@media (min-width: 768px) and (max-width: 979px) {
    .notes-list > li:first-child .note-entry {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .notes-list > li:first-child h3 {
        font-size: 27px;
    }
}

@media (max-width: 767px) {
    .notes-header {
        padding: 28px 0;
    }

    .notes-header h1 {
        font-size: 39px;
    }

    .notes-eyebrow,
    .research-notes .post-kicker {
        font-size: 10px;
    }

    .notes-intro {
        font-size: 15px;
    }

    .notes-list,
    .notes-list > li:first-child .note-entry {
        grid-template-columns: minmax(0, 1fr);
    }

    .note-entry,
    .notes-list > li:first-child .note-entry {
        gap: 18px;
    }

    .note-entry h3,
    .notes-list > li:first-child h3 {
        font-size: 25px;
    }

    .notes-list > li {
        padding: 24px 0;
    }

    .research-notes .post-header {
        padding-top: 24px;
    }

    .research-notes .post-header h1 {
        font-size: 33px;
    }

    .research-notes .post-body {
        font-size: 15px;
    }
}
