:root {
  color-scheme: light;
  --bg: #e7f0ff;
  --bg-strong: #f8fbff;
  --panel: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(221, 234, 255, 0.24));
  --panel-strong: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(221, 234, 255, 0.3));
  --text: #0f1f38;
  --muted: #5d7290;
  --line: rgba(112, 145, 192, 0.2);
  --line-strong: rgba(95, 134, 193, 0.34);
  --shadow: 0 28px 80px rgba(52, 88, 144, 0.16);
  --shadow-soft: 0 16px 44px rgba(52, 88, 144, 0.1);
  --glass-border: rgba(255, 255, 255, 0.54);
  --glass-highlight: rgba(255, 255, 255, 0.82);
  --glass-lowlight: rgba(188, 213, 255, 0.2);
  --accent: #4b84ff;
  --accent-strong: #2d66e8;
  --accent-soft: #dbe8ff;
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.96), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(133, 182, 255, 0.28), transparent 24%),
    radial-gradient(circle at 76% 72%, rgba(149, 191, 255, 0.24), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ebf3ff 48%, #dde9fb 100%);
  color: var(--text);
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.8;
  z-index: 0;
}

body::before {
  top: 88px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(94, 153, 255, 0.22);
}

body::after {
  left: -140px;
  top: 340px;
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.54);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(113, 155, 245, 0.28);
  color: #0c1a31;
}

