:root {
    --avlc-navy: #071827;
    --avlc-navy-soft: #102b40;
    --avlc-blue: #183f5c;
    --avlc-paper: #f6f1e8;
    --avlc-paper-deep: #ece2d3;
    --avlc-ivory: #fffdf8;
    --avlc-ink: #15212a;
    --avlc-muted: #665f56;
    --avlc-gold: #b88a45;
    --avlc-gold-light: #e4c58e;
    --avlc-line: rgba(27, 43, 54, .16);
    --avlc-line-gold: rgba(184, 138, 69, .38);
    --avlc-max: 1480px;
    --avlc-copy: 720px;
    --avlc-shadow: 0 24px 60px rgba(7, 24, 39, .12);
}

body.avlc-page {
    background: var(--avlc-paper);
    color: var(--avlc-ink);
}

.avlc-page .content-area,
.avlc-page .site-main,
.avlc-page .avlc-preview-main,
.avlc-page .content-container,
.avlc-page .entry-content-wrap,
.avlc-page .entry-content {
    max-width: none;
    margin: 0;
    padding: 0;
}

.avlc-page .content-container.site-container {
    width: 100%;
}

.avlc-page .entry-header,
.avlc-page .entry-hero-container-inner,
.avlc-page .entry-footer,
.avlc-page .comments-area {
    display: none !important;
}

.avlc-page .site-main > article,
.avlc-page .entry-content-wrap {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.avlc-page .entry-content > :first-child,
.avlc-page .entry-content > :last-child {
    margin-top: 0;
    margin-bottom: 0;
}

.avlc-shell,
.avlc-shell *,
.avlc-shell *::before,
.avlc-shell *::after {
    box-sizing: border-box;
}

.avlc-shell {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: clip;
    background: var(--avlc-paper);
    color: var(--avlc-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
}

.avlc-shell :where(h1, h2, h3, p, ol, ul, figure) {
    margin-top: 0;
}

.avlc-shell a,
.avlc-shell button,
.avlc-shell input {
    font: inherit;
}

.avlc-shell img {
    max-width: 100%;
}

.avlc-shell :where(a, button, input):focus-visible {
    outline: 3px solid var(--avlc-gold-light);
    outline-offset: 4px;
}

.avlc-wrap {
    width: min(calc(100% - 88px), var(--avlc-max));
    margin-inline: auto;
}

.avlc-eyebrow,
.avlc-section-kicker,
.avlc-card-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.avlc-eyebrow,
.avlc-section-kicker {
    color: var(--avlc-gold);
}

.avlc-section-kicker {
    margin-bottom: 15px;
}

.avlc-card-label {
    margin-bottom: 10px;
    color: #8a6328;
}

.avlc-hero {
    position: relative;
    min-height: 760px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
    background:
        radial-gradient(circle at 20% 18%, rgba(64, 118, 153, .20), transparent 34%),
        linear-gradient(132deg, #061521 0%, #0c2538 54%, #143952 100%);
    color: #fff;
}

.avlc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.avlc-hero__copy {
    position: relative;
    z-index: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 118px 68px 94px max(52px, calc((100vw - var(--avlc-max)) / 2));
}

.avlc-hero .avlc-eyebrow {
    margin-bottom: 24px;
    color: #e7c98f;
}

.avlc-hero h1 {
    max-width: 700px;
    margin-bottom: 28px;
    color: #fff;
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(72px, 8.2vw, 132px);
    font-weight: 600;
    letter-spacing: -.055em;
    line-height: .79;
    text-wrap: balance;
}

.avlc-hero__standfirst {
    max-width: 660px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .85);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(23px, 2vw, 31px);
    line-height: 1.38;
    text-wrap: pretty;
}

.avlc-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 28px;
}

.avlc-button,
.avlc-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-decoration: none;
    text-transform: uppercase;
}

.avlc-button {
    padding: 13px 22px;
    border: 1px solid transparent;
}

