.air-home {
    --air-ink: #0c0d0f;
    --air-paper: #f5f5f3;
    --air-white: #ffffff;
    --air-muted: #777b82;
    --air-line: #d9dade;
    --air-accent: #ee3f78;
    background: var(--air-paper);
    color: var(--air-ink);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    letter-spacing: 0;
    overflow: hidden;
}

/* Keep the two closing sections in the requested visual order. */
.air-home { display: flex; flex-direction: column; }
.air-home > .air-home__closing { order: 6; }
.air-home > .air-home__membership { order: 7; }

.air-home *,
.air-home *::before,
.air-home *::after {
    box-sizing: border-box;
}

.air-home img {
    display: block;
    width: 100%;
}

.air-home h1,
.air-home h2,
.air-home h3,
.air-home p,
.air-home figure {
    margin: 0;
}

.air-home a {
    color: inherit;
    text-decoration: none;
}

.air-home__hero {
    position: relative;
    height: max(580px, min(720px, calc(100vh - 132px)));
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    background: #111214;
    color: var(--air-white);
}

.air-home__slides,
.air-home__slide {
    position: absolute;
    inset: 0;
}

.air-home__slide {
    display: flex;
    align-items: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: opacity .55s ease, visibility .55s ease;
}

.air-home__slide.is-active {
    visibility: visible;
    opacity: 1;
}

.air-home__hero-image,
.air-home__hero-shade {
    position: absolute;
    inset: 0;
    height: 100%;
}

.air-home__hero-image {
    z-index: -2;
    object-fit: cover;
    object-position: center 52%;
}

.air-home__hero-shade {
    z-index: -1;
    background: rgba(0, 0, 0, 0.56);
}

.air-home__hero-content {
    position: relative;
    z-index: 1;
    width: min(1280px, calc(100% - 96px));
    margin: 0 auto;
    padding: 72px 0 84px;
}

.air-home__eyebrow {
    margin-bottom: 22px !important;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.air-home__eyebrow--dark {
    color: #656970;
}

.air-home__hero h1,
.air-home__hero h2 {
    max-width: 880px;
    color: #fff;
    font-size: 76px;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.air-home__hero-copy {
    max-width: 640px;
    margin-top: 28px !important;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.8;
}

.air-home__hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 38px;
}

.air-home__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--air-ink);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.air-home__button--light {
    border-color: #fff;
    background: #fff;
    color: #111214 !important;
}

.air-home__button--light:hover,
.air-home__button--light:focus {
    border-color: var(--air-accent);
    background: var(--air-accent);
    color: #fff !important;
}

.air-home__text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
}

.air-home__text-link span {
    font-size: 18px;
    line-height: 1;
}

.air-home__text-link--light {
    color: #fff !important;
}

.air-home__hero-index {
    position: absolute;
    right: 48px;
    bottom: 34px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 700;
}

.air-home__slider-controls {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.air-home__slider-arrow {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
}

.air-home__slider-arrow:hover,
.air-home__slider-arrow:focus {
    border-color: #fff;
    background: #fff;
    color: #111214;
}

.air-home__slider-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.air-home__slider-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background-color .2s ease;
}

.air-home__slider-dots button.is-active {
    width: 24px;
    border-radius: 4px;
    background: #fff;
}

.air-home__category-nav {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr)) 56px;
    width: min(1280px, calc(100% - 96px));
    margin: 0 auto;
    background: var(--air-white);
}

.air-home__category-nav a {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 18px;
    border-right: 1px solid var(--air-line);
    color: var(--air-ink);
    text-align: center;
    transition: background-color .2s ease, color .2s ease;
}

.air-home__category-nav a:nth-child(9) {
    border-right: 0;
}

.air-home__category-nav a:hover,
.air-home__category-nav a:focus {
    background: var(--air-ink);
    color: #fff;
}

.air-home__category-nav strong {
    color: var(--air-accent);
    font-size: 12px;
}

.air-home__category-nav span {
    font-size: 15px;
    font-weight: 700;
}

.air-home__piano-sound {
    display: inline-flex;
    min-width: 0;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: #111317;
    color: rgba(255, 255, 255, .78);
    cursor: pointer;
    font-size: 18px;
}

.air-home__ads {
    position: relative;
    width: min(1280px, calc(100% - 96px));
    height: 210px;
    margin: 36px auto 0;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(40, 42, 46, .76);
    color: #fff;
    box-shadow: 0 18px 42px rgba(20, 22, 25, .12), inset 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px) saturate(115%);
    -webkit-backdrop-filter: blur(20px) saturate(115%);
}

.air-home__ads::after {
    position: absolute;
    z-index: 3;
    top: -35%;
    bottom: -35%;
    left: -28%;
    width: 18%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .16), transparent);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: skewX(-18deg);
}

.air-home__ads.is-switching::after {
    animation: air-ad-glass-sweep .82s ease-out;
}

.air-home__ad-slides,
.air-home__ad-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.air-home__ad-slide {
    display: block;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transition: opacity .45s ease, visibility .45s ease;
}

.air-home__ad-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.air-home__ad-slide.is-entering .air-home__ad-copy {
    animation: air-ad-copy-enter .64s cubic-bezier(.2, .75, .25, 1) both;
}

.air-home__ad-slide.is-entering .air-home__ad-copy small,
.air-home__ad-slide.is-entering .air-home__ad-copy strong,
.air-home__ad-slide.is-entering .air-home__ad-copy > span {
    animation: air-ad-line-enter .55s cubic-bezier(.2, .75, .25, 1) both;
}

.air-home__ad-slide.is-entering .air-home__ad-copy strong {
    animation-delay: .06s;
}

.air-home__ad-slide.is-entering .air-home__ad-copy > span {
    animation-delay: .12s;
}

