/*
Theme Name: XK5 Lite
Theme URI: https://xk5.cn/
Author: OpenAI
Description: Lightweight custom theme for xk5.cn
Version: 1.0.0
Text Domain: xk5-lite
*/

:root {
    --xk5-bg: #eef4f7;
    --xk5-surface: rgba(255, 255, 255, 0.9);
    --xk5-card: #ffffff;
    --xk5-text: #183042;
    --xk5-muted: #5f7383;
    --xk5-accent: #1f5f8b;
    --xk5-accent-deep: #16384f;
    --xk5-line: rgba(31, 67, 96, 0.12);
    --xk5-shadow: 0 24px 60px rgba(20, 48, 73, 0.12);
    --xk5-radius: 28px;
    --xk5-width: min(1200px, calc(100% - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--xk5-text);
    background:
        radial-gradient(circle at top left, rgba(178, 221, 238, 0.78), transparent 32%),
        linear-gradient(180deg, #f6fbfd 0%, var(--xk5-bg) 62%, #e6eef2 100%);
}

body.home,
body.xk5-immersive-page {
    background: transparent;
}

body.home::before,
body.home::after,
body.xk5-immersive-page::before,
body.xk5-immersive-page::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body.home::before,
body.xk5-immersive-page::before {
    z-index: -3;
    background:
        image-set(
            url("assets/hero-travel-duo.webp") type("image/webp"),
            url("assets/hero-travel-duo.jpg") type("image/jpeg")
        )
        center center/cover no-repeat;
    transform: none;
}

body.home::after,
body.xk5-immersive-page::after {
    z-index: -2;
    background: linear-gradient(
        180deg,
        rgba(9, 28, 40, 0.34) 0%,
        rgba(9, 28, 40, 0.18) 12%,
        rgba(9, 28, 40, 0.06) 24%,
        rgba(9, 28, 40, 0) 38%
    );
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-shell {
    min-height: 100vh;
}

body.home .site-shell,
body.xk5-immersive-page .site-shell {
    position: relative;
    isolation: isolate;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    transition: background-color 0.24s ease, backdrop-filter 0.24s ease, border-color 0.24s ease;
}

.admin-bar .site-header {
    top: 32px;
}

body.home .site-header,
body.xk5-immersive-page .site-header {
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
}

body:not(.home):not(.xk5-immersive-page) .site-header {
    background: rgba(244, 249, 252, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(31, 67, 96, 0.08);
}

body.xk5-immersive-page .site-brand,
body.xk5-immersive-page .site-nav a {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.site-header__inner {
    width: var(--xk5-width);
    margin: 0 auto;
    min-height: 96px;
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 16px;
}

.site-brand {
    font-size: 1.38rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

body.home .site-brand,
body.home .site-nav a {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

body:not(.home):not(.xk5-immersive-page) .site-brand,
body:not(.home):not(.xk5-immersive-page) .site-nav a {
    color: var(--xk5-text);
}

.site-nav-wrap {
    display: flex;
    justify-content: center;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    border: 0;
    box-shadow: none;
}

.site-nav li {
    list-style: none;
}

body:not(.home) .site-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    font-size: 1.24rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
    position: relative;
    transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: translateX(-50%);
    transition: width 0.22s ease, opacity 0.22s ease;
}

.site-nav .current-menu-item > a,
.site-nav a:hover {
    background: transparent;
    color: #ffffff;
    opacity: 0.82;
    transform: translateY(-1px);
}

.site-nav .current-menu-item > a::after,
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    width: 22px;
    opacity: 1;
}

body:not(.home):not(.xk5-immersive-page) .site-nav .current-menu-item > a,
body:not(.home):not(.xk5-immersive-page) .site-nav a:hover {
    background: transparent;
    color: #1c557c;
    opacity: 0.82;
}

body.xk5-immersive-page .site-nav .current-menu-item > a,
body.xk5-immersive-page .site-nav a:hover {
    background: transparent;
    color: #ffffff;
    opacity: 0.82;
}

.site-nav a:focus-visible {
    outline: none;
}

.site-header__spacer {
    min-height: 1px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 66vh;
    display: flex;
    align-items: flex-start;
    color: #fffaf5;
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: var(--xk5-width);
    margin: 0 auto;
    padding: 186px 0 72px;
    text-align: center;
}

.hero__eyebrow {
    margin: 0 0 16px;
    color: #d3edf9;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.hero h1 {
    margin: 0;
    max-width: none;
    font-size: clamp(1.95rem, 3.4vw, 3.05rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.hero__desc {
    max-width: 520px;
    margin: 16px auto 0;
    color: rgba(255, 246, 238, 0.84);
    font-size: 0.95rem;
    line-height: 1.72;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
    justify-content: center;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.hero__button--primary {
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    box-shadow: 0 16px 34px rgba(24, 52, 74, 0.16);
}

.hero__button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.hero__button:hover {
    transform: translateY(-2px);
}

.hero__download-note {
    margin: 16px 0 0;
    color: rgba(241, 248, 252, 0.8);
    font-size: 0.84rem;
    line-height: 1.55;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.hero__download-note a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.section-head,
.featured-profiles,
.channel-strip {
    width: var(--xk5-width);
    margin: 0 auto;
}

.featured-profiles,
.channel-strip {
    padding: 56px 0 0;
}

.featured-profiles {
    position: relative;
    z-index: 3;
    margin-top: -220px;
    padding-top: 0;
}

.featured-profiles .section-head {
    margin-bottom: 18px;
}

.featured-profiles .section-head__eyebrow {
    color: rgba(234, 246, 252, 0.9);
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.featured-profiles .section-head h2 {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.featured-profiles .section-head__more {
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(239, 248, 252, 0.92);
    border: 0;
    box-shadow: none;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.section-head__eyebrow {
    margin: 0 0 10px;
    color: #4f7a95;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(1.7rem, 1.35rem + 0.7vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.section-head__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--xk5-accent-deep);
    font-size: 0.92rem;
    font-weight: 700;
}

.featured-profiles__carousel {
    overflow: hidden;
    display: grid;
    gap: 24px;
}

.featured-profiles__row-track {
    display: flex;
    transition: transform 0.82s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.featured-profiles__row-slide {
    min-width: 100%;
    flex: 0 0 100%;
    opacity: 0.92;
    transition: opacity 0.72s ease;
}

.featured-profiles__row-slide.is-active {
    opacity: 1;
}

.featured-profiles__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.profile-tile {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(214, 230, 238, 0.22);
    box-shadow: 0 18px 30px rgba(14, 39, 58, 0.12);
}

.profile-tile__media {
    position: relative;
    min-height: 320px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: linear-gradient(160deg, #8dc9de 0%, #3f7494 52%, #1b3d57 100%);
    color: inherit;
    text-decoration: none;
}

.profile-tile__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-tile__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 27, 0.02) 0%, rgba(6, 18, 27, 0.08) 100%);
}

.profile-tile__media.tone-a { background: linear-gradient(160deg, #81d2df 0%, #2f7897 52%, #18425e 100%); }
.profile-tile__media.tone-b { background: linear-gradient(160deg, #9dc1e9 0%, #4476a7 52%, #203d67 100%); }
.profile-tile__media.tone-c { background: linear-gradient(160deg, #85d8d1 0%, #3d8aa0 52%, #204f63 100%); }
.profile-tile__media.tone-d { background: linear-gradient(160deg, #b9d8f2 0%, #5e84c2 52%, #2a4771 100%); }
.profile-tile__media.tone-e { background: linear-gradient(160deg, #8fd3c8 0%, #3d8f87 52%, #1d5960 100%); }
.profile-tile__media.tone-f { background: linear-gradient(160deg, #9ecfe3 0%, #4a80ad 52%, #214962 100%); }
.profile-tile__media.tone-g { background: linear-gradient(160deg, #81d0b3 0%, #3a8874 52%, #1f4f52 100%); }
.profile-tile__media.tone-h { background: linear-gradient(160deg, #9cc7ef 0%, #4f79bc 52%, #223e73 100%); }
.profile-tile__media.tone-i { background: linear-gradient(160deg, #7ed1e6 0%, #2d7f9c 52%, #1a445d 100%); }
.profile-tile__media.tone-j { background: linear-gradient(160deg, #a9d9dd 0%, #558bb0 52%, #244f6a 100%); }

.profile-tile__region,
.profile-tile__overlay {
    position: relative;
    z-index: 1;
}

.profile-tile__region {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(7, 19, 29, 0.42);
}

.profile-tile__overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.profile-tile__headline {
    min-width: 0;
}

.profile-tile h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.02rem;
    line-height: 1.15;
    letter-spacing: -0.03em;
    text-shadow: 0 3px 14px rgba(7, 19, 29, 0.48);
}

.profile-tile__tag {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(246, 251, 253, 0.92);
    font-size: 0.74rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(7, 19, 29, 0.42);
}

.profile-tile__summary {
    margin: 4px 0 0;
    color: rgba(241, 248, 252, 0.9);
    font-size: 0.76rem;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 12px rgba(7, 19, 29, 0.42);
}

.profile-tile__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-tile__meta span {
    display: inline-flex;
    align-items: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: rgba(244, 251, 255, 0.94);
    font-size: 0.75rem;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(7, 19, 29, 0.42);
}

.channel-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 88px;
}

.channel-feed-grid {
    align-items: stretch;
}

.channel-feed {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px 12px 13px;
    border-radius: 16px;
    background: rgba(248, 252, 254, 0.82);
    border: 1px solid rgba(218, 234, 242, 0.68);
    box-shadow: 0 10px 18px rgba(15, 41, 59, 0.06);
    backdrop-filter: blur(10px);
}

.channel-feed__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.channel-feed__head strong {
    display: block;
    font-size: 0.94rem;
    line-height: 1.2;
}

.channel-feed__head a {
    color: var(--xk5-accent);
    font-size: 0.8rem;
    font-weight: 700;
}

.channel-feed__list {
    display: grid;
    gap: 6px;
    flex: 1;
}

.channel-feed:not(.channel-feed--news) .channel-feed__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.channel-feed__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 8px;
    align-items: center;
    padding: 6px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.64);
    transition: transform 0.18s ease, background-color 0.18s ease;
    flex: 1;
}

.channel-feed:not(.channel-feed--news) .channel-feed__item {
    position: relative;
    padding: 8px 0;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(210, 227, 236, 0.62);
    align-items: end;
}

.channel-feed:not(.channel-feed--news) .channel-feed__item:last-child {
    border-bottom: 0;
}

.channel-feed__item:hover,
.channel-news__item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.9);
}

.channel-feed:not(.channel-feed--news) .channel-feed__item:hover {
    background: transparent;
}

.channel-feed__thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background: linear-gradient(160deg, #8dc9de 0%, #3f7494 52%, #1b3d57 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.channel-feed__thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.channel-feed__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
}

.channel-feed:not(.channel-feed--news) .channel-feed__body {
    min-height: 48px;
    justify-content: flex-end;
    padding-top: 6px;
    padding-right: 112px;
}

.channel-feed__title-row {
    display: block;
}

.channel-feed__title-row strong {
    min-width: 0;
    display: block;
    font-size: 0.88rem;
    line-height: 1.1;
}

.channel-feed__time,
.channel-news__item time {
    color: #7d93a1;
    font-size: 0.68rem;
    white-space: nowrap;
}

.channel-feed__time {
    position: absolute;
    right: 0;
    bottom: 8px;
}

.channel-feed__meta {
    display: flex;
    gap: 6px;
    margin-top: 2px;
    color: var(--xk5-muted);
    font-size: 0.74rem;
}

.channel-news__list {
    display: grid;
    gap: 2px;
    flex: 1;
}

.channel-news__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 8px;
    padding: 6px 2px;
    border-bottom: 1px solid rgba(210, 227, 236, 0.72);
    transition: transform 0.18s ease, background-color 0.18s ease;
}

.channel-news__item:last-child {
    border-bottom: 0;
}

.channel-news__title {
    min-width: 0;
    display: block;
    color: var(--xk5-text);
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.page-hero {
    padding: 150px 0 70px;
}

.page-hero__inner,
.content-wrap {
    width: var(--xk5-width);
    margin: 0 auto;
}

.page-hero__box {
    max-width: 760px;
    padding: 30px 32px;
    border-radius: var(--xk5-radius);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 70px rgba(6, 18, 28, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.content-card--download-placeholder {
    max-width: 760px;
    margin: 0 auto 72px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.3rem, 1.8rem + 1vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-hero p {
    margin: 16px 0 0;
    color: var(--xk5-muted);
    line-height: 1.8;
}

body.xk5-immersive-page .page-hero {
    padding: 164px 0 34px;
}

body.xk5-immersive-page .page-hero__box {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
}

body.xk5-immersive-page .page-hero h1,
body.xk5-immersive-page .page-hero p,
body.xk5-immersive-page .page-hero__eyebrow {
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

body.xk5-immersive-page .page-hero h1 {
    color: #fffaf5;
}

body.xk5-immersive-page .page-hero p,
body.xk5-immersive-page .page-hero__eyebrow {
    color: rgba(255, 246, 238, 0.86);
}

.content-wrap {
    padding: 0 0 84px;
}

.content-card {
    padding: 36px 34px;
    border-radius: var(--xk5-radius);
    background: var(--xk5-card);
    box-shadow: 0 18px 42px rgba(21, 51, 77, 0.08);
}

.content-card p:first-child {
    margin-top: 0;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 48px;
    padding: 14px 0 16px;
    border-top: 1px solid rgba(236, 241, 244, 0.96);
    background: #fbfcfd;
    backdrop-filter: none;
    box-shadow: none;
}

.site-footer__inner {
    width: var(--xk5-width);
    margin: 0 auto;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.9fr 0.9fr;
    gap: 22px;
}

.site-footer__col h3,
.site-footer__col h4 {
    margin: 0 0 7px;
    color: #183149;
    font-size: 0.95rem;
    line-height: 1.2;
}

.site-footer__col--brand p {
    margin: 0;
    max-width: 420px;
    color: #29465d;
    font-size: 0.84rem;
    line-height: 1.6;
}

.site-footer__col--brand {
    display: flex;
    flex-direction: column;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 6px 18px;
    align-content: start;
}

.site-footer__links a {
    color: #25445b;
    font-size: 0.84rem;
    transition: color 0.18s ease;
    font-weight: 500;
}

.site-footer__links a:hover,
.site-footer__meta a:hover {
    color: var(--xk5-accent);
}

.site-footer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(205, 217, 226, 0.9);
    color: #3f5f76;
    font-size: 0.82rem;
}

.site-footer__meta--brand {
    margin-top: auto;
    padding-top: 10px;
    border-top: 0;
    gap: 8px 16px;
}

.site-footer__meta a {
    color: #3f5f76;
    font-weight: 500;
}

.page-hero--directory .page-hero__box {
    max-width: 760px;
}

.page-hero--news {
    padding: 138px 0 22px;
}

.page-hero--news .page-hero__box {
    max-width: 640px;
}

.page-hero--news .page-hero__eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    color: rgba(244, 248, 252, 0.76);
}

.page-hero--news h1 {
    font-size: clamp(2.05rem, 1.72rem + 0.85vw, 3rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.page-hero--news p {
    margin-top: 12px;
    max-width: 560px;
    color: rgba(244, 248, 252, 0.86);
    line-height: 1.76;
}

.page-hero__eyebrow,
.directory-toolbar__eyebrow,
.profile-detail-card__eyebrow {
    margin: 0 0 10px;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(229, 245, 255, 0.86);
}

.directory-shell {
    width: min(1200px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 40px 0 78px;
}

.directory-shell--detail {
    padding-top: 28px;
}

.directory-shell--news-list {
    padding-top: 150px;
}

.directory-shell--list {
    padding-top: 150px;
}

.directory-filters {
    display: grid;
    grid-template-columns: minmax(118px, 0.7fr) minmax(118px, 0.7fr) minmax(92px, 0.52fr) minmax(164px, 0.94fr) minmax(164px, 0.94fr) minmax(136px, 0.72fr) minmax(92px, 0.48fr) auto;
    gap: 14px;
    align-items: end;
    padding: 18px 18px 16px;
    border: 1px solid rgba(163, 192, 212, 0.24);
    border-radius: 22px;
    background: rgba(247, 251, 253, 0.92);
    box-shadow: 0 16px 36px rgba(17, 42, 68, 0.07);
}

body.xk5-immersive-page .directory-filters {
    background: rgba(247, 251, 253, 0.96);
    border: 1px solid rgba(163, 192, 212, 0.28);
    box-shadow: 0 24px 48px rgba(17, 42, 68, 0.1);
    backdrop-filter: none;
}

.filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-field.is-hidden {
    display: none;
}

.filter-field--city {
    position: relative;
}

.filter-field--city.is-pending .filter-picker__trigger {
    color: #6d8497;
    background: #f8fbfd;
    border-color: rgba(190, 206, 218, 0.72);
}

.filter-picker.is-disabled:hover .filter-picker__panel,
.filter-picker.is-disabled:focus-within .filter-picker__panel,
.filter-picker.is-disabled.is-open .filter-picker__panel {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
}

.filter-field__hint {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    margin: 0;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(26, 54, 76, 0.9);
    color: #ffffff;
    font-size: 0.76rem;
    line-height: 1.3;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.filter-field--city.is-hint-visible .filter-field__hint {
    opacity: 1;
    transform: translateY(0);
}

.filter-field label {
    font-size: 0.82rem;
    color: #32536d;
}

body.xk5-immersive-page .filter-field label {
    color: #32536d;
    text-shadow: none;
}

.filter-picker__trigger,
.filter-field button,
.filter-field--reset a {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(164, 187, 205, 0.52);
    padding: 0 14px;
    font-size: 0.92rem;
    color: #17334b;
    background: #ffffff;
    appearance: none;
}

body.xk5-immersive-page .filter-picker__trigger {
    color: #17334b;
    background: #ffffff;
    border-color: rgba(164, 187, 205, 0.52);
    box-shadow: none;
}

.filter-field--reset a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #34556f;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.94);
}

.filter-picker {
    position: relative;
}

.filter-picker::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
}

.filter-picker__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.filter-picker__trigger::after {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-right: 1.5px solid rgba(33, 66, 94, 0.72);
    border-bottom: 1.5px solid rgba(33, 66, 94, 0.72);
    transform: rotate(45deg) translateY(-1px);
}

.filter-picker__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: max(100%, 220px);
    width: max-content;
    max-width: 420px;
    z-index: 30;
    display: grid;
    gap: 4px;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(164, 187, 205, 0.38);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(17, 42, 68, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.filter-picker:not(.is-suppressed):hover .filter-picker__panel,
.filter-picker:not(.is-suppressed):focus-within .filter-picker__panel,
.filter-picker.is-open:not(.is-suppressed) .filter-picker__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.filter-picker.is-suppressed .filter-picker__panel {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
}

.filter-picker__panel--columns-2 {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
}

.filter-picker__panel--columns-3 {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
}

.filter-picker__option {
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #21425e;
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
}

.filter-picker--city .filter-picker__panel {
    min-width: max(100%, 280px);
    max-width: 520px;
}

.filter-picker__option:hover,
.filter-picker__option.is-selected {
    background: rgba(220, 233, 241, 0.68);
}

.filter-field--range .filter-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 6px;
    align-items: center;
}

.filter-field--range span {
    font-size: 0.82rem;
    color: #4f6c82;
}

body.xk5-immersive-page .filter-field--range span {
    color: #4f6c82;
}

.filter-field--submit button {
    border: none;
    background: linear-gradient(135deg, #2b79a1 0%, #144768 100%);
    color: #fff;
    box-shadow: 0 12px 26px rgba(20, 71, 104, 0.18);
    cursor: pointer;
}

body.xk5-immersive-page .filter-field--submit button {
    border: none;
    background: linear-gradient(135deg, #2b79a1 0%, #144768 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(20, 71, 104, 0.22);
    text-shadow: none;
}

body.xk5-immersive-page .filter-field--reset a {
    color: #34556f;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(164, 187, 205, 0.52);
}

.directory-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 18px 0 22px;
}

.directory-toolbar h2 {
    margin: 0;
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
    color: #15324c;
}

.directory-toolbar__meta-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.directory-toolbar__eyebrow {
    color: #6b89a0;
}

.directory-toolbar__meta {
    margin: 0;
    color: #5d778c;
    font-size: 0.92rem;
}

.directory-filters__meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-height: 46px;
    padding-left: 6px;
    color: #5d778c;
    font-size: 0.88rem;
    white-space: nowrap;
}

.directory-filters__meta span + span {
    position: relative;
    padding-left: 10px;
}

.directory-filters__meta span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(93, 119, 140, 0.56);
    transform: translateY(-50%);
}

body.xk5-immersive-page .directory-toolbar h2,
body.xk5-immersive-page .directory-toolbar__eyebrow,
body.xk5-immersive-page .directory-toolbar__meta {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

body.xk5-immersive-page .directory-filters__meta {
    color: #35546d;
    text-shadow: none;
}

.directory-download-guide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
    padding: 0 2px;
    color: #5d778c;
    font-size: 0.84rem;
    line-height: 1.55;
}

.directory-download-guide__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--xk5-accent);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.directory-empty {
    margin-top: 22px;
    padding: 36px 32px;
    border-radius: 24px;
    background: rgba(247, 251, 253, 0.94);
    color: #35546d;
}

body.xk5-immersive-page .directory-empty {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fffaf5;
    backdrop-filter: blur(16px);
}

.directory-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.directory-grid--immersive {
    gap: 24px;
}

.directory-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(250, 252, 253, 0.96);
    border: 1px solid rgba(170, 194, 214, 0.18);
    box-shadow: 0 20px 42px rgba(18, 42, 67, 0.08);
}

.directory-card__media,
.profile-detail-card__media {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 224px;
    padding: 18px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.directory-card__media::after,
.profile-detail-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(15, 40, 60, 0.35) 100%);
}

.directory-card__badge,
.profile-detail-card__badge {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.82rem;
    backdrop-filter: blur(12px);
}

.directory-card__initial,
.profile-detail-card__initial {
    position: relative;
    z-index: 1;
    margin-left: auto;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 10px 24px rgba(14, 34, 52, 0.28);
}

.directory-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.directory-card__body h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.directory-card__body h3 a {
    color: #14334d;
    text-decoration: none;
}

.directory-card__summary {
    margin: 0 0 14px;
    color: #47647b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.directory-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.directory-card__meta span {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(220, 233, 241, 0.58);
    color: #27445c;
    font-size: 0.82rem;
}

.directory-card__time {
    margin: 14px 0 0;
    color: #69859a;
    font-size: 0.82rem;
}

.profile-tile--directory .profile-tile__media {
    display: block;
    min-height: 360px;
    color: inherit;
    text-decoration: none;
}

.profile-tile--directory .profile-tile__overlay {
    min-height: 0;
}

.profile-tile__published {
    margin: 12px 0 0;
    color: rgba(255, 247, 239, 0.82);
    font-size: 0.8rem;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.directory-pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.directory-pagination a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(167, 190, 208, 0.42);
    color: #34556f;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(18, 42, 67, 0.08);
}

body.xk5-immersive-page .directory-pagination a {
    background: #ffffff;
    border-color: rgba(167, 190, 208, 0.42);
    color: #34556f;
    text-shadow: none;
}

.directory-pagination a.is-current {
    background: linear-gradient(135deg, #2b79a1 0%, #144768 100%);
    color: #fff;
    border-color: transparent;
}

body.xk5-immersive-page .directory-pagination a.is-current {
    background: linear-gradient(135deg, #2b79a1 0%, #144768 100%);
    border-color: transparent;
    color: #ffffff;
}

.profile-detail-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 30px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(248, 252, 254, 0.94);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 24px 54px rgba(18, 40, 62, 0.1);
}

body.xk5-immersive-page .profile-detail-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 30px 70px rgba(10, 24, 37, 0.18);
    backdrop-filter: blur(20px);
}

.profile-detail-card__media {
    min-height: 420px;
    border-radius: 24px;
}

.profile-detail-card__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-detail-card__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.profile-detail-card__head h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #112f48;
}

body.xk5-immersive-page .profile-detail-card__head h2,
body.xk5-immersive-page .profile-detail-card__summary,
body.xk5-immersive-page .profile-detail-card__eyebrow {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.32);
}

.profile-detail-card__back,
.profile-detail-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(34, 81, 112, 0.08);
    color: #173855;
    text-decoration: none;
}

body.xk5-immersive-page .profile-detail-card__back,
body.xk5-immersive-page .profile-detail-card__button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.32);
}

.profile-detail-card__summary {
    margin: 0;
    color: #40607a;
    line-height: 1.8;
}

.profile-detail-card__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.profile-detail-card__facts div {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(223, 234, 242, 0.48);
}

body.xk5-immersive-page .profile-detail-card__facts div {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-detail-card__facts span {
    display: block;
    margin-bottom: 8px;
    color: #608096;
    font-size: 0.84rem;
}

.profile-detail-card__facts strong {
    color: #16354f;
    font-size: 1rem;
}

body.xk5-immersive-page .profile-detail-card__facts span,
body.xk5-immersive-page .profile-detail-card__facts strong {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.28);
}

.profile-spotlight {
    width: min(100vw - 56px, 1080px);
    margin: 0 auto;
    padding: 106px 0 14px;
}

.profile-focus {
    width: min(100vw - 48px, 1160px);
    margin: 0 auto;
    padding: 172px 0 12px;
}

.profile-focus__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    padding: 16px 16px 10px;
    border-radius: 24px;
    background: #f9fbfc;
    border: 1px solid rgba(183, 204, 220, 0.64);
    box-shadow: 0 22px 54px rgba(10, 24, 37, 0.14);
    overflow: hidden;
}

.profile-focus__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.profile-focus__main {
    display: grid;
    grid-template-columns: minmax(560px, 660px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.profile-focus__gallery,
.profile-focus__content {
    border-radius: 20px;
}

.profile-focus__gallery {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.profile-lightbox__frame::after,
.profile-focus__thumb-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 46, 0.08) 0%, rgba(11, 26, 39, 0.42) 100%);
}

.profile-focus__initial,
.profile-focus__caption {
    position: absolute;
    z-index: 2;
}

.profile-focus__initial {
    right: 18px;
    bottom: 18px;
    font-size: clamp(2.1rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 250, 245, 0.94);
    text-shadow: 0 8px 28px rgba(11, 26, 39, 0.24);
}

.profile-focus__caption {
    left: 16px;
    bottom: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(12, 30, 44, 0.22);
    color: #fffaf5;
    font-size: 0.74rem;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.28);
}

.profile-focus__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
    margin-top: 0;
}

.profile-focus__thumb {
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.profile-focus__thumb.is-active .profile-focus__thumb-visual {
    outline: 2px solid rgba(26, 64, 92, 0.84);
    outline-offset: 0;
}

.profile-focus__thumb-visual {
    position: relative;
    display: block;
    height: clamp(320px, 33vw, 410px);
    border-radius: 12px;
    overflow: hidden;
}

.profile-focus__thumb-image,
.profile-lightbox__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-focus__thumb-more {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    min-width: 44px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10, 24, 37, 0.72);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    box-shadow: 0 10px 22px rgba(10, 24, 37, 0.22);
}

.profile-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.profile-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
}

.profile-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 36px;
}

.profile-lightbox__frame {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(10, 18, 28, 0.36);
}

.profile-lightbox__frame.has-image .profile-focus__initial {
    display: none;
}

.profile-lightbox__close,
.profile-lightbox__nav {
    position: absolute;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #173855;
    box-shadow: 0 12px 24px rgba(10, 24, 37, 0.14);
    cursor: pointer;
}

.profile-lightbox__close {
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    line-height: 1;
}

.profile-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
    line-height: 1;
}

.profile-lightbox__nav:disabled {
    opacity: 0.32;
    cursor: default;
}

.profile-lightbox__nav--prev {
    left: max(18px, calc(50% - 260px));
}

.profile-lightbox__nav--next {
    right: max(18px, calc(50% - 260px));
}

body.is-gallery-open {
    overflow: hidden;
}

.profile-focus__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
    padding: 4px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.profile-focus__head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.profile-focus__top-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #71879a;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.profile-focus__top-meta a,
.profile-focus__top-meta span {
    color: #71879a;
    text-decoration: none;
}

.profile-focus__top-meta a:hover {
    color: #274761;
}

.profile-focus__topbar .profile-detail-card__back {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111111 !important;
    text-shadow: none;
    box-shadow: none;
    white-space: nowrap;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.2;
}

.profile-focus__topbar .profile-detail-card__back:hover {
    color: #274761 !important;
}

.profile-focus__content h1 {
    margin: 0;
    font-size: clamp(1.94rem, 3.1vw, 2.7rem);
    line-height: 1.04;
    color: #183149;
    text-shadow: none;
}

.profile-focus__meta-line {
    margin: 12px 0 0;
    color: #4f6c84;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
}

.profile-focus__summary {
    margin: 16px 0 0;
    max-width: 640px;
    color: #35546b;
    font-size: 0.94rem;
    line-height: 1.74;
    text-shadow: none;
}

.profile-focus__info-panel {
    display: grid;
    gap: 0;
    margin-top: 20px;
    padding: 14px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(198, 212, 223, 0.72);
    border-radius: 0;
}

.profile-focus__info-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.profile-focus__info-item {
    display: grid;
    gap: 4px;
    min-height: 64px;
    align-content: center;
    padding: 12px 14px 14px;
    background: rgba(248, 251, 253, 0.92);
    border: 1px solid rgba(212, 223, 231, 0.82);
    border-radius: 9px;
    box-shadow: 0 6px 16px rgba(16, 34, 49, 0.05);
}

.profile-focus__info-item span {
    color: #8193a2;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-focus__info-item strong {
    color: #183149;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.24;
}

.profile-focus__body {
    margin-top: 18px;
    padding: 0;
    padding-top: 0;
    border-top: 0;
}

.profile-focus__body h2 {
    margin: 0 0 10px;
    color: #183149;
    font-size: 0.96rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: none;
}

.profile-focus__body p {
    margin: 0 0 8px;
    color: #3a566d;
    font-size: 0.9rem;
    line-height: 1.7;
    text-shadow: none;
}

.profile-focus__body-link {
    margin-top: 10px;
}

.profile-focus__body-link a {
    color: #1f5f8b;
    text-decoration: none;
    font-weight: 600;
}

.profile-focus__body-link a:hover {
    color: #16384f;
}

.profile-focus__footer-meta {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    color: #7f92a2;
    font-size: 0.74rem;
    text-align: right;
}

.profile-focus__footer-meta span {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-focus__footer-meta strong {
    color: #35546b;
    font-size: 0.82rem;
    font-weight: 600;
}

.profile-focus__download {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.profile-focus__download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    min-width: 168px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #34a853 0%, #1f8a43 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(31, 138, 67, 0.16);
    white-space: nowrap;
}

.profile-focus__download-button:hover {
    transform: translateY(-1px);
}


.profile-focus__scene--default,
.profile-focus__scene--harbor,
.profile-focus__scene--street,
.profile-focus__scene--night,
.profile-focus__scene--boulevard,
.profile-focus__scene--cafe,
.profile-focus__scene--sunset,
.profile-focus__scene--coast,
.profile-focus__scene--pier,
.profile-focus__scene--resort {
    background-size: cover;
    background-position: center;
}

.profile-focus__scene--default {
    background-image: linear-gradient(135deg, rgba(44, 87, 112, 0.92), rgba(95, 156, 181, 0.82));
}

.profile-focus__scene--harbor {
    background-image: linear-gradient(145deg, rgba(36, 80, 104, 0.92), rgba(118, 182, 210, 0.82));
}

.profile-focus__scene--street {
    background-image: linear-gradient(145deg, rgba(48, 70, 92, 0.9), rgba(193, 141, 93, 0.74));
}

.profile-focus__scene--night {
    background-image: linear-gradient(145deg, rgba(17, 35, 63, 0.92), rgba(87, 118, 185, 0.78));
}

.profile-focus__scene--boulevard {
    background-image: linear-gradient(145deg, rgba(53, 71, 101, 0.9), rgba(171, 136, 103, 0.76));
}

.profile-focus__scene--cafe {
    background-image: linear-gradient(145deg, rgba(79, 62, 50, 0.9), rgba(202, 170, 127, 0.74));
}

.profile-focus__scene--sunset {
    background-image: linear-gradient(145deg, rgba(171, 102, 73, 0.88), rgba(90, 130, 175, 0.72));
}

.profile-focus__scene--coast {
    background-image: linear-gradient(145deg, rgba(37, 92, 118, 0.92), rgba(118, 193, 210, 0.8));
}

.profile-focus__scene--pier {
    background-image: linear-gradient(145deg, rgba(52, 75, 96, 0.9), rgba(168, 147, 120, 0.74));
}

.profile-focus__scene--resort {
    background-image: linear-gradient(145deg, rgba(59, 100, 126, 0.9), rgba(205, 186, 152, 0.72));
}

.profile-spotlight__inner {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: end;
}

.profile-spotlight__media {
    position: relative;
    min-height: 448px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(10, 24, 37, 0.22);
}

.profile-spotlight__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 31, 46, 0.08) 0%, rgba(11, 26, 39, 0.42) 100%);
}

.profile-spotlight__badge,
.profile-spotlight__initial {
    position: absolute;
    z-index: 2;
}

.profile-spotlight__badge {
    top: 18px;
    left: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.26);
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.32);
    backdrop-filter: blur(12px);
}

.profile-spotlight__initial {
    right: 22px;
    bottom: 20px;
    font-size: clamp(4rem, 6.6vw, 5.6rem);
    line-height: 1;
    font-weight: 700;
    color: rgba(255, 250, 245, 0.94);
    text-shadow: 0 8px 28px rgba(11, 26, 39, 0.24);
}

.profile-spotlight__content {
    padding: 0 0 10px;
}

.profile-spotlight__eyebrow,
.profile-story__eyebrow {
    margin: 0 0 10px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 250, 245, 0.8);
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.32);
}

.profile-spotlight__content h1 {
    margin: 0;
    font-size: clamp(2.35rem, 4.5vw, 3.7rem);
    line-height: 0.98;
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.38);
}

.profile-spotlight__meta,
.profile-spotlight__summary {
    margin: 14px 0 0;
    max-width: 600px;
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.34);
}

.profile-spotlight__meta {
    font-size: 0.92rem;
    opacity: 0.92;
}

.profile-spotlight__summary {
    font-size: 0.98rem;
    line-height: 1.72;
    opacity: 0.96;
}

.profile-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.profile-detail-meta {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.profile-detail-meta div,
.profile-story__card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 54px rgba(10, 24, 37, 0.14);
    backdrop-filter: blur(18px);
}

.profile-detail-meta div {
    padding: 14px 15px 13px;
}

.profile-detail-meta span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    color: rgba(255, 250, 245, 0.72);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.profile-detail-meta strong {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.28);
    font-size: 0.94rem;
}

.profile-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.profile-story__main,
.profile-story__side {
    display: grid;
    gap: 18px;
}

.profile-story__card {
    padding: 22px 22px 24px;
}

.profile-story__card h2 {
    margin: 0 0 12px;
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.28);
    font-size: 1.24rem;
}

.profile-story__card p {
    margin: 0 0 12px;
    color: rgba(255, 250, 245, 0.92);
    line-height: 1.74;
    font-size: 0.94rem;
}

.profile-story__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-story__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.24);
}

.profile-story__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.profile-story__list li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-story__list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.profile-story__list strong,
.profile-story__list span {
    color: #fffaf5;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.24);
}

.profile-story__list strong {
    font-weight: 600;
}

.profile-story__list span {
    text-align: right;
    opacity: 0.92;
}

.profile-related {
    margin-top: 24px;
}

.section-head--detail {
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.section-head--detail > div {
    width: 100%;
    text-align: center;
}

.section-head--detail h2 {
    color: rgba(255, 250, 245, 0.96);
    font-size: clamp(1.28rem, 1.08rem + 0.46vw, 1.82rem);
    line-height: 1.08;
    text-shadow: 0 2px 10px rgba(12, 30, 44, 0.34);
}

.section-head--detail .section-head__more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.directory-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.directory-grid--related-scroll {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
}

.directory-grid--related-scroll .profile-tile--compact-related {
    min-width: 0;
}

.profile-tile--compact-related .profile-tile__media {
    min-height: 154px;
}

.profile-tile--compact-related .profile-tile__overlay {
    padding: 10px 10px 8px;
}

.profile-tile--compact-related .profile-tile__headline h3 {
    font-size: 0.88rem;
}

.profile-tile--compact-related .profile-tile__summary {
    display: none;
}

.profile-tile--compact-related .profile-tile__meta {
    gap: 6px;
    font-size: 0.68rem;
    flex-wrap: wrap;
}

.news-list {
    display: grid;
    gap: 18px;
}

.news-list__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: start;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(248, 252, 254, 0.94);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 18px 40px rgba(18, 40, 62, 0.08);
}

.news-list__item h3 {
    margin: 0 0 8px;
    color: #14334d;
    font-size: 1.2rem;
}

.news-list__item p,
.news-list__item time {
    margin: 0;
    color: #4b697f;
}

.directory-toolbar--news,
.directory-toolbar--news-grid {
    margin-bottom: 14px;
}

.directory-toolbar--news {
    margin-bottom: 8px;
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.news-layout__main {
    display: grid;
    gap: 18px;
}

.news-catalog {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.news-catalog__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 2px 4px 0;
    border-bottom: 0;
}

.news-catalog__head h1 {
    margin: 0;
    color: #17324a;
    font-size: 1.26rem;
    line-height: 1.1;
}

.news-catalog__head span {
    color: #73899c;
    font-size: 0.82rem;
}

.news-catalog__list {
    display: grid;
    gap: 14px;
    padding-top: 14px;
}

.news-catalog__item {
    display: grid;
    grid-template-columns: 188px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid rgba(219, 229, 236, 0.72);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(18, 40, 62, 0.05);
}

.news-catalog__item:last-child {
    border-bottom: 1px solid rgba(219, 229, 236, 0.72);
}

.news-catalog__thumb {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    background: #e7f0f6;
    text-decoration: none;
}

.news-catalog__thumb img {
    display: block;
    width: 100%;
    height: 136px;
    object-fit: cover;
}

.news-catalog__body {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: 8px;
}

.news-catalog__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    color: #678299;
    font-size: 0.78rem;
}

.news-catalog__meta span {
    color: #7c91a4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-catalog__meta strong {
    color: #183149;
    font-weight: 600;
}

.news-catalog__meta time {
    color: #758b9f;
}

.news-catalog__body h2 {
    margin: 0;
    color: #14334d;
    font-size: 1.1rem;
    line-height: 1.32;
}

.news-catalog__body h2 a {
    color: inherit;
    text-decoration: none;
}

.news-catalog__body p {
    margin: 0;
    color: #4b697f;
    line-height: 1.7;
}

.news-catalog__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #758b9f;
    font-size: 0.76rem;
}

.news-catalog__footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.news-catalog__time {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.news-catalog__item.is-hidden {
    display: none;
}

.news-catalog__more {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

.news-catalog__more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid rgba(184, 201, 214, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #21405a;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.news-layout__sidebar {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.news-layout__sidebar .channel-feed {
    padding: 14px 14px 15px;
    border-radius: 22px;
    background: rgba(248, 252, 254, 0.94);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 18px 38px rgba(18, 40, 62, 0.08);
    backdrop-filter: none;
}

.news-layout__sidebar .channel-feed__head {
    margin-bottom: 10px;
}

.news-layout__sidebar .channel-feed__head strong {
    font-size: 1rem;
    color: #17324a;
}

.news-layout__sidebar .channel-feed__head a {
    font-size: 0.78rem;
}

.news-layout__sidebar .channel-feed__item {
    min-height: 0;
}

.news-layout__sidebar .channel-feed__thumb {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}

.news-layout__sidebar .channel-feed__body {
    min-height: 48px;
    justify-content: flex-end;
    padding-top: 6px;
    padding-right: 112px;
}

.news-layout__sidebar .channel-feed__title-row strong {
    font-size: 0.88rem;
    line-height: 1.1;
}

.news-layout__sidebar .channel-feed__meta {
    margin-top: 2px;
    font-size: 0.74rem;
    flex-wrap: nowrap;
}

.news-layout__sidebar .channel-feed__time {
    position: absolute;
    right: 0;
    bottom: 8px;
    display: block;
    margin-top: 0;
    font-size: 0.68rem;
}

.news-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    padding: 28px 30px;
    border-radius: 28px;
    background: rgba(248, 252, 254, 0.94);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 22px 46px rgba(18, 40, 62, 0.09);
}

.news-feature-card__meta,
.news-stream__meta,
.news-card__meta,
.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    color: #678299;
    font-size: 0.8rem;
}

.news-feature-card__meta span,
.news-stream__meta span,
.news-card__meta span,
.news-article__meta span {
    color: #7c91a4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-feature-card__meta strong,
.news-stream__meta strong,
.news-card__meta strong,
.news-article__meta strong {
    color: #183149;
    font-weight: 600;
}

.news-feature-card h3,
.news-card h3 {
    margin: 14px 0 10px;
    color: #14334d;
    font-size: clamp(1.4rem, 1.16rem + 0.45vw, 1.92rem);
    line-height: 1.14;
}

.news-feature-card h3 a,
.news-card__link,
.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-feature-card p,
.news-card p,
.news-stream__item p,
.news-article__body p {
    margin: 0;
    color: #4b697f;
    line-height: 1.74;
}

.news-feature-card__highlights,
.news-article__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.news-feature-card__highlights span,
.news-article__highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(225, 238, 247, 0.8);
    color: #2f4f67;
    font-size: 0.8rem;
}

.news-feature-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: #1f5f8b;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.news-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.news-card {
    border-radius: 24px;
    background: rgba(248, 252, 254, 0.94);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 18px 38px rgba(18, 40, 62, 0.08);
}