.avlc-button--light {
    background: var(--avlc-ivory);
    color: var(--avlc-navy);
}

.avlc-button--light:hover {
    background: #f1dfbd;
    color: var(--avlc-navy);
}

.avlc-text-link {
    min-height: auto;
    color: #ebcf99;
}

.avlc-text-link:hover {
    color: #fff;
}

.avlc-text-link span {
    margin-left: 7px;
    font-size: 17px;
}

.avlc-hero__portraits {
    position: relative;
    z-index: 1;
    min-width: 0;
    height: 760px;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(0, 1fr));
    gap: 10px;
    padding: 10px 10px 10px 0;
    background: rgba(3, 13, 22, .48);
}

.avlc-hero__portraits::before {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 0 auto 0 0;
    width: 28%;
    pointer-events: none;
    background: linear-gradient(90deg, #0b2436, transparent);
}

.avlc-hero-portrait {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: #17354a;
    color: #fff;
    text-decoration: none;
}

.avlc-hero-portrait--1 { grid-column: 1 / 5; grid-row: 1 / 6; }
.avlc-hero-portrait--2 { grid-column: 5 / 9; grid-row: 1 / 4; }
.avlc-hero-portrait--3 { grid-column: 5 / 7; grid-row: 4 / 7; }
.avlc-hero-portrait--4 { grid-column: 7 / 9; grid-row: 4 / 9; }
.avlc-hero-portrait--5 { grid-column: 1 / 3; grid-row: 6 / 9; }
.avlc-hero-portrait--6 { grid-column: 3 / 7; grid-row: 7 / 9; }

.avlc-hero-portrait::after,
.avlc-latest-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 52%, rgba(3, 15, 24, .74));
}

.avlc-shell .avlc-hero-portrait > img.avlc-image,
.avlc-shell .avlc-latest-card__media > img.avlc-image,
.avlc-shell .avlc-profile-item__media > img.avlc-image {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

.avlc-hero-portrait img {
    object-position: var(--avlc-focal-x, 50%) var(--avlc-focal-y, 18%);
    filter: saturate(.88) contrast(1.03) brightness(.92);
    transition: transform 600ms cubic-bezier(.2, .75, .2, 1), filter 300ms ease;
}

.avlc-hero-portrait--profile-2646 img {
    object-position: 50% 50%;
}

.avlc-hero-portrait:hover img,
.avlc-hero-portrait:focus-visible img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.02) brightness(.98);
}

.avlc-hero-portrait > span:not(.avlc-image-fallback) {
    position: absolute;
    z-index: 3;
    inset: auto 16px 14px;
    color: rgba(255, 255, 255, .92);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(15px, 1.1vw, 20px);
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.avlc-image-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #244a64, #102a3c);
    color: rgba(255, 255, 255, .76);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: 64px;
}

.avlc-manifesto {
    padding: 92px 0 96px;
    border-bottom: 1px solid var(--avlc-line-gold);
    background:
        radial-gradient(circle at 84% 12%, rgba(184, 138, 69, .1), transparent 28%),
        var(--avlc-paper);
}

.avlc-manifesto__grid {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
    gap: 78px;
    align-items: start;
}

.avlc-manifesto h2,
.avlc-section-head h2,
.avlc-collection__head h2 {
    margin-bottom: 0;
    color: var(--avlc-navy);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .98;
}

.avlc-manifesto h2 {
    max-width: 520px;
    font-size: clamp(54px, 5vw, 82px);
}

.avlc-manifesto__copy {
    max-width: 760px;
    padding-top: 4px;
}

.avlc-manifesto__copy p {
    margin-bottom: 20px;
    color: #3d454b;
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(23px, 2.1vw, 31px);
    line-height: 1.47;
    text-wrap: pretty;
}

.avlc-manifesto__copy p:last-child {
    margin-bottom: 0;
    color: var(--avlc-muted);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.75;
}