.air-home__ad-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 44px;
    display: flex;
    width: min(600px, calc(100% - 280px));
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-50%);
}

.air-home__ad-copy small {
    margin-bottom: 10px;
    color: #ff7ba6;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
}

.air-home__ad-copy strong {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.air-home__ad-copy > span {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.air-home__ad-controls {
    position: absolute;
    z-index: 4;
    right: 28px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.air-home__ad-controls > button {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(10, 11, 13, .32);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.air-home__ad-controls > button:hover,
.air-home__ad-controls > button:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #111214;
}

.air-home__ad-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 3px;
}

.air-home__ad-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: rgba(255, 255, 255, .48);
    cursor: pointer;
    transition: width .2s ease, background-color .2s ease;
}

.air-home__ad-dots button.is-active {
    width: 22px;
    background: #fff;
}

.air-home__ads.is-switching .air-home__ad-dots button.is-active {
    animation: air-ad-dot-pulse .55s ease-out;
}

.air-home__ad-count {
    min-width: 52px;
    margin-left: 5px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 700;
    text-align: right;
}

.air-home__ad-count b {
    color: #fff;
    font-weight: 800;
}

.air-home__ads[data-air-ad-count="1"] .air-home__ad-controls {
    display: none;
}

.air-home__ads + .air-home__feature {
    padding-top: 84px;
}

.air-home__fast-lane {
    position: relative;
    width: min(1280px, calc(100% - 96px));
    margin: 36px auto 0;
    padding: 22px 30px;
    overflow: hidden;
    isolation: isolate;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.air-home__fast-lane::before,
.air-home__fast-lane::after { display: none; }

.air-home__fast-lane-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.air-home__fast-lane-head .air-home__eyebrow { margin-bottom: 9px; color: #ff7aa6; }
.air-home__fast-lane-head h2 { margin: 0; color: var(--air-ink); font-size: 34px; font-weight: 800; line-height: 1.1; }
.air-home__fast-lane-head > p { max-width: 330px; margin: 0 0 3px; color: #686d75; font-size: 13px; line-height: 1.7; text-align: right; }

.air-home__fast-lane-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); }

.air-home__fast-action { position: relative; display: flex; min-width: 0; min-height: 104px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 10px 12px; border: 0; color: var(--air-ink); text-align: center; transition: transform .2s ease; }
.air-home__fast-action:last-child { border-right: 0; }
.air-home__fast-action:hover, .air-home__fast-action:focus-visible { z-index: 1; background: transparent; color: var(--air-ink); transform: translateY(-2px); }
.air-home__fast-action:focus-visible { outline: 2px solid rgba(12, 13, 15, .65); outline-offset: -2px; }
.air-home__fast-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border: 0; border-radius: 0; background: transparent; color: #fff; font-size: 29px; line-height: 1; }
.air-home__fast-action:nth-child(1) .air-home__fast-icon { color: #ff86ad; }
.air-home__fast-action:nth-child(2) .air-home__fast-icon { color: #f5c65d; }
.air-home__fast-action:nth-child(3) .air-home__fast-icon { color: #78d9dc; }
.air-home__fast-action:nth-child(4) .air-home__fast-icon { color: #a8b9ff; }
.air-home__fast-action:nth-child(5) .air-home__fast-icon { color: #a9df85; }
.air-home__fast-action:nth-child(6) .air-home__fast-icon { color: #d2a9ff; }
.air-home__fast-copy { display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 5px; }
.air-home__fast-copy strong, .air-home__fast-copy small { display: block; max-width: 100%; overflow: visible; text-overflow: clip; white-space: normal; word-break: keep-all; }
.air-home__fast-copy strong { color: var(--air-ink); font-size: 15px; font-weight: 800; line-height: 1.35; }
.air-home__fast-copy small { color: #747982; font-size: 11px; line-height: 1.45; }
.air-home__fast-index { position: absolute; top: 13px; right: 14px; color: rgba(12, 13, 15, .35); font-size: 10px; font-weight: 800; letter-spacing: .08em; }

.air-music-trail {
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    color: var(--air-trail-color, rgba(255, 74, 135, .72));
    display: none !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--air-trail-size, 15px);
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    text-shadow: 0 2px 9px rgba(25, 27, 31, .16);
    opacity: 0;
    pointer-events: none;
    user-select: none;
    will-change: transform, opacity;
    animation: air-music-trail-float .82s cubic-bezier(.2, .65, .3, 1) forwards;
}

@keyframes air-ad-glass-sweep {
    0% { left: -28%; opacity: 0; }
    18% { opacity: .8; }
    100% { left: 112%; opacity: 0; }
}

@keyframes air-ad-copy-enter {
    0% { opacity: 0; filter: blur(5px); }
    100% { opacity: 1; filter: blur(0); }
}

@keyframes air-ad-line-enter {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes air-ad-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
    45% { box-shadow: 0 0 0 5px rgba(255, 255, 255, .16); }
}

@keyframes air-music-trail-float {
    0% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.55) rotate(0deg); }
    18% { opacity: .82; }
    100% { opacity: 0; transform: translate3d(calc(-50% + var(--air-trail-drift, 8px)), -42px, 0) scale(1.08) rotate(var(--air-trail-rotate, 12deg)); }
}

.air-home__stories {
    width: min(1280px, calc(100% - 96px));
    margin: 0 auto;
    padding: 72px 0;
}

.air-home__feature {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 72px max(48px, calc((100vw - 1280px) / 2));
    isolation: isolate;
    background: #101216;
    color: #fff;
}

.air-home__feature::before {
    position: absolute;
    z-index: -1;
    inset: -12px;
    background: url("../img/airuile-home/hero-studio.webp") center 48% / cover no-repeat;
    content: "";
    filter: blur(10px);
    transform: scale(1.04);
}

.air-home__section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    align-items: end;
    gap: 40px;
    margin-bottom: 48px;
}

.air-home__section-heading .air-home__eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -18px !important;
}

.air-home__section-heading h2 {
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

.air-home__section-heading > p:last-child {
    color: rgba(255, 255, 255, .64);
    font-size: 16px;
    line-height: 1.8;
}

.air-home__feature-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
    min-height: 570px;
    background: #202329;
}

.air-home__feature-media {
    min-height: 520px;
    overflow: hidden;
}

.air-home__feature-media img {
    height: 100%;
    object-fit: cover;
}

.air-home__feature-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 56px;
}

.air-home__number {
    margin-bottom: 58px !important;
    color: var(--air-accent);
    font-size: 12px;
    font-weight: 800;
}

.air-home__feature-copy h3 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

.air-home__feature-copy > p:not(.air-home__number) {
    margin-top: 24px !important;
    color: rgba(255, 255, 255, .64);
    font-size: 16px;
    line-height: 1.85;
}

.air-home__feature-copy .air-home__text-link {
    margin-top: 40px;
}

.air-home__feature > .air-home__section-heading > p:last-child {
    color: rgba(255, 255, 255, .68);
}

.air-home__latest-panel {
    border: 0;
    background: transparent;
    overflow: hidden;
}

.air-home__latest-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
    height: 507px;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    background: rgba(255, 255, 255, .75);
    cursor: grab;
    scrollbar-color: #b8bcc2 transparent;
    scrollbar-width: thin;
    touch-action: pan-y;
    user-select: none;
}

.air-home__latest-list::-webkit-scrollbar {
    width: 5px;
}

.air-home__latest-list::-webkit-scrollbar-track {
    background: transparent;
}

.air-home__latest-list::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #b8bcc2;
}

.air-home__latest-list.is-dragging {
    cursor: grabbing;
}

.air-home__latest-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) 24px;
    align-items: center;
    min-width: 0;
    min-height: 0;
    gap: 14px;
    grid-column: var(--air-latest-column);
    grid-row: var(--air-latest-row);
    padding: 14px 18px;
    background: rgba(255, 255, 255, .75);
    color: #0c0d0f !important;
    transition: background-color .2s ease, padding-left .2s ease;
}