.news-card__link {
    display: grid;
    gap: 12px;
    padding: 22px 24px;
    height: 100%;
}

.news-card h3 {
    margin: 0;
    font-size: 1.14rem;
}

.news-related {
    margin-top: 26px;
}

.section-head--news {
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.section-head--news > div {
    width: 100%;
    text-align: center;
}

.section-head--news .section-head__more {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.news-article {
    display: grid;
    gap: 20px;
    padding: 28px 30px;
    border-radius: 28px;
    background: rgba(248, 252, 254, 0.95);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 22px 46px rgba(18, 40, 62, 0.09);
}

.news-article__head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}

.news-article__meta--right {
    justify-content: flex-end;
    text-align: right;
}

.news-article__body {
    display: grid;
    gap: 14px;
}

.news-article__lead {
    font-size: 1.02rem;
    color: #274761;
}

.news-article__actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-start;
}

.directory-shell--news-detail {
    padding-top: 150px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    align-items: start;
}

.news-reading-card {
    padding: 28px 30px 30px;
    border-radius: 28px;
    background: rgba(248, 252, 254, 0.95);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 22px 46px rgba(18, 40, 62, 0.09);
}

.news-reading-card__crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #6a8194;
    font-size: 0.84rem;
}

.news-reading-card__crumbs a {
    color: inherit;
    text-decoration: none;
}