.avlc-latest {
    padding: 94px 0 110px;
    background: var(--avlc-ivory);
}

.avlc-section-head,
.avlc-collection__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 46px;
}

.avlc-section-head h2,
.avlc-collection__head h2 {
    font-size: clamp(48px, 4.7vw, 76px);
}

.avlc-section-head > a {
    flex: 0 0 auto;
    margin-bottom: 7px;
    color: #765323;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.avlc-section-head > a:hover {
    color: var(--avlc-navy);
}

.avlc-latest__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
}

.avlc-latest-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(200px, 46%) minmax(0, 1fr);
    min-height: 292px;
    overflow: hidden;
    border: 1px solid rgba(15, 39, 55, .13);
    background: var(--avlc-paper);
    box-shadow: 0 12px 32px rgba(7, 24, 39, .055);
}

.avlc-latest-card--lead {
    grid-column: span 7;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    min-height: 610px;
}

.avlc-latest-card:nth-child(2),
.avlc-latest-card:nth-child(3) {
    grid-column: span 5;
}

.avlc-latest-card:nth-child(n+4) {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    min-height: 440px;
}

.avlc-latest-card__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #183a52;
}

.avlc-latest-card--lead .avlc-latest-card__media {
    min-height: 340px;
}

.avlc-latest-card:nth-child(n+4) .avlc-latest-card__media {
    min-height: 230px;
}

.avlc-latest-card__media img {
    object-position: var(--avlc-focal-x, 50%) var(--avlc-focal-y, 18%);
    transition: transform 450ms ease;
}

.avlc-latest-card:hover .avlc-latest-card__media img {
    transform: scale(1.02);
}

.avlc-latest-card__copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px 26px 28px;
}

.avlc-latest-card--lead .avlc-latest-card__copy {
    padding: 32px 36px 38px;
}

.avlc-latest-card h3,
.avlc-profile-item h3 {
    margin-bottom: 12px;
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.04;
}

.avlc-latest-card h3 {
    font-size: clamp(31px, 2.6vw, 44px);
}

.avlc-latest-card h3 a,
.avlc-profile-item h3 a {
    color: var(--avlc-navy);
    text-decoration: none;
}

.avlc-latest-card h3 a:hover,
.avlc-profile-item h3 a:hover {
    color: #8b6126;
}