.air-home__latest-item:hover,
.air-home__latest-item:focus-visible {
    padding-left: 22px;
    background: #f5f5f3;
}

.air-home__latest-item:focus-visible {
    outline: 2px solid var(--air-ink);
    outline-offset: -2px;
}

.air-home__latest-item--placeholder {
    cursor: grab;
    background: rgba(255, 255, 255, .75);
}

.air-home__latest-item--placeholder:hover {
    padding-left: 18px;
    background: #f3f4f5;
}

.air-home__latest-index {
    align-self: start;
    padding-top: 4px;
    color: var(--air-accent);
    font-size: 11px;
    font-weight: 800;
}

.air-home__latest-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dedfe2;
}

.air-home__latest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-drag: none;
    transition: transform .35s ease;
}

.air-home__latest-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dfe1e4;
    color: #a2a6ad;
}

.air-home__latest-thumb--placeholder b {
    font-size: 30px;
    font-weight: 800;
}

.air-home__latest-item:hover .air-home__latest-thumb img,
.air-home__latest-item:focus .air-home__latest-thumb img {
    transform: scale(1.04);
}

.air-home__latest-content {
    min-width: 0;
}

.air-home__latest-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 7px;
    color: #777b82;
    font-size: 10px;
    font-weight: 800;
}

.air-home__latest-meta > span {
    max-width: 100%;
    overflow: hidden;
    color: var(--air-accent);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.air-home__latest-content > strong {
    display: -webkit-box;
    overflow: hidden;
    color: #0c0d0f;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.air-home__latest-excerpt {
    display: -webkit-box;
    margin-top: 7px;
    overflow: hidden;
    color: #777b82;
    font-size: 12px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.air-home__latest-arrow {
    color: #777b82;
    font-size: 22px;
    transition: color .2s ease, transform .2s ease;
}

.air-home__latest-item:hover .air-home__latest-arrow,
.air-home__latest-item:focus .air-home__latest-arrow {
    color: var(--air-accent);
    transform: translateX(4px);
}

.air-home__latest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 0 28px;
    border-top: 0;
    background: rgba(255, 255, 255, .75);
    color: #777b82;
    font-size: 12px;
}

.air-home__latest-footer span:first-child {
    color: var(--air-ink);
    font-weight: 800;
}

.air-home__latest-empty {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #d9dade;
    color: #777b82;
    text-align: center;
}

.air-home__latest-empty strong {
    color: var(--air-ink);
    font-size: 24px;
}

.air-home__latest-empty span {
    font-size: 14px;
}

#curated .air-home__latest-list,
#resource-library .air-home__latest-list {
    background: transparent;
}

#curated .air-home__latest-item,
#curated .air-home__latest-item--placeholder,
#curated .air-home__latest-footer,
#resource-library .air-home__latest-item,
#resource-library .air-home__latest-item--placeholder,
#resource-library .air-home__latest-footer {
    background: rgba(255, 255, 255, .05);
}

#curated .air-home__latest-item:hover,
#curated .air-home__latest-item:focus-visible,
#curated .air-home__latest-item--placeholder:hover,
#resource-library .air-home__latest-item:hover,
#resource-library .air-home__latest-item:focus-visible,
#resource-library .air-home__latest-item--placeholder:hover {
    background: rgba(255, 255, 255, .10);
}