.news-reading-card h1 {
    margin: 0;
    text-align: center;
    color: #14334d;
    font-size: clamp(1.8rem, 1.4rem + 0.75vw, 2.5rem);
    line-height: 1.22;
}

.news-reading-card__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 14px;
    color: #6d8293;
    font-size: 0.86rem;
}

.news-reading-card__body {
    margin-top: 22px;
    padding: 24px 24px 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(210, 224, 234, 0.82);
}

.news-reading-card__body .news-article__lead {
    margin-bottom: 14px;
}

.news-stream {
    display: grid;
    gap: 14px;
}

.news-stream__item {
    border-radius: 24px;
    background: rgba(248, 252, 254, 0.94);
    border: 1px solid rgba(172, 196, 214, 0.22);
    box-shadow: 0 18px 38px rgba(18, 40, 62, 0.08);
}

.news-stream__link {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    color: inherit;
    text-decoration: none;
}

.news-stream__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    color: #678299;
    font-size: 0.79rem;
}

.news-stream__meta span {
    color: #7c91a4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-stream__meta strong {
    color: #183149;
    font-weight: 600;
}

.news-stream__item h3 {
    margin: 0;
    color: #14334d;
    font-size: 1.14rem;
    line-height: 1.22;
}

.news-stream__item p {
    margin: 0;
    color: #4b697f;
    line-height: 1.72;
}