.avlc-latest-card__copy > p:not(.avlc-card-label) {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 18px;
    color: var(--avlc-muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.avlc-latest-card__copy time {
    margin-top: auto;
    color: #8a8175;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.avlc-fields {
    padding: 106px 0 116px;
    background:
        radial-gradient(circle at 82% 0, rgba(51, 99, 128, .2), transparent 30%),
        linear-gradient(145deg, #071827, #0d2a3d 68%, #12374e);
    color: #fff;
}

.avlc-section-head--inverse {
    align-items: end;
}

.avlc-section-head--inverse h2,
.avlc-section-head--inverse .avlc-section-kicker {
    color: #fff;
}

.avlc-section-head--inverse .avlc-section-kicker {
    color: #e0bc79;
}

.avlc-section-head--inverse > p {
    max-width: 360px;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .58);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: 22px;
    line-height: 1.35;
    text-align: right;
}

.avlc-fields__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(229, 196, 137, .28);
    border-left: 1px solid rgba(229, 196, 137, .28);
}

.avlc-field-card {
    position: relative;
    min-height: 238px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 16px 28px;
    padding: 34px 36px 31px;
    border: 0;
    border-right: 1px solid rgba(229, 196, 137, .28);
    border-bottom: 1px solid rgba(229, 196, 137, .28);
    border-radius: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.avlc-field-card:hover,
.avlc-field-card[aria-pressed="true"] {
    background: #f5ead8;
    color: var(--avlc-navy);
}

.avlc-field-card strong {
    grid-column: 1;
    grid-row: 1;
    max-width: 540px;
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(29px, 2.35vw, 40px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.02;
}

.avlc-field-card > span {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 580px;
    color: rgba(255, 255, 255, .64);
    font-size: 14px;
    line-height: 1.65;
}

.avlc-field-card:hover > span,
.avlc-field-card[aria-pressed="true"] > span {
    color: #5f5a52;
}

.avlc-field-card em {
    grid-column: 1 / -1;
    grid-row: 3;
    color: #e3c68e;
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.avlc-field-card:hover em,
.avlc-field-card[aria-pressed="true"] em {
    color: #80581f;
}

.avlc-field-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.avlc-collection {
    padding: 110px 0 128px;
    background:
        linear-gradient(180deg, rgba(184, 138, 69, .055), transparent 250px),
        var(--avlc-paper);
}

.avlc-collection__head {
    align-items: start;
    margin-bottom: 38px;
}

.avlc-collection__head > p {
    max-width: 500px;
    margin-top: 35px;
    margin-bottom: 0;
    color: var(--avlc-muted);
    font-size: 14px;
    line-height: 1.7;
}

.avlc-tools {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: end;
    margin-bottom: 26px;
    padding: 28px 30px 30px;
    border: 1px solid var(--avlc-line-gold);
    background: rgba(255, 253, 248, .72);
    box-shadow: 0 14px 38px rgba(7, 24, 39, .055);
}

.avlc-search {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.avlc-search > span:first-child {
    color: #6b5e4e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.avlc-search__field {
    min-width: 0;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #7f766b;
}

.avlc-search__field svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #6c655c;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.avlc-search input {
    min-width: 0;
    width: 100%;
    padding: 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--avlc-ink);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(23px, 2vw, 31px);
    line-height: 1.2;
    box-shadow: none;
}

.avlc-search input::placeholder {
    color: #8e877e;
    opacity: 1;
}

.avlc-search input:focus {
    outline: none;
    box-shadow: none;
}

.avlc-tools__status {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 8px;
}

.avlc-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.avlc-tools__status button,
.avlc-active-filter button,
.avlc-empty button {
    border: 0;
    background: transparent;
    color: #81591f;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-transform: uppercase;
    cursor: pointer;
}

.avlc-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    padding: 9px 12px 9px 14px;
    border: 1px solid var(--avlc-line-gold);
    border-radius: 999px;
    background: #fffaf1;
    color: #675e52;
    font-size: 11px;
}

.avlc-active-filter[hidden] {
    display: none !important;
}

.avlc-active-filter strong {
    color: var(--avlc-navy);
}

.avlc-active-filter button {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border-radius: 50%;
    background: #e9dbc3;
    color: var(--avlc-navy);
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}

.avlc-letters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 38px;
    padding: 14px 0;
    border-top: 1px solid var(--avlc-line);
    border-bottom: 1px solid var(--avlc-line);
}

.avlc-letters a {
    min-width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #6c645b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.avlc-letters a:hover,
.avlc-letters a[aria-current="true"] {
    background: var(--avlc-navy);
    color: #fff;
}

.avlc-profile-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.avlc-profile-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 23px;
    min-height: 200px;
    margin: 0;
    padding: 25px 0 26px;
    border-top: 1px solid var(--avlc-line);
}

.avlc-profile-item[hidden] {
    display: none !important;
}

.avlc-profile-item__media {
    width: 108px;
    height: 142px;
    display: block;
    overflow: hidden;
    background: #17374d;
    box-shadow: 0 9px 22px rgba(7, 24, 39, .11);
}

.avlc-profile-item__media img {
    object-position: var(--avlc-focal-x, 50%) var(--avlc-focal-y, 18%);
    filter: saturate(.93) contrast(1.01);
    transition: transform 300ms ease, filter 300ms ease;
}

.avlc-profile-item:hover .avlc-profile-item__media img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.02);
}