#curated .air-home__latest-content > strong,
#resource-library .air-home__latest-content > strong,
#curated .air-home__latest-footer span:first-child,
#resource-library .air-home__latest-footer span:first-child {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .58);
}

#curated .air-home__latest-meta,
#curated .air-home__latest-excerpt,
#curated .air-home__latest-arrow,
#curated .air-home__latest-footer,
#resource-library .air-home__latest-meta,
#resource-library .air-home__latest-excerpt,
#resource-library .air-home__latest-arrow,
#resource-library .air-home__latest-footer {
    color: rgba(255, 255, 255, .78);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .58);
}

#curated .air-home__latest-meta > span,
#resource-library .air-home__latest-meta > span {
    color: #ffd2e2;
}

.air-home__library {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 72px max(48px, calc((100vw - 1280px) / 2));
    background: #101216;
    color: #fff;
}

.air-home__library::before {
    position: absolute;
    z-index: -1;
    inset: -12px;
    background: url("../img/airuile-home/pinned-background.webp") center / cover no-repeat;
    content: "";
    filter: blur(10px);
    transform: scale(1.04);
}

.air-home__section-heading--light h2 {
    color: #fff;
}

.air-home__library .air-home__section-heading > p:last-child {
    color: rgba(255, 255, 255, .78);
}

.air-home__resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 410px;
    gap: 2px;
    background: #2b2d31;
}

.air-home__resource {
    position: relative;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    background: #24262a;
}

.air-home__resource--wide {
    grid-column: span 1;
}

.air-home__resource img,
.air-home__resource-shade {
    position: absolute;
    inset: 0;
    height: 100%;
}

.air-home__resource img {
    z-index: -2;
    object-fit: cover;
    transition: transform .5s ease;
}

.air-home__resource:hover img {
    transform: scale(1.025);
}

.air-home__resource-shade {
    z-index: -1;
    background: rgba(0, 0, 0, 0.42);
}

.air-home__resource-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 42px;
    color: #fff;
}

.air-home__resource-copy--dark {
    color: #0c0d0f;
}

.air-home__resource-copy span {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
}

.air-home__resource-copy h3 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
}

.air-home__resource-copy p {
    margin-top: 10px !important;
    font-size: 14px;
    line-height: 1.6;
}

.air-home__pinned-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, 280px);
    gap: 2px;
    background: #2b2d31;
}

.air-home__pinned-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    isolation: isolate;
    background: #24262a;
    color: #fff !important;
}

.air-home__pinned-card--lead {
    grid-column: span 2;
    grid-row: span 2;
}

.air-home__pinned-card:only-child {
    grid-column: 1 / -1;
}

.air-home__pinned-card img,
.air-home__pinned-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.air-home__pinned-card img {
    z-index: -2;
    object-fit: cover;
    transition: transform .55s ease;
}

.air-home__pinned-shade {
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 9, 11, .08) 18%, rgba(8, 9, 11, .88) 100%);
}

.air-home__pinned-card:hover img,
.air-home__pinned-card:focus img {
    transform: scale(1.035);
}

.air-home__pinned-card:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -5px;
}

.air-home__pinned-content {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
}

.air-home__pinned-card--lead .air-home__pinned-content {
    padding: 44px;
}

.air-home__pinned-meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 800;
}

.air-home__pinned-meta > span {
    max-width: 68%;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.air-home__pinned-content > strong {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.air-home__pinned-card--lead .air-home__pinned-content > strong {
    max-width: 640px;
    font-size: 40px;
    line-height: 1.22;
}

.air-home__pinned-excerpt {
    display: none;
    max-width: 620px;
    margin-top: 16px;
    overflow: hidden;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    line-height: 1.75;
}

.air-home__pinned-card--lead .air-home__pinned-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.air-home__pinned-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 800;
}

.air-home__pinned-link > span {
    font-size: 17px;
    transition: transform .2s ease;
}

.air-home__pinned-card:hover .air-home__pinned-link > span,
.air-home__pinned-card:focus .air-home__pinned-link > span {
    transform: translateX(4px);
}

.air-home__pinned-empty {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid #34363b;
    color: #8f949c;
    text-align: center;
}

.air-home__pinned-empty strong {
    color: #fff;
    font-size: 24px;
}

.air-home__pinned-empty span {
    font-size: 14px;
}

.air-home__membership {
    display: grid;
    grid-template-columns: minmax(320px, .8fr) minmax(0, 1.4fr);
    gap: 90px;
    padding: 120px max(48px, calc((100vw - 1280px) / 2));
    background: #f5f5f3;
}

.air-home__membership-intro {
    align-self: start;
    position: sticky;
    top: 96px;
}

.air-home__membership-intro h2 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
}

.air-home__membership-lead {
    max-width: 460px;
    margin-top: 24px !important;
    color: #656970;
    font-size: 16px;
    line-height: 1.85;
}

.air-home__membership-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.air-home__membership-actions > span {
    color: #777b82;
    font-size: 12px;
    font-weight: 700;
}

.air-home__membership-cta.signin-loader.payvip-icon {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 !important;
    padding: 0 24px !important;
    border: 1px solid var(--air-ink);
    background: var(--air-ink);
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    transition: background-color .2s ease, border-color .2s ease;
}

.air-home__membership-cta.signin-loader.payvip-icon:hover,
.air-home__membership-cta.signin-loader.payvip-icon:focus {
    border-color: var(--air-accent);
    background: var(--air-accent);
}

.air-home__membership-cta > span {
    font-size: 18px;
    transition: transform .2s ease;
}

.air-home__membership-cta:hover > span,
.air-home__membership-cta:focus > span {
    transform: translateX(4px);
}

.air-home__benefit-list {
    border-top: 1px solid #cfd1d5;
}