.shell {
  width: min(1140px, calc(100vw - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    backdrop-filter 180ms ease,
    box-shadow 180ms ease;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(235, 243, 255, 0.42);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  box-shadow: 0 16px 40px rgba(48, 84, 136, 0.08);
}

.brand {
  color: #50698a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav .lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(220, 233, 255, 0.2));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 12px 28px rgba(56, 92, 143, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: #36537a;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.page-main {
  padding: 44px 0 96px;
  position: relative;
  z-index: 1;
}

.hero-section {
  display: grid;
  gap: 32px;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 320px;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-kicker,
.section-eyebrow,
.info-label,
.post-card-date {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 24px;
}

.hero-top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-avatar-tile {
  width: 132px;
  height: 132px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.hero-avatar-tile img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
  background: white;
}

.hero-bubble {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: #544d46;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(22, 19, 15, 0.05);
}

.hero-heading {
  margin-top: 28px;
}

.hero-heading-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  color: #11100f;
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero-divider {
  color: rgba(23, 20, 17, 0.24);
}

.hero-boxed-accent {
  padding: 6px 12px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.hero-hashtag-stack {
  margin-top: 20px;
  display: grid;
  gap: 8px;
  color: #3b3631;
  font-size: 15px;
  font-weight: 600;
}

.hero-hashtag-stack p {
  margin: 0;
}

.hero-summary {
  max-width: 62ch;
  margin: 28px 0 0;
  color: #44403b;
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filled-action,
.outline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.filled-action {
  background: #171411;
  color: #fffdf8;
  box-shadow: 0 18px 40px rgba(23, 20, 17, 0.12);
}

.outline-action {
  background: rgba(255, 255, 255, 0.64);
  color: var(--text);
}

.filled-action:hover,
.outline-action:hover,
.filled-action:focus-visible,
.outline-action:focus-visible {
  transform: translateY(-1px);
}

.editorial-card,
.editorial-card-strong {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.editorial-card-strong {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.editorial-card {
  padding: 24px;
}

.section-eyebrow {
  margin: 0;
}

.info-stack {
  margin-top: 18px;
  display: grid;
  gap: 22px;
}

.info-label {
  margin: 0 0 10px;
}

.info-value,
.info-copy {
  margin: 0;
}

.info-value-large {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.info-value {
  font-size: 16px;
  font-weight: 600;
  color: #1d1a17;
}

.info-copy {
  color: #4b443d;
  font-size: 15px;
  line-height: 1.8;
}

.soft-divider-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: #625c54;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-icon:hover,
.contact-icon:focus-visible {
  color: var(--text);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.email-link {
  display: inline-flex;
  width: fit-content;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.org-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  vertical-align: middle;
}

.org-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 10px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(58, 92, 142, 0.14);
  overflow: hidden;
}

.org-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.org-logo--shenwan img {
  transform: scale(1.5);
  transform-origin: center;
}

.info-value .org-inline,
.experience-title .org-inline,
.article-meta-pill .org-inline {
  max-width: 100%;
}

.article-meta-pill .org-inline {
  gap: 8px;
}

.article-meta-pill .org-logo {
  width: 26px;
  height: 26px;
  padding: 2px;
  border-radius: 8px;
}

.photo-ribbon-shell {
  margin-top: 72px;
  padding: 6px 0 10px;
  overflow-x: auto;
}

.photo-ribbon-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
  padding: 6px 2px 18px;
}

.photo-ribbon-card {
  width: clamp(210px, 24vw, 250px);
  aspect-ratio: 4 / 5;
  margin-top: var(--photo-offset, 0);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transform: rotate(var(--photo-rotate, 0deg));
}

.photo-ribbon-image {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

.soft-divider {
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}

.content-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.section-copy {
  margin-bottom: 26px;
}

.section-intro {
  max-width: 52ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-title,
.side-title {
  margin: 0;
  color: #1c1815;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.posts-section {
  display: grid;
  gap: 16px;
}

.post-list {
  display: grid;
  gap: 16px;
}

.post-card {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(24, 20, 16, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.post-card-link {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
  color: inherit;
}

.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(24, 20, 16, 0.07);
}

.post-card-media {
  position: relative;
  min-height: 172px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
    var(--post-bg);
  color: var(--post-fg);
}

.post-card-media::before,
.post-card-media::after {
  content: "";
  position: absolute;
  border: 1px solid var(--post-line);
  border-radius: 18px;
}

.post-card-media::before {
  top: 18px;
  left: 18px;
  width: 48px;
  height: 48px;
}

.post-card-media::after {
  right: 18px;
  bottom: 18px;
  width: 66px;
  height: 18px;
  border-radius: 999px;
}

.post-card-index {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.post-card-symbol {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 44px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.post-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 22px 20px;
  min-width: 0;
}

.post-card-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.post-card-date {
  margin: 0;
}

.post-card-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -0.04em;
  max-width: 100%;
  word-break: break-word;
}

.post-card-description {
  margin: 0;
  color: #4b443d;
  font-size: 15px;
  line-height: 1.85;
  max-width: 100%;
  word-break: break-word;
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-card-read {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.54);
  color: #3b3631;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.58);
  color: #4f4942;
  font-size: 13px;
  font-weight: 700;
}

.side-column {
  display: grid;
  gap: 18px;
}

.experience-list {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.experience-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.experience-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.experience-title {
  margin: 0;
  color: #1b1815;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.experience-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.article-main {
  padding: 44px 0 96px;
  position: relative;
  z-index: 1;
}

.article-shell {
  width: min(860px, 100%);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-header {
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.article-title {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.article-summary {
  max-width: 58ch;
  margin: 20px 0 0;
  color: #47413b;
  font-size: 18px;
  line-height: 1.85;
}

.article-meta-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.56);
  color: #47413b;
  font-size: 12px;
  font-weight: 700;
}

.article-layout {
  margin-top: 24px;
  display: grid;
  gap: 22px;
}

.article-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 44px rgba(24, 20, 16, 0.04);
}

.article-body {
  padding: 34px;
}

.article-body p {
  margin: 0 0 18px;
  color: #36312d;
  font-size: 16px;
  line-height: 1.95;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-section + .article-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 16px;
  color: #1a1714;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.article-section h3 {
  margin: 24px 0 12px;
  color: #1f1b18;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.article-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.article-fact {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.article-fact-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-fact-value {
  margin: 0;
  color: #1a1714;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.article-quote {
  margin: 26px 0;
  padding: 24px;
  border-left: 3px solid #171411;
  border-radius: 0 20px 20px 0;
  background: rgba(249, 246, 240, 0.9);
  color: #1f1a16;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.03em;
}

.article-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #36312d;
}

.article-list li {
  margin-bottom: 10px;
  line-height: 1.85;
}

.article-list li:last-child {
  margin-bottom: 0;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 22px 24px;
}

.article-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.56);
  color: #2f2a26;
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 30px;
  color: var(--muted);
  font-size: 12px;
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.hero-heading-line,
.section-title,
.side-title,
.article-title,
.experience-title {
  color: #10213a;
}

.hero-summary,
.section-intro,
.info-copy,
.post-card-description,
.experience-note,
.article-summary,
.article-body p,
.article-list,
.article-fact-label,
.article-meta-pill,
.email-link {
  color: #4d6483;
}

.hero-avatar-tile,
.hero-bubble,
.editorial-card,
.editorial-card-strong,
.photo-ribbon-card,
.post-card,
.article-header,
.article-card,
.article-fact {
  position: relative;
  border-color: var(--glass-border);
  background: var(--panel);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 26px 60px rgba(52, 88, 144, 0.12);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.site-nav .lang-toggle,
.outline-action,
.contact-icon,
.post-card-read,
.post-card-tag,
.article-meta-pill,
.article-nav-link {
  border-color: var(--glass-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(222, 235, 255, 0.22));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 14px 30px rgba(52, 88, 144, 0.08);
  backdrop-filter: blur(22px) saturate(165%);
  -webkit-backdrop-filter: blur(22px) saturate(165%);
}

.hero-avatar-tile {
  border-radius: 34px;
}

.hero-avatar-tile img {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.74), transparent 56%),
    #dbe8fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-bubble {
  color: #32547c;
}

.hero-boxed-accent {
  border-color: rgba(255, 255, 255, 0.54);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(223, 235, 255, 0.24));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 18px 38px rgba(52, 88, 144, 0.08);
}

.filled-action {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(180deg, #79aaff 0%, var(--accent) 42%, var(--accent-strong) 100%);
  color: #f8fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 22px 44px rgba(44, 95, 201, 0.24);
}

.outline-action {
  color: #24456e;
}

.filled-action:hover,
.outline-action:hover,
.filled-action:focus-visible,
.outline-action:focus-visible {
  transform: translateY(-2px);
}

.contact-icon,
.email-link,
.article-nav-link,
.post-card-read {
  color: #31547f;
}

.contact-icon:hover,
.contact-icon:focus-visible,
.article-nav-link:hover,
.article-nav-link:focus-visible,
.post-card:hover .post-card-read {
  color: #17345b;
}

.photo-ribbon-shell {
  scrollbar-color: rgba(92, 131, 196, 0.42) transparent;
}

.photo-ribbon-card {
  border-radius: 30px;
}

.photo-ribbon-image {
  box-shadow: 0 18px 34px rgba(61, 94, 144, 0.12);
}

.soft-divider,
.soft-divider-block,
.site-footer {
  border-color: rgba(115, 150, 198, 0.2);
}

.content-grid .editorial-card {
  border-color: rgba(132, 166, 218, 0.34);
  background:
    linear-gradient(180deg, rgba(252, 254, 255, 0.8), rgba(203, 221, 248, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 28px 56px rgba(53, 89, 144, 0.14);
}

.post-card {
  border-color: rgba(132, 166, 218, 0.34);
  background:
    linear-gradient(180deg, rgba(251, 254, 255, 0.82), rgba(195, 215, 245, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 30px 60px rgba(52, 88, 144, 0.15);
}

.post-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 36px 72px rgba(52, 88, 144, 0.18);
}

.post-card-media {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.48), transparent 56%),
    linear-gradient(180deg, rgba(216, 228, 255, 0.34), rgba(118, 163, 243, 0.1)),
    var(--post-bg);
}

.post-card-media::before,
.post-card-media::after {
  border-color: rgba(255, 255, 255, 0.42);
}

.post-card-title,
.info-value,
.info-value-large,
.article-section h2,
.article-section h3,
.article-fact-value {
  color: #122644;
}

.post-card-tag {
  color: #48698f;
}

.article-header {
  background: var(--panel-strong);
}

.article-quote {
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-left: 3px solid rgba(75, 132, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(220, 233, 255, 0.28));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 24px 48px rgba(52, 88, 144, 0.08);
  color: #17345b;
}

.article-nav {
  border-top: 1px solid rgba(115, 150, 198, 0.18);
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(225, 236, 255, 0.34));
}

@media (max-width: 980px) {
  .hero-section,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card-strong {
    position: static;
  }

  .photo-ribbon-shell {
    margin-top: 48px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 24px, 1140px);
  }

  .site-header-inner {
    padding: 14px 0;
  }

  .brand {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .page-main {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .hero-avatar-tile {
    width: 108px;
    height: 108px;
    border-radius: 24px;
  }

  .hero-avatar-tile img {
    border-radius: 18px;
  }

  .hero-bubble {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-heading-line {
    gap: 10px;
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .hero-boxed-accent {
    padding: 5px 10px 8px;
    border-radius: 14px;
  }

  .hero-summary {
    font-size: 16px;
  }

  .editorial-card,
  .editorial-card-strong {
    padding: 22px;
    border-radius: 26px;
  }

  .photo-ribbon-shell {
    margin-top: 40px;
  }

  .photo-ribbon-card {
    width: 210px;
    border-radius: 24px;
  }

  .photo-ribbon-image {
    border-radius: 18px;
  }

  .section-title,
  .side-title {
    font-size: 27px;
  }

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

  .post-card-link {
    grid-template-columns: 1fr;
  }

  .post-card-media {
    min-height: 132px;
  }

  .post-card-symbol {
    margin-top: 28px;
    font-size: 30px;
  }

  .post-card-title {
    font-size: 22px;
  }

  .article-main {
    padding-top: 30px;
    padding-bottom: 72px;
  }

  .article-header,
  .article-body {
    padding: 24px;
  }

  .article-title {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
  }

  .article-summary {
    font-size: 16px;
  }

  .article-facts {
    grid-template-columns: 1fr;
  }

  .article-section h2 {
    font-size: 24px;
  }

  .article-quote {
    padding: 20px;
    font-size: 18px;
  }

  .site-footer-inner {
    padding-bottom: 24px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}