.avlc-profile-item__copy {
    min-width: 0;
    align-self: start;
}

.avlc-profile-item h3 {
    margin-bottom: 9px;
    font-size: clamp(29px, 2.2vw, 38px);
}

.avlc-profile-item__deck {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 14px;
    color: var(--avlc-muted);
    font-size: 13px;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.avlc-profile-item__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.avlc-profile-item__topics li {
    margin: 0;
    padding: 4px 8px;
    border: 1px solid rgba(124, 91, 43, .18);
    background: rgba(255, 253, 248, .65);
    color: #786c5e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.25;
    text-transform: uppercase;
}

.avlc-empty {
    padding: 70px 28px;
    border: 1px solid var(--avlc-line-gold);
    background: var(--avlc-ivory);
    text-align: center;
}

.avlc-empty h3 {
    margin-bottom: 11px;
    color: var(--avlc-navy);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: 39px;
    font-weight: 600;
}

.avlc-empty p {
    margin-bottom: 22px;
    color: var(--avlc-muted);
}

.avlc-closing {
    padding: 78px 0 82px;
    border-top: 1px solid rgba(229, 196, 137, .24);
    background: var(--avlc-navy);
    color: #fff;
}

.avlc-closing__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 38px;
    align-items: center;
}

.avlc-closing .avlc-section-kicker {
    margin: 0;
    color: #e1c083;
}

.avlc-closing p:not(.avlc-section-kicker) {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(25px, 2.4vw, 36px);
    line-height: 1.35;
}

.avlc-closing a {
    color: #e7c88d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.avlc-closing a:hover {
    color: #fff;
}

@media (max-width: 1220px) {
    .avlc-wrap {
        width: min(calc(100% - 56px), var(--avlc-max));
    }

    .avlc-hero {
        grid-template-columns: minmax(0, .98fr) minmax(480px, 1.02fr);
    }

    .avlc-hero__copy {
        padding-left: 48px;
        padding-right: 45px;
    }

    .avlc-profile-list {
        column-gap: 36px;
    }
}

@media (max-width: 1100px) {
    .avlc-latest-card--lead,
    .avlc-latest-card:nth-child(2),
    .avlc-latest-card:nth-child(3),
    .avlc-latest-card:nth-child(n+4) {
        grid-column: span 6;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        min-height: 480px;
    }

    .avlc-latest-card__media,
    .avlc-latest-card--lead .avlc-latest-card__media,
    .avlc-latest-card:nth-child(n+4) .avlc-latest-card__media {
        min-height: 250px;
    }
}