.air-home__benefit {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: 126px;
    align-items: center;
    padding: 24px 6px;
    border-bottom: 1px solid #cfd1d5;
    transition: padding-left .2s ease, background-color .2s ease;
}

.air-home__benefit:hover {
    padding-left: 16px;
    background: #fff;
}

.air-home__benefit > span {
    align-self: start;
    padding-top: 4px;
    color: var(--air-accent);
    font-size: 11px;
    font-weight: 800;
}

.air-home__benefit h3 {
    font-size: 23px;
    font-weight: 800;
    line-height: 1.35;
}

.air-home__benefit p {
    margin-top: 8px !important;
    color: #6b6f76;
    font-size: 14px;
    line-height: 1.75;
}

.air-home__story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.air-home__story figure {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dedfe2;
}

.air-home__story figure img {
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.air-home__story:hover figure img {
    transform: scale(1.02);
}

.air-home__story-meta {
    margin-top: 24px !important;
    color: var(--air-accent);
    font-size: 11px;
    font-weight: 800;
}

.air-home__story h3 {
    margin-top: 12px !important;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0;
}

.air-home__story > p:last-child {
    margin-top: 14px !important;
    color: #6b6f76;
    font-size: 14px;
    line-height: 1.8;
}

.air-home__closing {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 650px;
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: 96px;
    overflow: hidden;
    padding: 100px max(48px, calc((100vw - 1280px) / 2));
    background: #090a0c;
    color: #fff;
}

.air-home__closing::before,
.air-home__closing::after {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: "";
}

.air-home__closing::before {
    background: url("../img/airuile-home/resource-console.webp") 72% center / cover no-repeat;
    opacity: .36;
    transform: scale(1.02);
}

.air-home__closing::after {
    z-index: -1;
    background: linear-gradient(90deg, rgba(7, 8, 10, .98) 0%, rgba(7, 8, 10, .9) 42%, rgba(7, 8, 10, .68) 100%);
}

.air-home__remote-intro {
    max-width: 600px;
}

.air-home__closing h2 {
    max-width: 600px;
    color: #fff;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
    white-space: nowrap;
}

.air-home__remote-copy {
    max-width: 560px;
    margin-top: 28px !important;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.9;
}

.air-home__remote-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.air-home__remote-route {
    display: grid;
    min-height: 82px;
    align-content: center;
    gap: 7px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(9, 10, 12, .42);
    color: #fff;
    backdrop-filter: blur(12px);
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.air-home__remote-route:hover,
.air-home__remote-route:focus-visible {
    border-color: #f04494;
    background: rgba(240, 68, 148, .12);
    color: #fff;
    transform: translateY(-2px);
}

.air-home__remote-route small {
    color: #f04494;
    font-size: 9px;
    font-weight: 900;
}

.air-home__remote-route strong {
    font-size: 12px;
    line-height: 1.35;
}

.air-home__remote-actions .air-home__button {
    gap: 18px;
}

.air-home__remote-actions .air-home__button span {
    font-size: 18px;
    line-height: 1;
}

.air-home__remote-availability {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
}

.air-home__remote-availability i,
.air-home__remote-console-head i {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #63e6a5;
    box-shadow: 0 0 0 4px rgba(99, 230, 165, .12);
}

.air-home__remote-console {
    width: 100%;
    max-width: 650px;
    justify-self: end;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(14, 16, 20, .76);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
    backdrop-filter: blur(20px) saturate(1.1);
}

.air-home__remote-console-head,
.air-home__remote-session,
.air-home__remote-console-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.air-home__remote-console-head {
    min-height: 58px;
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 800;
}

.air-home__remote-console-head > span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.air-home__remote-console-head strong {
    color: #63e6a5;
    font-size: 10px;
}

.air-home__remote-session {
    padding: 30px 24px 0;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 800;
}

.air-home__remote-session strong {
    color: #fff;
    font-size: 14px;
}

.air-home__remote-wave {
    display: grid;
    height: 116px;
    grid-template-columns: repeat(20, minmax(3px, 1fr));
    align-items: center;
    gap: 8px;
    padding: 8px 24px 20px;
}

.air-home__remote-wave i {
    display: block;
    height: var(--air-wave);
    min-height: 8px;
    background: #f04494;
    box-shadow: 0 0 18px rgba(240, 68, 148, .22);
    animation: air-remote-meter 1.8s ease-in-out infinite alternate;
    animation-delay: calc(var(--air-wave) * -0.015);
    transform-origin: center;
}

@keyframes air-remote-meter {
    from { transform: scaleY(.72); opacity: .62; }
    to { transform: scaleY(1); opacity: 1; }
}

.air-home__remote-channels {
    display: grid;
    gap: 12px;
    padding: 0 24px 30px;
}

.air-home__remote-channels > div {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) 66px;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .56);
    font-size: 10px;
    font-style: normal;
}

.air-home__remote-channels i {
    position: relative;
    display: block;
    height: 4px;
    overflow: hidden;
    background: rgba(255, 255, 255, .12);
}