@media (max-width: 1024px) {
    .directory-shell--news-list {
        padding-top: 136px;
    }

    .directory-shell--news-detail {
        padding-top: 136px;
    }

    .page-hero--news {
        padding: 132px 0 20px;
    }

    .news-detail-layout {
        grid-template-columns: 1fr;
    }

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

    .news-layout__sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .news-catalog__item {
        grid-template-columns: 164px minmax(0, 1fr);
    }

    .news-feature-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .news-feature-card__more {
        justify-self: flex-start;
    }

    .news-cards {
        grid-template-columns: 1fr;
    }

    .news-article__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-article__meta--right {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .directory-shell--news-list {
        padding-top: 126px;
    }

    .directory-shell--news-detail {
        padding-top: 126px;
    }

    .page-hero--news {
        padding: 128px 0 18px;
    }

    .page-hero--news .page-hero__box {
        max-width: 100%;
    }

    .news-layout__sidebar {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .news-catalog {
        padding: 14px 14px 6px;
        border-radius: 20px;
    }

    .news-catalog__head {
        padding: 2px 2px 12px;
    }

    .news-catalog__head h1 {
        font-size: 1.12rem;
    }

    .news-catalog__item {
        grid-template-columns: 124px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 2px;
    }

    .news-catalog__thumb img {
        height: 92px;
    }

    .news-catalog__body h2 {
        font-size: 0.98rem;
    }

    .news-catalog__body p {
        font-size: 0.84rem;
        line-height: 1.62;
    }

    .news-catalog__footer {
        align-items: flex-end;
    }

    .news-catalog__footer-left {
        gap: 12px;
        flex-wrap: wrap;
    }

    .news-reading-card {
        padding: 22px 18px 20px;
        border-radius: 22px;
    }

    .news-reading-card__crumbs {
        margin-bottom: 14px;
        font-size: 0.78rem;
        flex-wrap: wrap;
    }

    .news-reading-card__meta {
        gap: 10px 14px;
        flex-wrap: wrap;
    }

    .news-reading-card__body {
        margin-top: 18px;
        padding: 18px 16px 16px;
        border-radius: 18px;
    }

    .news-feature-card,
    .news-stream__item,
    .news-layout__sidebar .channel-feed {
        border-radius: 20px;
    }

    .news-stream__link {
        padding: 20px 18px;
    }
}

@media (max-width: 1024px) {
    .site-header__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 16px 0;
    }

    .site-brand {
        text-align: center;
    }

    .site-header__spacer {
        display: none;
    }

    .featured-profiles__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .channel-strip__grid {
        grid-template-columns: 1fr;
    }

    .download-landing__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .site-footer__col--brand {
        grid-column: 1 / -1;
    }

    .site-footer__grid .site-footer__col:not(.site-footer__col--brand) {
        display: inline-grid;
        width: 100%;
    }

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

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

    .profile-detail-card {
        grid-template-columns: 1fr;
    }

    .profile-spotlight__inner,
    .profile-story {
        grid-template-columns: 1fr;
    }

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

    .profile-focus__content {
        padding: 18px 4px 8px;
    }

    .profile-focus__head-row {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .profile-download-guide,
    .directory-download-guide {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-focus__head {
        flex-direction: column;
    }

    .profile-focus__head-actions {
        justify-content: flex-start;
    }

    .profile-focus__top-meta {
        gap: 8px;
    }

    .profile-focus__info-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 12px;
    }

    .profile-focus__info-item {
        min-height: 58px;
        padding: 10px 11px 11px;
    }

    .profile-focus__info-item span {
        font-size: 0.54rem;
    }

    .profile-focus__info-item strong {
        font-size: 0.82rem;
    }

    .profile-focus__download {
        margin-top: 10px;
    }

    .profile-focus__download-button {
        min-height: 44px;
        min-width: 220px;
        padding: 0 24px;
        font-size: 0.88rem;
    }

    .profile-detail-meta,
    .directory-grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 782px) {
    body.home,
    body.xk5-immersive-page {
        background: transparent;
    }

    body.home::before,
    body.xk5-immersive-page::before {
        z-index: -3;
        background:
            url("assets/hero-travel-duo-mobile-v2.jpg")
            center center / cover no-repeat;
        position: fixed;
        inset: 0;
    }

    body.home::after,
    body.xk5-immersive-page::after {
        z-index: -2;
        background: linear-gradient(
            180deg,
            rgba(9, 28, 40, 0.22) 0%,
            rgba(9, 28, 40, 0.1) 16%,
            rgba(9, 28, 40, 0.04) 30%,
            rgba(9, 28, 40, 0) 44%
        );
        position: fixed;
        inset: 0;
    }

    .hero {
        background: transparent;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(9, 28, 40, 0.24) 0%,
            rgba(9, 28, 40, 0.12) 12%,
            rgba(9, 28, 40, 0.03) 24%,
            rgba(9, 28, 40, 0) 38%
        );
        pointer-events: none;
    }

    .admin-bar .site-header {
        top: 46px;
    }

    body.home .site-header,
    body.xk5-immersive-page .site-header {
        top: 10px;
    }

    .hero__inner {
        padding: 132px 0 88px;
        gap: 14px;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.1rem);
        line-height: 1.04;
    }

    .hero__desc {
        max-width: 300px;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .hero__actions {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero__button {
        min-width: 0;
        padding: 12px 20px;
        font-size: 0.92rem;
    }

    .hero__download-note {
        margin-top: 2px;
        font-size: 0.84rem;
        text-align: center;
    }

    .site-nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav a {
        min-height: auto;
        padding: 0;
        font-size: 0.96rem;
    }

    .page-hero__box,
    .content-card {
        padding: 24px 20px;
    }

    .download-hero__actions {
        justify-content: flex-start;
    }

    .directory-shell {
        width: min(100vw - 28px, 1200px);
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .featured-profiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .featured-profiles {
        margin-top: -24px;
        padding-top: 0;
    }

    .featured-profiles .section-head h2 {
        font-size: 1.55rem;
    }

    .featured-profiles .section-head__more,
    .channel-feed__head a {
        font-size: 0.76rem;
    }

    .profile-tile {
        border-radius: 18px;
    }

    .profile-tile__media {
        min-height: 248px;
        padding: 12px;
    }

    .profile-tile__overlay {
        left: 10px;
        right: 10px;
        bottom: 10px;
        gap: 6px;
    }

    .profile-tile h3 {
        font-size: 0.92rem;
    }

    .profile-tile__summary {
        font-size: 0.72rem;
    }

    .profile-tile__meta {
        gap: 6px;
    }

    .profile-tile__meta span {
        font-size: 0.69rem;
    }

    .directory-filters,
    .directory-grid,
    .profile-detail-card__facts,
    .news-list__item {
        grid-template-columns: 1fr;
    }

    .directory-filters__meta {
        justify-content: flex-start;
        min-height: auto;
        padding-left: 0;
        white-space: normal;
    }

    .directory-download-guide {
        align-items: flex-start;
    }

    .filter-picker__panel {
        max-width: min(86vw, 420px);
    }

    .directory-toolbar,
    .profile-detail-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-spotlight {
        width: min(100vw - 28px, 1080px);
        padding-top: 124px;
    }

    .profile-focus {
        width: min(100vw - 28px, 1080px);
        padding-top: 160px;
    }

    .profile-focus__inner {
        padding: 10px;
    }

    .profile-focus__main {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .profile-focus__content {
        display: block;
        padding: 10px 2px 6px;
    }

    .profile-focus__head-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .profile-focus__download {
        margin-top: 10px;
    }

    .profile-download-guide__button,
    .directory-download-guide__button {
        width: 100%;
    }

    .profile-spotlight__media {
        min-height: 360px;
    }

    .profile-focus__gallery {
        width: 100%;
        padding: 0;
    }

    .profile-detail-meta,
    .directory-grid--related {
        grid-template-columns: 1fr;
    }

    .directory-grid--related-scroll .profile-tile--compact-related {
        min-width: 0;
    }

    .directory-grid--related-scroll {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .channel-strip {
        margin-top: 28px;
    }

    .news-feature-card,
    .news-article {
        padding: 22px;
        border-radius: 22px;
    }

    .news-feature-card h3 {
        font-size: 1.22rem;
    }

    .news-card__link {
        padding: 18px 18px 19px;
    }

    .section-head--news .section-head__more {
        position: static;
        transform: none;
        margin-top: 4px;
    }

    .section-head--news > div {
        text-align: left;
    }

    .channel-strip__grid {
        gap: 12px;
        padding-bottom: 48px;
    }

    .channel-feed {
        padding: 10px 10px 11px;
        border-radius: 14px;
    }

    .channel-feed__head {
        margin-bottom: 6px;
    }

    .channel-feed__head strong {
        font-size: 0.88rem;
    }

    .channel-feed__item {
        grid-template-columns: 42px 1fr;
        gap: 7px;
        padding: 5px;
    }

    .channel-feed:not(.channel-feed--news) .channel-feed__item {
        padding: 7px 0;
    }

    .channel-feed__thumb {
        border-radius: 9px;
    }

    .channel-feed:not(.channel-feed--news) .channel-feed__body {
        min-height: 44px;
        padding-top: 4px;
        padding-right: 102px;
    }

    .channel-feed__title-row strong,
    .channel-news__title {
        font-size: 0.78rem;
    }

    .channel-feed__meta {
        font-size: 0.7rem;
    }

    .channel-feed__time,
    .channel-news__item time {
        font-size: 0.64rem;
    }

    .news-layout__sidebar .channel-feed__item {
        grid-template-columns: 46px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 7px 0;
        align-items: center;
    }

    .news-layout__sidebar .channel-feed__thumb {
        width: 46px;
        height: 46px;
    }

    .news-layout__sidebar .channel-feed__body {
        min-height: 46px;
        padding-top: 0;
        padding-right: 0;
        justify-content: center;
    }

    .news-layout__sidebar .channel-feed__title-row strong {
        font-size: 0.82rem;
        line-height: 1.15;
    }

    .news-layout__sidebar .channel-feed__meta {
        margin-top: 3px;
        font-size: 0.68rem;
        gap: 4px 6px;
    }

    .news-layout__sidebar .channel-feed__time {
        position: static;
        display: block;
        margin-top: 0;
        font-size: 0.62rem;
        white-space: nowrap;
        text-align: right;
        align-self: end;
        line-height: 1.1;
    }

}

@media (max-width: 640px) {
    .profile-focus__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .profile-focus__thumb-visual {
        aspect-ratio: 3 / 4;
        height: auto;
    }

    .news-layout__sidebar .channel-feed {
        padding: 12px 10px 12px;
    }

    .news-layout__sidebar .channel-feed__item {
        grid-template-columns: 44px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 8px 0;
    }

    .news-layout__sidebar .channel-feed__thumb {
        width: 44px;
        height: 44px;
    }

    .news-layout__sidebar .channel-feed__title-row strong {
        font-size: 0.8rem;
    }

    .news-layout__sidebar .channel-feed__meta {
        font-size: 0.66rem;
    }

    .news-layout__sidebar .channel-feed__time {
        font-size: 0.6rem;
    }

    .profile-lightbox__dialog {
        padding: 20px;
    }

    .profile-lightbox__frame {
        width: min(100%, 320px);
    }

    .profile-lightbox__nav {
        width: 32px;
        height: 32px;
        font-size: 1.28rem;
    }

    .profile-lightbox__nav--prev {
        left: 12px;
    }

    .profile-lightbox__nav--next {
        right: 12px;
    }

    .profile-focus__topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-focus__content h1 {
        font-size: 1.72rem;
        text-align: center;
        width: 100%;
    }

    .profile-focus__info-panel {
        padding: 12px;
    }

    .profile-focus__info-row,
    .profile-focus__info-row--secondary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-focus__info-item {
        min-height: 54px;
        padding: 9px 10px 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(206, 220, 230, 0.84);
    }

    .profile-focus__info-item span {
        font-size: 0.52rem;
    }

    .profile-focus__info-item strong {
        font-size: 0.8rem;
    }

    .profile-focus__download-button {
        min-height: 46px;
        min-width: min(100%, 252px);
        padding: 0 22px;
        font-size: 0.9rem;
    }

    .profile-focus__info-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 560px) {
    .hero {
        background-position: 60% 18%;
    }

    .hero__inner {
        padding: 124px 0 78px;
    }

    .hero h1 {
        font-size: clamp(2rem, 11vw, 2.7rem);
    }

    .featured-profiles {
        margin-top: -12px;
    }

    .news-feature-card,
    .news-article,
    .news-card__link {
        padding: 18px;
    }

    .news-catalog__head {
        display: block;
    }

    .news-catalog__head span {
        display: block;
        margin-top: 6px;
    }

    .news-catalog__item {
        grid-template-columns: 1fr;
    }

    .news-catalog__thumb img {
        height: 176px;
    }

    .news-feature-card__highlights,
    .news-article__highlights {
        gap: 8px;
    }

    .news-feature-card__highlights span,
    .news-article__highlights span {
        min-height: 30px;
        padding: 0 12px;
        font-size: 0.76rem;
    }

    .featured-profiles__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .profile-tile__media {
        min-height: 214px;
        padding: 10px;
    }

    .profile-tile__overlay {
        left: 9px;
        right: 9px;
        bottom: 9px;
    }

    .channel-strip__grid {
        gap: 10px;
    }

    .directory-grid--related-scroll {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