@media (max-width: 980px) {
    .avlc-hero {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .avlc-hero__copy {
        min-height: 620px;
        padding: 116px 48px 74px;
    }

    .avlc-hero__portraits {
        height: 630px;
        min-height: 0;
        padding-left: 10px;
    }

    .avlc-hero__portraits::before {
        display: none;
    }

    .avlc-manifesto__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .avlc-latest-card--lead,
    .avlc-latest-card:nth-child(2),
    .avlc-latest-card:nth-child(3),
    .avlc-latest-card:nth-child(n+4) {
        grid-column: span 6;
        grid-row: auto;
        display: flex;
        flex-direction: column;
        min-height: 480px;
    }

    .avlc-latest-card__media,
    .avlc-latest-card--lead .avlc-latest-card__media,
    .avlc-latest-card:nth-child(n+4) .avlc-latest-card__media {
        min-height: 250px;
    }

    .avlc-fields__grid {
        grid-template-columns: 1fr;
    }

    .avlc-profile-list {
        grid-template-columns: 1fr;
    }

    .avlc-profile-item {
        min-height: 0;
    }

    .avlc-closing__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 720px) {
    .avlc-wrap {
        width: min(calc(100% - 36px), var(--avlc-max));
    }

    .avlc-shell {
        font-size: 16px;
    }

    .avlc-hero__copy {
        min-height: 585px;
        padding: 98px 24px 62px;
    }

    .avlc-hero h1 {
        font-size: clamp(68px, 24vw, 98px);
    }

    .avlc-hero__standfirst {
        font-size: 24px;
    }

    .avlc-hero__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .avlc-hero__portraits {
        height: 590px;
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 7px;
        padding: 7px;
    }

    .avlc-hero-portrait--1,
    .avlc-hero-portrait--2,
    .avlc-hero-portrait--3,
    .avlc-hero-portrait--4,
    .avlc-hero-portrait--5,
    .avlc-hero-portrait--6 {
        grid-column: auto;
        grid-row: auto;
    }

    .avlc-hero-portrait > span:not(.avlc-image-fallback) {
        inset: auto 10px 10px;
        font-size: 15px;
    }

    .avlc-manifesto,
    .avlc-latest,
    .avlc-fields,
    .avlc-collection {
        padding-top: 74px;
        padding-bottom: 82px;
    }

    .avlc-manifesto h2,
    .avlc-section-head h2,
    .avlc-collection__head h2 {
        font-size: 52px;
    }

    .avlc-manifesto__copy p {
        font-size: 23px;
    }

    .avlc-section-head,
    .avlc-collection__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 34px;
    }

    .avlc-section-head > a,
    .avlc-collection__head > p,
    .avlc-section-head--inverse > p {
        margin: 0;
        text-align: left;
    }

    .avlc-latest__grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .avlc-latest-card--lead,
    .avlc-latest-card:nth-child(2),
    .avlc-latest-card:nth-child(3),
    .avlc-latest-card:nth-child(n+4) {
        grid-column: 1;
        min-height: 0;
    }

    .avlc-latest-card__media,
    .avlc-latest-card--lead .avlc-latest-card__media,
    .avlc-latest-card:nth-child(n+4) .avlc-latest-card__media {
        min-height: 285px;
    }

    .avlc-latest-card__copy,
    .avlc-latest-card--lead .avlc-latest-card__copy {
        padding: 27px 24px 30px;
    }

    .avlc-field-card {
        min-height: 230px;
        padding: 28px 25px 26px;
    }

    .avlc-field-card strong {
        font-size: 31px;
    }

    .avlc-tools {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 23px 21px 24px;
    }

    .avlc-tools__status {
        justify-content: space-between;
        padding: 0;
    }

    .avlc-letters {
        gap: 4px;
    }

    .avlc-letters a {
        min-width: 34px;
        height: 34px;
        padding: 0 8px;
        font-size: 10px;
    }

    .avlc-profile-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 17px;
        padding: 22px 0 23px;
    }

    .avlc-profile-item__media {
        width: 84px;
        height: 112px;
    }

    .avlc-profile-item h3 {
        font-size: 28px;
    }

    .avlc-profile-item__deck {
        -webkit-line-clamp: 5;
    }

    .avlc-profile-item__topics {
        display: none;
    }

    .avlc-closing {
        padding: 64px 0 68px;
    }
}

@media (max-width: 430px) {
    .avlc-hero__copy {
        padding-inline: 20px;
    }

    .avlc-hero__portraits {
        height: 520px;
        min-height: 0;
    }

    .avlc-profile-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }

    .avlc-profile-item__media {
        width: 72px;
        height: 96px;
    }

    .avlc-profile-item h3 {
        font-size: 25px;
    }

    .avlc-profile-item__deck {
        font-size: 12px;
    }
}

/* The public index is organized into true surname sections. */
.avlc-hero,
.avlc-hero__portraits {
    min-height: 720px;
    height: 720px;
}

.avlc-hero h1 {
    margin-bottom: 44px;
}

.avlc-latest {
    border-top: 1px solid var(--avlc-line-gold);
}

