/*
Theme Name: Andrew Lim Professional
Author: Andrew Lim YH
Description: A professional finance and applied AI website, with an editable profile and native WordPress articles.
Version: 1.0.2
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: andrew-lim-professional
*/
:root {
  --background: #fff;
  --foreground: #15252c;
  --primary: #123e43;
  --primary-foreground: #fff;
  --border: #d9e1e2;
  --ring: #187f78;
  --muted: #f2f5f4;
  --muted-foreground: #526168;
  --accent: #bdf6db;
  --accent-foreground: #102f34;
  --card: #fff;
  --card-foreground: #15252c;
  --popover: #fff;
  --popover-foreground: #15252c;
  --secondary: #eef3f2;
  --secondary-foreground: #15252c;
  --destructive: #b42318;
  --radius: 0.3rem;
  --navy: #102b32;
  --mint: #bdf6db;
}
.dark {
  --background: #102b32;
  --foreground: #fff;
  --primary: #bdf6db;
  --primary-foreground: #102b32;
  --border: #345158;
  --ring: #bdf6db;
  --muted: #1e3b42;
  --muted-foreground: #c0ced0;
  --accent: #bdf6db;
  --accent-foreground: #102b32;
  --card: #17343b;
  --card-foreground: #fff;
  --popover: #17343b;
  --popover-foreground: #fff;
  --secondary: #23434a;
  --secondary-foreground: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  outline-offset: 5px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ring);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.1;
}
h2 {
  font-size: clamp(2.3rem, 4vw, 3.6rem);
}
h3 {
  line-height: 1.3;
  letter-spacing: -0.025em;
}
em {
  font-weight: 400;
}
.wrap {
  width: min(1240px, calc(100% - 100px));
  margin-inline: auto;
}
.site-header {
  height: 92px;
  background: white;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 20px;
  letter-spacing: -0.04em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-monogram {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid #183e43;
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.07em;
}
.brand small {
  font-weight: 400;
  font-size: 14px;
  color: #637174;
  letter-spacing: 0;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
}
.desktop-nav a:hover,
.footer-links a:hover {
  color: #137968;
}
.nav-contact {
  border-bottom: 1px solid #19373e;
  padding: 8px 0;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mobile-menu {
  display: none;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: #fff;
  padding: 12px;
  z-index: 99;
}
.skip-link:focus {
  top: 10px;
}
.hero {
  background: var(--navy);
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 58px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 44px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  height: 6px;
  width: 6px;
  background: var(--mint);
  border-radius: 50%;
}
.hero .eyebrow {
  color: #bbd2d3;
}
.intro-name {
  font-size: 19px;
  margin-top: 39px;
  margin-bottom: 18px;
  color: #d5e2e3;
}
.hero h1 {
  font-size: clamp(2.8rem, 4.6vw, 4.55rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.hero h1 em {
  color: var(--mint);
}
.hero-description {
  max-width: 480px;
  color: #c3d0d3;
  font-size: 16px;
  margin-top: 27px;
  line-height: 1.75;
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 31px;
}
.button {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 2px;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-mint {
  background: var(--mint);
  color: var(--navy);
}
.button-dark {
  background: var(--navy);
  color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #a6b2b3;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 14px;
}
.text-link:hover {
  color: #15816e;
}
.light {
  border-color: #5a747a;
  color: #fff;
}
.portrait-panel {
  height: 485px;
  background: #e9efea;
  position: relative;
  overflow: hidden;
  color: var(--navy);
}
.portrait-index {
  position: absolute;
  top: 25px;
  left: 26px;
  letter-spacing: 0.15em;
  font-size: 12px;
  z-index: 1;
}
.portrait-panel img {
  position: absolute;
  bottom: 48px;
  width: 100%;
  height: 89%;
  object-fit: contain;
  object-position: bottom;
}
.portrait-caption {
  position: absolute;
  bottom: 0;
  background: #d4e1da;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 23px;
  font-size: 12px;
}
.portrait-caption span:first-child {
  font-weight: 700;
}
.hero-bottom {
  border-top: 1px solid #345058;
  padding-top: 20px;
  padding-bottom: 23px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: #b9cdce;
  letter-spacing: 0.04em;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section {
  padding-block: 88px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.14fr 1fr;
  gap: 80px;
  align-items: center;
}
.video-cover {
  position: relative;
  background: #102b32;
  aspect-ratio: 16/10;
  overflow: hidden;
  color: #fff;
}
.video-cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-cover:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0007, transparent 45%, #000a);
}
.video-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  z-index: 1;
}
.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 66px;
  width: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  z-index: 1;
}
.video-bottom {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  z-index: 1;
}
.feature-copy .eyebrow {
  color: #55756f;
  margin-bottom: 24px;
}
.feature-copy h2 {
  margin-bottom: 23px;
}
.feature-copy > p:not(.eyebrow) {
  color: #526168;
  max-width: 390px;
  margin-bottom: 28px;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 33px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #53656a;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
@media (min-width: 1500px) {
  .hero-grid {
    padding-top: 80px;
    padding-bottom: 64px;
  }
  .portrait-panel {
    height: 530px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero-grid {
    gap: 32px;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .portrait-panel {
    height: 455px;
  }
  .feature-grid {
    gap: 40px;
  }
  .desktop-nav {
    gap: 22px;
  }
  .actions {
    gap: 20px;
  }
  .portrait-caption span:last-child {
    display: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .brand {
    font-size: 18px;
  }
  .brand small {
    font-size: 12px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 39px;
    gap: 38px;
    padding-bottom: 30px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 9.5vw, 4rem);
  }
  .intro-name {
    margin-top: 28px;
  }
  .portrait-panel {
    height: 410px;
    max-width: 510px;
    width: 100%;
  }
  .portrait-caption span:last-child {
    display: block;
  }
  .hero-bottom {
    align-items: start;
    font-size: 12px;
  }
  .hero-bottom > span {
    max-width: 190px;
  }
  .hero-bottom > a {
    max-width: 120px;
  }
  .section {
    padding-block: 58px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .feature-copy h2 br {
    display: none;
  }
  .feature-copy > p:not(.eyebrow) {
    max-width: none;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading .eyebrow,
.story-grid .eyebrow,
.social-grid .eyebrow {
  color: #51776b;
  margin-bottom: 20px;
}
.story-section {
  background: #f1f5f2;
  border-block: 1px solid #dce5de;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.16fr;
  gap: 100px;
}
.story-body > p {
  font-size: 18px;
  color: #42575c;
  margin-bottom: 23px;
  line-height: 1.85;
}
.story-body > p:first-child {
  font-size: 21px;
  color: #16383f;
}
.role-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.role-list span {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid #c2d2c9;
  border-radius: 2px;
  color: #315345;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}
.post-image {
  display: block;
  aspect-ratio: 1.62;
  overflow: hidden;
  background: #e7eeea;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.post-card:hover .post-image img {
  transform: scale(1.035);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #5b6b6e;
  margin: 20px 0 12px;
}
.post-meta > span:first-child {
  color: #2e6856;
}
.post-card h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.25;
}
.post-card h3 a:hover {
  color: #167666;
}
.post-excerpt {
  color: #647175;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid #d7dfdd;
  font-size: 13px;
  font-weight: 600;
}
.engagement-section {
  background: #f6f8f7;
  border-block: 1px solid #dce5de;
}
.section-aside {
  font-size: 14px;
  color: #647378;
}
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.engagement-card {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  background: white;
  border: 1px solid #dce4e1;
  align-items: stretch;
}
.engagement-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.engagement-card > div {
  padding: 25px;
}
.engagement-card .eyebrow {
  font-size: 12px;
  color: #4b7665;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.engagement-card h3 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 24px;
}
.engagement-card p:not(.eyebrow) {
  font-size: 13px;
  color: #677675;
  margin-top: 10px;
}
.engagement-card .read-link {
  font-size: 12px;
  margin-top: 20px;
}
.engagement-list {
  margin-top: 36px;
}
.engagement-list > a {
  display: grid;
  grid-template-columns: 230px 1fr 24px;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #d6e0da;
}
.engagement-list > a > span {
  font-size: 12px;
  color: #4c7064;
  letter-spacing: 0.04em;
}
.engagement-list h3 {
  font-size: 18px;
  font-weight: 500;
}
.engagement-list a:hover h3 {
  color: #167666;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.subcopy {
  color: #617276;
  margin-top: 21px;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}
.podcast {
  padding: 30px;
  background: #f2f5f4;
  border: 1px solid #dce4df;
}
.podcast iframe {
  border: 0;
  border-radius: 12px;
}
.newsletter-band {
  background: #dcebe1;
  padding: 38px 0;
}
.newsletter-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}
.newsletter-inner .eyebrow {
  color: #43695a;
  margin-bottom: 12px;
}
.newsletter-inner h2 {
  font-size: 34px;
  letter-spacing: -0.025em;
}
.contact-band {
  background: var(--navy);
  color: white;
}
.contact-band .eyebrow {
  color: #b6cecb;
  margin-bottom: 27px;
}
.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-band h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.3rem);
}
.round-link {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid #789c95;
  border-radius: 50%;
  color: var(--mint);
  flex-shrink: 0;
}
.round-link:hover {
  background: #22424a;
}
.email-link {
  display: inline-block;
  color: #bcebd5;
  font-size: 18px;
  margin-top: 30px;
  border-bottom: 1px solid #5e877c;
  padding-bottom: 5px;
}
.page-content {
  padding-top: 62px;
  padding-bottom: 90px;
  min-height: 70vh;
}
.page-heading {
  margin-bottom: 44px;
}
.page-heading > .text-link {
  margin-bottom: 24px;
}
.page-heading .eyebrow {
  color: #467161;
  margin-bottom: 22px;
}
.page-heading h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}
.page-heading > p:not(.eyebrow) {
  color: #5b6f72;
  margin-top: 23px;
  max-width: 620px;
  font-size: 18px;
}
.page-heading > .button {
  margin-top: 25px;
}
.category-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
  margin-bottom: 38px;
}
.category-nav a {
  font-size: 14px;
  padding: 7px 14px;
  border-radius: 2px;
}
.category-nav a[aria-current='page'] {
  background: var(--navy);
  color: white;
}
.category-nav a:not([aria-current='page']):hover {
  background: #e7efe9;
}
.category-nav span {
  opacity: 0.6;
  margin-left: 5px;
}
.blog-grid {
  row-gap: 54px;
}
.article-header {
  padding-block: 50px 35px;
  max-width: 1040px;
}
.article-header .post-meta {
  margin-top: 45px;
  justify-content: start;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
}
.article-header .post-meta a {
  margin-right: 8px;
}
.article-header h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  max-width: 1000px;
  line-height: 1.15;
}
.author {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 25px;
  font-size: 14px;
}
.author img {
  background: #e1e9df;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: top;
}
.article-hero {
  max-width: 1040px;
}
.article-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f2f5f2;
}
.reading-column {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}
.original-content {
  padding-top: 48px;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.9;
  color: #2f4145;
  overflow-wrap: anywhere;
}
.original-content p {
  margin: 0 0 1.4em;
}
.original-content p:empty {
  display: none;
}
.original-content h1,
.original-content h2,
.original-content h3,
.original-content h4 {
  margin: 1.5em 0 0.75em;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.original-content h1,
.original-content h2 {
  font-size: 30px;
}
.original-content h3 {
  font-size: 25px;
}
.original-content a {
  color: #1b7967;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.original-content figure {
  margin: 28px 0;
}
.original-content img {
  max-width: 100%;
  height: auto;
  margin: 20px auto;
}
.original-content ul,
.original-content ol {
  padding-left: 1.4em;
  margin-bottom: 24px;
  list-style: revert;
}
.original-content li {
  margin-block: 10px;
}
.original-content blockquote {
  border-left: 3px solid #4f8a70;
  margin: 28px 0;
  padding: 8px 0 8px 25px;
  color: #4f6263;
  font-style: italic;
}
.original-content figcaption {
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #617773;
  margin-top: 8px;
  text-align: center;
}
.original-content iframe {
  max-width: 100%;
  border: 0;
  min-height: 350px;
}
.original-content pre {
  overflow: auto;
  background: #f2f5f2;
  padding: 20px;
  font-size: 14px;
}
.original-content table {
  display: block;
  overflow: auto;
  width: 100%;
}
.original-content th,
.original-content td {
  padding: 10px;
  border: 1px solid var(--border);
}
.article-end {
  padding: 40px 0 80px;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.archive-section-title {
  font-size: 29px;
  margin: 40px 0 18px;
}
.archive-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 45px;
}
.archive-list > a {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.archive-list small {
  display: block;
  font-size: 12px;
  color: #72817f;
  margin-top: 5px;
}
.archive-frame {
  width: 100%;
  height: 760px;
  border: 1px solid var(--border);
  background: #f6f8f7;
}
.archive-text {
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--border);
}
.archive-text summary {
  cursor: pointer;
  font-weight: 600;
}
.saved-page-text {
  white-space: pre-line;
  margin-top: 24px;
  line-height: 1.9;
  color: #526865;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
}
.contact-email {
  display: inline-block;
  margin: 30px 0;
  font-size: 19px;
  color: #1e705c;
  border-bottom: 1px solid #9fbfb0;
  overflow-wrap: anywhere;
}
.contact-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
}
.contact-form {
  padding: 35px;
  background: #f3f7f4;
  border: 1px solid #dae5dd;
}
.contact-form h2 {
  font-size: 35px;
  margin-bottom: 27px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 21px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  display: block;
  border-radius: 2px;
  background: white;
  margin-top: 8px;
  width: 100%;
  font-size: 16px;
  padding: 11px 13px;
  height: auto;
  border: 1px solid #becfc4;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.name-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-note {
  font-size: 12px;
  color: #637871;
  margin-top: 14px;
}
.form-note a {
  text-decoration: underline;
}
.menu-button {
  border: 0;
  background: none;
  padding: 9px;
  color: var(--navy);
}
.mobile-sheet {
  padding: 56px 26px 26px !important;
}
.mobile-sheet nav {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.mobile-sheet nav a {
  font-size: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 1120px) {
  .engagement-grid {
    gap: 22px;
  }
  .engagement-card {
    grid-template-columns: 1fr;
  }
  .engagement-card > img {
    aspect-ratio: 1.6;
    height: auto;
    object-fit: cover;
  }
  .contact-layout {
    gap: 45px;
  }
  .story-grid {
    gap: 60px;
  }
  .post-meta {
    flex-wrap: wrap;
    gap: 6px;
  }
  .post-grid {
    gap: 25px;
  }
}
@media (max-width: 760px) {
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    margin-bottom: 16px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .story-body > p {
    font-size: 17px;
  }
  .story-body > p:first-child {
    font-size: 19px;
  }
  .post-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .post-card h3 {
    font-size: 27px;
  }
  .post-meta {
    font-size: 12px;
    gap: 12px;
    justify-content: space-between;
  }
  .post-excerpt {
    font-size: 15px;
  }
  .engagement-grid {
    grid-template-columns: 1fr;
  }
  .engagement-card {
    grid-template-columns: 1fr;
  }
  .engagement-card > img {
    width: 100%;
    aspect-ratio: 1.65;
    max-height: 350px;
  }
  .engagement-card h3 {
    font-size: 26px;
  }
  .engagement-list > a {
    grid-template-columns: 1fr 24px;
    gap: 9px;
  }
  .engagement-list > a > span {
    grid-column: 1;
  }
  .engagement-list h3 {
    grid-column: 1;
    font-size: 17px;
  }
  .engagement-list svg {
    grid-column: 2;
    grid-row: 1/3;
  }
  .social-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .newsletter-inner {
    align-items: start;
    flex-direction: column;
  }
  .newsletter-inner h2 {
    font-size: 32px;
  }
  .contact-band-inner {
    gap: 22px;
  }
  .contact-band h2 {
    font-size: 2.5rem;
  }
  .contact-band h2 br {
    display: none;
  }
  .round-link {
    width: 60px;
    height: 60px;
  }
  .round-link svg {
    width: 30px;
  }
  .page-content {
    padding-block: 40px 60px;
  }
  .page-heading h1 {
    font-size: 2.9rem;
  }
  .page-heading > p:not(.eyebrow) {
    font-size: 16px;
  }
  .category-nav {
    gap: 5px;
  }
  .category-nav a {
    padding: 7px 10px;
  }
  .archive-list {
    grid-template-columns: 1fr;
  }
  .article-header {
    padding-top: 35px;
  }
  .article-header .post-meta {
    margin-top: 30px;
    font-size: 12px;
  }
  .article-header h1 {
    font-size: 2.45rem;
  }
  .original-content {
    font-size: 18px;
    padding-top: 30px;
  }
  .article-end {
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 25px;
  }
  .name-fields {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .archive-frame {
    height: 600px;
  }
  .portrait-index {
    font-size: 12px;
  }
  .engagement-card .eyebrow {
    font-size: 12px;
  }
  .engagement-card .read-link {
    font-size: 14px;
  }
}

/* Professional presentation refinements. */
.hero h1 {
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}
.hero h1 em {
  font-style: normal;
}
.intro-name {
  font-size: 20px;
  letter-spacing: 0.01em;
  margin-top: 30px;
}
.hero-description {
  font-size: 17px;
  max-width: 470px;
}
.portrait-caption {
  background: #dce5df;
}
.story-section {
  background: #f5f7f6;
}
.story-body > p:first-child {
  font-size: 22px;
}
.engagement-card {
  grid-template-columns: 1fr;
  background: transparent;
  border: 0;
}
.engagement-card > img {
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.engagement-card > div {
  padding: 25px 0 12px;
}
.engagement-card h3 {
  font-size: 29px;
}
.engagement-card p:not(.eyebrow) {
  font-size: 15px;
}
.engagement-grid {
  gap: 42px;
}
.engagement-list {
  margin-top: 22px;
}
.podcast-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.podcast-feature .eyebrow {
  color: #51776b;
  margin-bottom: 20px;
}
.podcast-feature .text-link {
  margin-top: 25px;
}
.podcast-feature iframe {
  border: 0;
  border-radius: 12px;
}
.contact-band-description {
  margin-top: 23px;
  color: #c1d2d2;
  font-size: 16px;
}
.contact-methods {
  border-top: 1px solid #c4d2cc;
  margin-top: 7px;
}
.contact-method {
  display: block;
  padding: 28px 0 32px;
  border-bottom: 1px solid #c4d2cc;
}
.method-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #59746b;
  margin-bottom: 21px;
}
.method-label > svg:last-child {
  margin-left: auto;
}
.contact-method h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}
.contact-method p {
  color: #647573;
  font-size: 15px;
  margin-top: 13px;
}
.contact-method:hover h2 {
  color: #18775e;
}
.contact-layout {
  padding-top: 80px;
  padding-bottom: 110px;
}
.post-excerpt {
  font-size: 16px;
  line-height: 1.7;
  -webkit-line-clamp: 3;
}
.post-card .read-link {
  font-size: 14px;
}
.post-card h3 {
  font-size: 26px;
  line-height: 1.3;
}
.featured-post {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 52px;
  padding-bottom: 44px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.featured-post .post-image {
  aspect-ratio: 1.6;
}
.featured-post h3 {
  font-size: 38px;
}
.featured-post .post-meta {
  margin-top: 0;
  margin-bottom: 20px;
}
.featured-post .post-excerpt {
  font-size: 17px;
  display: block;
}
.featured-post .read-link {
  margin-top: 28px;
}
.blog-grid {
  row-gap: 55px;
}
.post-image {
  aspect-ratio: 1.65;
}
.section {
  padding-block: 76px;
}
.hero-bottom {
  font-size: 12px;
}
.footer-inner {
  font-size: 13px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
}
.contact-band .section {
  padding-block: 76px;
}
.article-header h1 {
  font-size: clamp(2.5rem, 4.4vw, 4rem);
}
@media (max-width: 1000px) {
  .featured-post {
    gap: 32px;
  }
  .featured-post h3 {
    font-size: 30px;
  }
  .contact-layout {
    gap: 45px;
  }
  .hero h1 {
    font-size: 3.1rem;
  }
  .podcast-feature {
    gap: 40px;
  }
  .engagement-card > img {
    height: 235px;
  }
}
@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.1rem);
  }
  .hero-description {
    font-size: 16px;
  }
  .featured-post {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 38px;
    padding-bottom: 38px;
  }
  .featured-post h3 {
    font-size: 30px;
  }
  .featured-post .post-meta {
    margin-bottom: 13px;
  }
  .featured-post .post-excerpt {
    font-size: 16px;
  }
  .engagement-card > img {
    height: auto;
    aspect-ratio: 1.6;
  }
  .engagement-card h3 {
    font-size: 27px;
  }
  .podcast-feature {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-layout {
    padding-block: 46px 65px;
    gap: 12px;
  }
  .contact-method h2 {
    font-size: 23px;
  }
  .section {
    padding-block: 55px;
  }
  .contact-band .section {
    padding-block: 55px;
  }
  .story-body > p:first-child {
    font-size: 20px;
  }
  .contact-band-description {
    max-width: 310px;
  }
  .post-card h3 {
    font-size: 27px;
  }
  .engagement-grid {
    gap: 28px;
  }
}

.wp-mobile-nav{display:none}.wp-mobile-nav summary{cursor:pointer;padding:12px;font-size:16px;font-weight:600}.wp-mobile-nav nav{position:absolute;right:0;top:100%;background:white;padding:22px;box-shadow:0 10px 30px #102b3222;min-width:240px;display:grid;gap:18px;z-index:50}.wp-mobile-nav a{padding:8px}.header-inner{position:relative}@media(max-width:760px){.wp-mobile-nav{display:block}}

.wp-block-image img{height:auto}.alignwide{max-width:1100px}.alignfull{width:100%}.wp-caption-text{font-size:.9rem;color:#526168}.screen-reader-text{position:absolute;width:1px;height:1px;overflow:hidden;clip-path:inset(50%)}.desktop-nav ul{display:flex;align-items:center;gap:30px;list-style:none;padding:0;margin:0}.wp-mobile-nav ul{list-style:none;padding:0;margin:0;display:grid;gap:12px}.pagination{display:flex;gap:14px;flex-wrap:wrap;margin:40px 0}.pagination .page-numbers{padding:9px 15px;border:1px solid var(--border)}.pagination .current{background:var(--navy);color:#fff}.original-content input,.original-content textarea{max-width:100%;border:1px solid var(--border);padding:10px}.original-content input[type=submit]{background:var(--navy);color:#fff}.engagement-list>div{display:grid;grid-template-columns:220px 1fr;gap:24px;padding:25px 0;border-bottom:1px solid var(--border)}.admin-bar .site-header{top:32px}@media(max-width:782px){.admin-bar .site-header{top:46px}}
/* Frameless portrait. */
.hero .portrait-panel{height:auto;width:100%;max-width:440px;justify-self:end;padding:0;background:transparent;border:0;border-radius:0;box-shadow:none;overflow:hidden}
.hero .portrait-panel img{position:static;display:block;width:100%;height:auto;object-fit:contain;object-position:center;filter:none;mix-blend-mode:normal;background:transparent;border:0;border-radius:0;box-shadow:none}
.hero .portrait-caption{display:none}
@media(max-width:760px){.hero .portrait-panel{justify-self:center;max-width:390px;padding:0;box-shadow:none}}

/* Fade the cutout gently into the surrounding hero background. */
.hero .portrait-panel img{-webkit-mask-image:linear-gradient(to bottom,#000 0%,#000 74%,transparent 100%);mask-image:linear-gradient(to bottom,#000 0%,#000 74%,transparent 100%)}