.air-home__remote-channels i::before {
    position: absolute;
    inset: 0 18% 0 0;
    background: linear-gradient(90deg, #63e6a5 0%, #d8ee72 72%, #f04494 100%);
    content: "";
}

.air-home__remote-channels > div:last-child i::before {
    right: 24%;
}

.air-home__remote-channels strong {
    color: rgba(255, 255, 255, .78);
    font-size: 10px;
    text-align: right;
}

.air-home__remote-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.air-home__remote-specs > div {
    min-width: 0;
    padding: 22px 18px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.air-home__remote-specs > div:last-child {
    border-right: 0;
}

.air-home__remote-specs span,
.air-home__remote-specs strong {
    display: block;
}

.air-home__remote-specs span {
    overflow: hidden;
    color: rgba(255, 255, 255, .38);
    font-size: 9px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.air-home__remote-specs strong {
    margin-top: 8px;
    color: #fff;
    font-size: 16px;
}

.air-home__remote-console-foot {
    min-height: 58px;
    justify-content: flex-start;
    gap: 22px;
    padding: 0 24px;
    color: rgba(255, 255, 255, .46);
    font-size: 10px;
    font-weight: 700;
}

.air-home__remote-console-foot span {
    position: relative;
    padding-left: 11px;
}

.air-home__remote-console-foot span::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #f04494;
    content: "";
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .air-home__hero-content,
    .air-home__category-nav,
    .air-home__ads,
    .air-home__fast-lane,
    .air-home__stories {
        width: min(100% - 48px, 1280px);
    }

    .air-home__hero h1,
    .air-home__hero h2 {
        font-size: 60px;
    }

    .air-home__category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .air-home__category-nav a:nth-child(even) {
        border-right: 0;
    }

    .air-home__category-nav a {
        border-bottom: 1px solid var(--air-line);
    }

    .air-home__category-nav a:last-child {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 0;
    }

    .air-home__fast-lane {
        padding: 24px;
    }

    .air-home__fast-lane-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .air-home__fast-action:nth-child(3n),
    .air-home__fast-action:nth-child(-n+3) {
        border: 0;
    }

    .air-home__stories,
    .air-home__library {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .air-home__library,
    .air-home__closing,
    .air-home__membership {
        padding-left: 24px;
        padding-right: 24px;
    }

    .air-home__membership {
        grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
        gap: 48px;
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .air-home__membership-intro h2 {
        font-size: 46px;
    }

    .air-home__feature-layout {
        grid-template-columns: 1fr;
    }

    .air-home__feature-copy {
        padding: 44px;
    }

    .air-home__number {
        margin-bottom: 30px !important;
    }

    .air-home__story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .air-home__pinned-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 460px repeat(2, 260px);
    }

    .air-home__pinned-card--lead {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .air-home__closing h2 {
        font-size: 54px;
    }
}

@media (max-width: 767px) {
    .air-home__hero {
        height: max(560px, min(680px, calc(100svh - 120px)));
    }

    .air-home__hero-content,
    .air-home__category-nav,
    .air-home__ads,
    .air-home__fast-lane,
    .air-home__stories {
        width: calc(100% - 32px);
    }

    .air-home__hero-content {
        padding: 54px 0 64px;
    }

    .air-home__hero h1,
    .air-home__hero h2 {
        font-size: 44px;
        line-height: 1.12;
    }

    .air-home__hero-copy {
        margin-top: 20px !important;
        font-size: 15px;
        line-height: 1.75;
    }

    .air-home__hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
        margin-top: 30px;
    }

    .air-home__hero-index {
        display: none;
    }

    .air-home__slider-controls {
        right: 16px;
        bottom: 18px;
        left: auto;
        transform: none;
    }

    .air-home__category-nav {
        grid-template-columns: 1fr;
    }

    .air-home__category-nav a,
    .air-home__category-nav a:nth-child(2) {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid var(--air-line);
        padding: 18px 22px;
    }

    .air-home__category-nav a:nth-child(9) {
        border-bottom: 0;
    }

    body.dark-theme .air-home__category-nav a::before {
        display: none !important;
    }

    .air-home__piano-sound,
    body.dark-theme .air-home__piano-sound {
        min-height: 58px;
        border-radius: 4px;
        box-shadow: none;
    }

    .air-home__ads {
        height: 260px;
        margin-top: 24px;
    }

    .air-home__fast-lane {
        margin-top: 20px;
        padding: 20px 16px;
    }

    .air-home__fast-lane-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .air-home__fast-action:nth-child(3n),
    .air-home__fast-action:nth-child(2n),
    .air-home__fast-action:nth-child(-n+4),
    .air-home__fast-action:nth-child(5),
    .air-home__fast-action:nth-child(6) {
        border: 0;
    }

    .air-home__fast-lane-head {
        display: block;
        margin-bottom: 18px;
    }

    .air-home__fast-lane-head h2 {
        font-size: 30px;
    }

    .air-home__fast-lane-head > p {
        margin-top: 10px;
        text-align: left;
    }

    .air-home__fast-action {
        min-height: 96px;
        gap: 6px;
        padding: 10px 10px;
    }

    .air-home__fast-icon { width: 40px; height: 40px; border-radius: 0; background: transparent; font-size: 25px; }

    .air-home__fast-copy strong { font-size: 14px; }
    .air-home__fast-copy small { font-size: 10px; }

    .air-home__ad-copy {
        top: 34px;
        left: 24px;
        width: calc(100% - 48px);
        transform: none;
    }

    .air-home__ad-copy strong {
        font-size: 23px;
    }

    .air-home__ad-controls {
        right: 20px;
        bottom: 18px;
    }

    .air-home__ad-count {
        display: none;
    }

    .air-home__ads + .air-home__feature {
        padding-top: 52px;
    }

    .air-home__feature,
    .air-home__stories,
    .air-home__library {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .air-home__feature::before {
        background-position: 44% center;
    }

    .air-home__library {
        background-position: center top;
    }

    .air-home__section-heading {
        display: block;
        margin-bottom: 34px;
    }

    .air-home__section-heading .air-home__eyebrow {
        margin-bottom: 16px !important;
    }

    .air-home__section-heading h2 {
        font-size: 36px;
    }

    .air-home__section-heading > p:last-child {
        margin-top: 16px !important;
        font-size: 14px;
    }

    .air-home__feature-media {
        min-height: 360px;
    }

    .air-home__feature-copy {
        padding: 32px 26px 38px;
    }

    .air-home__feature-copy h3 {
        font-size: 28px;
    }

    .air-home__resource-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
    }

    .air-home__resource-copy {
        padding: 28px 24px;
    }

    .air-home__latest-item {
        grid-template-columns: 82px minmax(0, 1fr) 20px;
        gap: 10px;
        min-height: 0;
        padding: 16px 18px;
    }

    .air-home__latest-list {
        grid-template-columns: 1fr;
        grid-auto-rows: 112px;
        height: 451px;
    }

    .air-home__latest-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .air-home__latest-item:hover,
    .air-home__latest-item:focus-visible {
        padding-left: 22px;
    }

    .air-home__latest-content > strong {
        font-size: 17px;
    }

    .air-home__latest-excerpt {
        display: none;
    }

    .air-home__latest-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        min-height: 74px;
        padding: 12px 18px;
        line-height: 1.5;
    }

    .air-home__pinned-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 2px;
    }

    .air-home__pinned-card,
    .air-home__pinned-card--lead,
    .air-home__pinned-card:only-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 330px;
    }

    .air-home__pinned-card--lead {
        min-height: 440px;
    }

    .air-home__pinned-card--lead .air-home__pinned-content,
    .air-home__pinned-content {
        padding: 28px 24px;
    }

    .air-home__pinned-card--lead .air-home__pinned-content > strong {
        font-size: 30px;
    }

    .air-home__story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .air-home__closing {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 56px;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .air-home__remote-intro {
        max-width: 680px;
    }

    .air-home__remote-console {
        max-width: none;
        justify-self: stretch;
    }

    .air-home__membership {
        display: block;
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .air-home__membership-intro {
        position: static;
    }

    .air-home__membership-intro h2 {
        font-size: 36px;
    }

    .air-home__membership-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .air-home__benefit-list {
        margin-top: 48px;
    }

    .air-home__benefit {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        min-height: 112px;
        padding: 22px 0;
    }

    .air-home__benefit:hover {
        padding-left: 8px;
    }

    .air-home__benefit h3 {
        font-size: 20px;
    }

    .air-home__closing h2 {
        font-size: 36px;
    }

    .air-home__remote-copy {
        font-size: 14px;
    }

    .air-home__remote-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .air-home__remote-route {
        min-height: 68px;
    }

    .air-home__remote-wave {
        gap: 5px;
    }

    .air-home__remote-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .air-home__remote-specs > div:nth-child(2) {
        border-right: 0;
    }

    .air-home__remote-specs > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .air-home__remote-console-foot {
        flex-wrap: wrap;
        gap: 8px 16px;
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

/* The site is permanently dark; keep custom homepage sections in the same mode. */
body.dark-theme .air-home {
    background: #151619;
    color: #f2f4f7;
}

body.dark-theme .air-home__category-nav {
    position: relative;
    isolation: isolate;
    gap: 3px;
    padding: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border-radius: 7px;
    box-shadow:
        0 20px 48px rgba(0, 0, 0, .24),
        inset 0 1px 0 rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px) saturate(110%);
    -webkit-backdrop-filter: blur(14px) saturate(110%);
}

body.dark-theme .air-home__category-nav::before {
    position: absolute;
    z-index: 6;
    top: 0;
    bottom: 0;
    left: -38%;
    width: 34%;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 8%, rgba(255, 255, 255, .1) 26%, rgba(255, 255, 255, .48) 50%, rgba(255, 255, 255, .1) 74%, transparent 92%);
    content: "";
    opacity: 0;
    transform: skewX(-14deg);
    filter: blur(.3px);
    animation: air-category-lustre 5s ease-in-out infinite;
}

body.dark-theme .air-home__category-nav a {
    position: relative;
    z-index: 1;
    min-height: 124px;
    align-items: flex-end;
    justify-content: center;
    padding: 22px 9px 18px;
    border: 0;
    border-radius: 3px 3px 7px 7px;
    background: linear-gradient(90deg, rgba(218, 220, 224, .96), rgba(255, 255, 255, .98) 18%, rgba(242, 243, 245, .98) 78%, rgba(195, 198, 204, .96));
    color: #0c0d0f;
    box-shadow:
        0 6px 0 #9ca0a7,
        0 10px 18px rgba(0, 0, 0, .24),
        inset 1px 0 0 rgba(255, 255, 255, .9),
        inset -1px 0 0 rgba(73, 77, 84, .22),
        inset 0 1px 0 #fff;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .24);
    transform-origin: 50% 0;
    transition: background .16s ease, box-shadow .16s ease, transform .16s ease;
}

body.dark-theme .air-home__category-nav a > span {
    position: relative;
    z-index: 2;
}

body.dark-theme .air-home__category-nav a::before {
    position: absolute;
    z-index: 4;
    top: 0;
    right: auto;
    left: -18px;
    display: none;
    width: 33px;
    height: 72px;
    border-radius: 3px 3px 5px 5px;
    background: linear-gradient(90deg, #050607, #25282d 45%, #08090b 100%);
    box-shadow: 0 6px 9px rgba(0, 0, 0, .5), inset 1px 0 0 rgba(255, 255, 255, .09), inset -1px 0 0 rgba(0, 0, 0, .8);
    content: "";
}

body.dark-theme .air-home__category-nav a:nth-child(2),
body.dark-theme .air-home__category-nav a:nth-child(3),
body.dark-theme .air-home__category-nav a:nth-child(5),
body.dark-theme .air-home__category-nav a:nth-child(6),
body.dark-theme .air-home__category-nav a:nth-child(7),
body.dark-theme .air-home__category-nav a:nth-child(9) {
    z-index: 3;
}

body.dark-theme .air-home__category-nav a:nth-child(2)::before,
body.dark-theme .air-home__category-nav a:nth-child(3)::before,
body.dark-theme .air-home__category-nav a:nth-child(5)::before,
body.dark-theme .air-home__category-nav a:nth-child(6)::before,
body.dark-theme .air-home__category-nav a:nth-child(7)::before,
body.dark-theme .air-home__category-nav a:nth-child(9)::before {
    display: block;
}

body.dark-theme .air-home__category-nav a:hover,
body.dark-theme .air-home__category-nav a:focus {
    background: linear-gradient(90deg, #dfe2e7, #fff 22%, #f8f9fa 78%, #c9cdd3);
    color: #0c0d0f;
    box-shadow:
        0 4px 0 #8e9299,
        0 7px 14px rgba(0, 0, 0, .24),
        inset 1px 0 0 rgba(255, 255, 255, .9),
        inset -1px 0 0 rgba(73, 77, 84, .22);
    transform: translateY(2px);
}

body.dark-theme .air-home__category-nav a.is-playing {
    background: linear-gradient(90deg, #cfd2d7, #f5f6f7 22%, #e9ebee 78%, #bec2c8);
    box-shadow: 0 2px 0 #858990, 0 4px 9px rgba(0, 0, 0, .28), inset 0 3px 8px rgba(0, 0, 0, .08);
    transform: translateY(4px);
}

body.dark-theme .air-home__piano-sound {
    position: relative;
    z-index: 7;
    min-height: 124px;
    border-radius: 4px;
    background: linear-gradient(180deg, #26292e, #0b0c0e);
    color: rgba(255, 255, 255, .78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 6px 0 #050607, 0 10px 18px rgba(0, 0, 0, .25);
    transition: color .16s ease, transform .16s ease, box-shadow .16s ease;
}

body.dark-theme .air-home__piano-sound:hover,
body.dark-theme .air-home__piano-sound:focus-visible {
    color: #fff;
    transform: translateY(2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 4px 0 #050607, 0 7px 14px rgba(0, 0, 0, .25);
}

body.dark-theme .air-home__piano-sound[aria-pressed="true"] {
    color: rgba(255, 255, 255, .38);
}

body.dark-theme .air-home__category-nav a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, .8);
    outline-offset: 1px;
}

@keyframes air-category-lustre {
    0%, 48% {
        left: -38%;
        opacity: 0;
    }
    53% {
        opacity: .96;
    }
    72% {
        left: 108%;
        opacity: .38;
    }
    73%, 100% {
        left: 108%;
        opacity: 0;
    }
}

body.dark-theme .air-home__fast-lane-head h2,
body.dark-theme .air-home__fast-action,
body.dark-theme .air-home__fast-action:hover,
body.dark-theme .air-home__fast-action:focus-visible,
body.dark-theme .air-home__fast-copy strong {
    color: #f2f4f7;
}

body.dark-theme .air-home__fast-lane-head > p,
body.dark-theme .air-home__fast-copy small,
body.dark-theme .air-home__story > p:last-child,
body.dark-theme .air-home__membership-lead,
body.dark-theme .air-home__membership-actions > span,
body.dark-theme .air-home__benefit p {
    color: #a6abb4;
}

body.dark-theme .air-home__fast-index {
    color: rgba(255, 255, 255, .34);
}

body.dark-theme .air-home__fast-action:focus-visible {
    outline-color: rgba(255, 255, 255, .55);
}

body.dark-theme .air-home__story figure,
body.dark-theme .air-home__latest-thumb,
body.dark-theme .air-home__latest-thumb--placeholder {
    background: #26282d;
}

body.dark-theme .air-home__story h3,
body.dark-theme .air-home__membership-intro h2,
body.dark-theme .air-home__benefit h3 {
    color: #f2f4f7;
}

body.dark-theme .air-home__membership {
    background: #151619;
}

body.dark-theme .air-home__membership-cta.signin-loader.payvip-icon {
    border-color: #fff;
    background: #fff;
    color: #111214 !important;
}

body.dark-theme .air-home__membership-cta.signin-loader.payvip-icon::before {
    display: none !important;
    content: none !important;
}

body.dark-theme .air-home__membership-cta.signin-loader.payvip-icon:hover,
body.dark-theme .air-home__membership-cta.signin-loader.payvip-icon:focus {
    border-color: #fff;
    background: #fff;
    color: #111214 !important;
}

body.dark-theme .air-home__benefit-list,
body.dark-theme .air-home__benefit {
    border-color: #35383e;
}

body.dark-theme .air-home__benefit:hover {
    background: rgba(255, 255, 255, .04);
}

body.dark-theme .air-home__latest-empty {
    border-color: #35383e;
    color: #a6abb4;
}

body.dark-theme .air-home__latest-empty strong {
    color: #f2f4f7;
}

@media (max-width: 767px) {
    body.dark-theme .air-home__category-nav a {
        min-height: 74px;
        align-items: center;
        padding: 18px 22px;
        border-radius: 4px;
        box-shadow: 0 3px 0 #9ca0a7, 0 7px 14px rgba(0, 0, 0, .2);
    }

    body.dark-theme .air-home__category-nav a::before {
        display: none !important;
    }

    body.dark-theme .air-home__piano-sound {
        min-height: 58px;
        box-shadow: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .air-home *,
    .air-home *::before,
    .air-home *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }

    .air-music-trail {
        display: none !important;
    }

    .air-home__remote-wave i {
        animation: none;
    }

    body.dark-theme .air-home__category-nav::before {
        animation: none;
        opacity: 0;
    }
}
/* Remove the theme floating toolbar on the homepage; keep the custom AI assistant. */
.float-right {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