.avlc-directory-toolbar {
    position: sticky;
    top: 0;
    z-index: 30;
    margin-bottom: 52px;
    padding-top: 1px;
    background: rgba(246, 241, 232, .98);
    box-shadow: 0 16px 30px rgba(7, 24, 39, .07);
    backdrop-filter: blur(12px);
}

.avlc-directory-toolbar .avlc-tools {
    margin-bottom: 0;
    border-bottom: 0;
    box-shadow: none;
}

.avlc-directory-toolbar .avlc-letters {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    margin: 0;
    padding: 11px 8px 13px;
    border: 1px solid var(--avlc-line-gold);
    border-top: 1px solid var(--avlc-line);
    background: rgba(255, 253, 248, .86);
    scrollbar-width: thin;
    scrollbar-color: rgba(24, 63, 92, .35) transparent;
}

.avlc-letters a {
    flex: 0 0 auto;
}

.avlc-letters a[aria-disabled="true"] {
    opacity: .25;
    pointer-events: none;
}

.avlc-letter-groups {
    display: grid;
    gap: 68px;
}

.avlc-letter-group {
    min-width: 0;
    scroll-margin-top: 178px;
}

.avlc-letter-group[hidden] {
    display: none !important;
}

.avlc-letter-group__head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    margin-bottom: 4px;
}

.avlc-letter-group__head h3 {
    margin: 0;
    color: var(--avlc-navy);
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(74px, 7vw, 112px);
    font-weight: 600;
    letter-spacing: -.065em;
    line-height: .78;
}

.avlc-letter-group__head > span {
    height: 1px;
    background: linear-gradient(90deg, var(--avlc-gold), rgba(184, 138, 69, .08));
}

.avlc-profile-item h4 {
    margin-bottom: 9px;
    font-family: "Libre Caslon Display", "EB Garamond", Georgia, serif;
    font-size: clamp(29px, 2.2vw, 38px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.04;
}

.avlc-profile-item h4 a {
    color: var(--avlc-navy);
    text-decoration: none;
}

.avlc-profile-item h4 a:hover {
    color: #8b6126;
}

.avlc-profile-item__topics li {
    padding: 0;
    border: 0;
    background: transparent;
}

.avlc-profile-item__topics button {
    display: block;
    margin: 0;
    padding: 4px 8px;
    border: 1px solid rgba(124, 91, 43, .18);
    border-radius: 0;
    background: rgba(255, 253, 248, .65);
    color: #786c5e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1.25;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
}

.avlc-profile-item__topics button:hover,
.avlc-profile-item__topics button:focus-visible {
    border-color: rgba(124, 91, 43, .48);
    background: #fff9ee;
    color: var(--avlc-navy);
}

@media (max-width: 980px) {
    .avlc-hero {
        min-height: 0;
        height: auto;
    }

    .avlc-hero__portraits {
        min-height: 0;
        height: 630px;
    }

    .avlc-letter-group {
        scroll-margin-top: 174px;
    }
}

@media (max-width: 720px) {
    .avlc-hero__copy {
        min-height: 470px;
    }

    .avlc-hero__portraits {
        height: 590px;
    }

    .avlc-directory-toolbar {
        position: static;
        margin-bottom: 42px;
        box-shadow: none;
        backdrop-filter: none;
    }

    .avlc-directory-toolbar .avlc-letters {
        padding-inline: 4px;
    }

    .avlc-letter-groups {
        gap: 56px;
    }

    .avlc-letter-group {
        scroll-margin-top: 24px;
    }

    .avlc-letter-group__head {
        gap: 15px;
    }

    .avlc-letter-group__head h3 {
        font-size: 68px;
    }

    .avlc-profile-item h4 {
        font-size: 28px;
    }
}

@media (max-width: 430px) {
    .avlc-hero__copy {
        min-height: 440px;
    }

    .avlc-hero__portraits {
        height: 520px;
    }

    .avlc-letter-group__head h3 {
        font-size: 60px;
    }

    .avlc-profile-item h4 {
        font-size: 25px;
    }
}

/* Restrained masthead and balanced editorial cards. */
.avlc-hero {
    min-height: 500px;
    height: auto;
    grid-template-columns: 1fr;
}

.avlc-hero__copy {
    min-height: 500px;
    padding: 94px max(52px, calc((100vw - var(--avlc-max)) / 2));
}

.avlc-hero h1 {
    margin-bottom: 36px;
}

.avlc-latest__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.avlc-latest-card,
.avlc-latest-card--lead,
.avlc-latest-card:nth-child(2),
.avlc-latest-card:nth-child(3),
.avlc-latest-card:nth-child(n+4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.avlc-latest-card__media,
.avlc-latest-card--lead .avlc-latest-card__media,
.avlc-latest-card:nth-child(n+4) .avlc-latest-card__media {
    min-height: 0;
    aspect-ratio: 4 / 3;
}

.avlc-latest-card__copy,
.avlc-latest-card--lead .avlc-latest-card__copy {
    flex: 1 1 auto;
    justify-content: flex-start;
    padding: 28px 28px 30px;
}

.avlc-latest-card h3 {
    font-size: clamp(30px, 2.6vw, 39px);
}

.avlc-latest-card__copy > p:not(.avlc-card-label) {
    -webkit-line-clamp: 4;
}

.avlc-field-card:hover:not([aria-pressed="true"]) {
    background: rgba(231, 201, 143, .075);
    color: #fff;
}

.avlc-field-card:hover:not([aria-pressed="true"]) > span {
    color: rgba(255, 255, 255, .72);
}

.avlc-field-card:hover:not([aria-pressed="true"]) em {
    color: #f0d39c;
}

@media (max-width: 980px) {
    .avlc-hero,
    .avlc-hero__copy {
        min-height: 440px;
        height: auto;
    }

    .avlc-hero__copy {
        padding: 82px 48px 72px;
    }
}

@media (max-width: 820px) {
    .avlc-latest__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .avlc-hero,
    .avlc-hero__copy {
        min-height: 390px;
    }

    .avlc-hero__copy {
        padding: 74px 24px 64px;
    }
}

@media (max-width: 430px) {
    .avlc-hero,
    .avlc-hero__copy {
        min-height: 360px;
    }

    .avlc-hero__copy {
        padding-inline: 20px;
    }
}

@media print {
    @page {
        margin: 16mm;
    }

    .avlc-page .site-header,
    .avlc-page .site-footer,
    .avlc-hero__portraits,
    .avlc-hero__actions,
    .avlc-latest,
    .avlc-fields,
    .avlc-directory-toolbar,
    .avlc-active-filter,
    .avlc-empty,
    .avlc-profile-item__topics {
        display: none !important;
    }

    .avlc-shell,
    .avlc-hero,
    .avlc-collection {
        width: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: #fff !important;
        color: #111 !important;
    }

    .avlc-hero {
        display: block;
        height: auto;
    }

    .avlc-hero__copy {
        min-height: 0;
        padding: 0 0 16mm;
    }

    .avlc-hero .avlc-eyebrow,
    .avlc-hero h1,
    .avlc-section-kicker,
    .avlc-collection__head h2,
    .avlc-letter-group__head h3,
    .avlc-profile-item h4 a {
        color: #111 !important;
    }

    .avlc-wrap {
        width: auto;
    }

    .avlc-collection__head {
        margin-bottom: 10mm;
    }

    .avlc-letter-groups {
        gap: 10mm;
    }

    .avlc-letter-group,
    .avlc-profile-item {
        break-inside: avoid;
    }

    .avlc-letter-group[hidden] {
        display: block !important;
    }

    .avlc-profile-item[hidden] {
        display: grid !important;
    }

    .avlc-profile-item__media {
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .avlc-shell *,
    .avlc-shell *::before,
    .avlc-shell *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
