@charset "UTF-8";
:root {
  --my-theme-bg: #fffef8;
  --my-theme-bg-alt: #f7f7f5;
  --my-theme-text: #121212;
  --my-theme-text-soft: #333333;
  --my-theme-muted: #666666;
  --my-theme-border: #e2e2e2;
  --my-theme-border-dark: #d0d0d0;
  --my-theme-accent: #b91c1c;
  --my-theme-link: #326891;
  --my-theme-link-hover: #121212;
  --my-theme-font-heading: 'Playfair Display', 'Times New Roman', Times, Georgia, serif;
  --my-theme-font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --my-theme-font-ui: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --my-theme-container: 1200px;
  --my-theme-radius: 2px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--my-theme-bg);
  color: var(--my-theme-text);
  font-family: var(--my-theme-font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--my-theme-container);
  margin: 0 auto;
  padding: 0 20px;
}

.site-content {
  padding: 40px 0;
}

.site-content .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  body.has-sidebar .site-content .container {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

hr {
  border: 0;
  border-top: 1px solid var(--my-theme-border);
  margin: 2em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--my-theme-font-heading);
  color: var(--my-theme-text);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 1.25em;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

a {
  color: var(--my-theme-link);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--my-theme-link-hover);
  text-decoration: underline;
}

blockquote {
  border-left: 3px solid var(--my-theme-text);
  margin: 1.5em 0;
  padding: 0.25em 1.25em;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--my-theme-text-soft);
}
blockquote cite {
  display: block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--my-theme-muted);
  font-style: normal;
  margin-top: 8px;
}
blockquote cite::before {
  content: "— ";
}

code, pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.9em;
  background: var(--my-theme-bg-alt);
  border-radius: var(--my-theme-radius);
}

code {
  padding: 2px 6px;
}

pre {
  padding: 16px;
  overflow-x: auto;
  border: 1px solid var(--my-theme-border);
}
pre code {
  padding: 0;
  background: transparent;
}

.site-header {
  background: var(--my-theme-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  position: relative;
  text-align: center;
}

.site-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 100%;
}
.site-branding .custom-logo {
  max-height: 70px;
  max-width: 300px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: opacity 0.2s ease;
}
.site-branding .custom-logo:hover {
  opacity: 0.85;
}
.site-branding .custom-logo-link {
  display: inline-block;
  line-height: 0;
}
.site-branding .site-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.site-branding .site-title a {
  color: var(--my-theme-text);
}
.site-branding .site-title a:hover {
  text-decoration: none;
  color: var(--my-theme-accent);
}
.site-branding .site-description {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-muted);
  margin: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--my-theme-text);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.menu-toggle .hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}
.menu-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.menu-toggle:hover {
  color: var(--my-theme-accent);
}

.main-navigation {
  position: relative;
  background: var(--my-theme-bg);
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 1px solid var(--my-theme-border);
  padding: 0;
  transition: box-shadow 0.3s ease;
}
.main-navigation.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: nav-slide-down 0.4s ease;
}
.main-navigation .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.main-navigation > .container > ul,
.main-navigation ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.main-navigation li {
  position: relative;
}
.main-navigation li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 18px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-navigation li > a:hover {
  color: var(--my-theme-accent);
}

@keyframes nav-slide-down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
body.nav-is-stuck {
  padding-top: 52px;
}

.menu-item-dark-mode {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding-left: 16px;
  border-left: 1px solid var(--my-theme-border);
  list-style: none;
}
.menu-item-dark-mode .dark-mode-toggle {
  background: transparent;
  border: 1px solid var(--my-theme-border-dark);
  color: var(--my-theme-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.menu-item-dark-mode .dark-mode-toggle:hover {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-color: var(--my-theme-text);
}
.menu-item-dark-mode .dark-mode-toggle .icon-moon {
  display: none;
}

html.dark-mode .menu-item-dark-mode .dark-mode-toggle .icon-sun {
  display: none;
}
html.dark-mode .menu-item-dark-mode .dark-mode-toggle .icon-moon {
  display: inline;
}

@media (max-width: 767px) {
  .header-inner {
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 14px 20px;
  }
  .site-branding {
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    gap: 4px;
    text-align: left;
  }
  .site-branding .custom-logo {
    max-height: 40px;
    max-width: 180px;
  }
  .site-branding .site-title {
    font-size: 1.35rem;
    text-align: left;
    line-height: 1.15;
  }
  .site-branding .site-description {
    font-size: 0.65rem;
    text-align: left;
  }
  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
  .main-navigation {
    position: relative !important;
    padding: 0;
  }
  .main-navigation.is-stuck {
    position: relative !important;
    animation: none;
    box-shadow: none;
  }
  .main-navigation .container {
    display: block;
  }
  .main-navigation > .container > ul,
  .main-navigation ul.menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-navigation.toggled > .container > ul, .main-navigation.toggled ul.menu {
    display: flex;
  }
  .main-navigation li {
    border-bottom: 1px solid var(--my-theme-border);
    width: 100%;
  }
  .main-navigation li > a {
    padding: 14px 16px;
    justify-content: space-between;
  }
  .main-navigation li:last-child {
    border-bottom: 0;
  }
  .menu-item-dark-mode {
    display: block;
    margin: 0;
    padding: 12px 16px;
    border-left: 0;
    border-top: 1px solid var(--my-theme-border);
    text-align: center;
  }
  .menu-item-dark-mode .dark-mode-toggle {
    width: auto;
    height: auto;
    padding: 10px 20px;
    border-radius: 999px;
  }
  body.nav-is-stuck {
    padding-top: 0;
  }
}
.header-info-bar {
  background: var(--my-theme-bg-alt);
  border-bottom: 1px solid var(--my-theme-border);
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--my-theme-text-soft);
}

.header-info-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
}

.header-info-left,
.header-info-right {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.header-info-time,
.header-info-date,
.header-info-weather {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.info-icon {
  font-size: 0.85rem;
  line-height: 1;
}

.info-text {
  color: var(--my-theme-text);
  font-weight: 600;
}

.info-location {
  color: var(--my-theme-muted);
  font-weight: 400;
  margin-left: 4px;
}
.info-location:not(:empty)::before {
  content: "· ";
}

@media (max-width: 600px) {
  .header-info-inner {
    justify-content: center;
    text-align: center;
  }
  .header-info-left,
  .header-info-right {
    justify-content: center;
  }
}
.main-navigation ul.menu,
.main-navigation ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.main-navigation li {
  position: relative;
}
.main-navigation li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-navigation li > a:hover {
  color: var(--my-theme-accent);
}
.main-navigation .dropdown-arrow {
  font-size: 0.7em;
  opacity: 0.6;
  display: inline-block;
}
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--my-theme-bg);
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 2px solid var(--my-theme-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.main-navigation .sub-menu > li {
  width: auto;
}
.main-navigation .sub-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-text);
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}
.main-navigation .sub-menu > li > a:hover {
  color: var(--my-theme-accent);
  border-bottom-color: var(--my-theme-accent);
}
.main-navigation > ul > li > .sub-menu {
  top: 100%;
  left: 0;
}
.main-navigation > ul > li > .sub-menu > li > .sub-menu {
  top: 100%;
  left: 0;
  z-index: 201;
  background: var(--my-theme-bg-alt);
}
@media (hover: hover) and (pointer: fine) {
  .main-navigation li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .main-navigation > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-navigation li {
    border-bottom: 1px solid var(--my-theme-border);
  }
  .main-navigation li > a {
    padding: 14px 16px !important;
    justify-content: space-between;
  }
  .main-navigation .sub-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    background: var(--my-theme-bg-alt);
    display: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    z-index: auto !important;
  }
  .main-navigation .sub-menu > li {
    width: 100% !important;
    border-bottom: 1px solid var(--my-theme-border);
  }
  .main-navigation .sub-menu > li > a {
    padding: 12px 24px !important;
    font-size: 0.8rem;
    text-transform: none;
    border-bottom: 0;
    justify-content: space-between;
  }
  .main-navigation li.is-open > .sub-menu {
    display: flex !important;
  }
  .main-navigation .sub-menu .sub-menu > li > a {
    padding-left: 40px !important;
  }
  .main-navigation .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 56px !important;
  }
}
.nav-pills-bar {
  background: var(--my-theme-bg);
  border-bottom: 1px solid var(--my-theme-border);
  padding: 12px 0;
}

.nav-pills-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-pills-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-muted);
  flex-shrink: 0;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--my-theme-border-dark);
  border-radius: 999px;
  color: var(--my-theme-text);
  background: transparent;
  text-decoration: none;
  transition: all var(--my-theme-transition, 0.2s) ease;
}
.nav-pill:hover, .nav-pill:focus {
  background: var(--my-theme-accent);
  color: #fff;
  border-color: var(--my-theme-accent);
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-pill-count {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--my-theme-muted);
  background: var(--my-theme-bg-alt);
  padding: 1px 6px;
  border-radius: 999px;
  transition: all var(--my-theme-transition, 0.2s) ease;
}

.nav-pill:hover .nav-pill-count {
  color: var(--my-theme-accent);
  background: #fff;
}

@media (max-width: 640px) {
  .nav-pills-inner {
    gap: 8px;
  }
  .nav-pills-label {
    width: 100%;
  }
  .nav-pill {
    font-size: 0.68rem;
    padding: 5px 12px;
  }
}
.site-footer {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  padding: 40px 0 24px;
  margin-top: 60px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.85rem;
  color: var(--my-theme-text-soft);
}

.footer-widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--my-theme-border-dark);
  margin-bottom: 20px;
}
@media (min-width: 640px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-widgets {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-widget-title {
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.site-info {
  margin: 0;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.footer-menu a {
  color: var(--my-theme-text-soft);
  font-size: 0.8rem;
}
.footer-menu a:hover {
  color: var(--my-theme-accent);
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.post-card .post-thumbnail img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}
.post-card .entry-title {
  font-size: 1.4rem;
  line-height: 1.25;
  margin: 0 0 8px;
}
.post-card .entry-title a {
  color: var(--my-theme-text);
}
.post-card .entry-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.entry-meta {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-muted);
  margin-bottom: 12px;
}
.entry-meta a {
  color: var(--my-theme-muted);
}

.entry-summary {
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  margin-bottom: 12px;
}

.read-more {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-accent);
  align-self: flex-start;
  border-bottom: 1px solid var(--my-theme-accent);
  padding-bottom: 2px;
}
.read-more:hover {
  color: var(--my-theme-text);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

.category-badge {
  display: inline-block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-accent);
  padding: 4px 0;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--my-theme-accent);
}
.category-badge:hover {
  color: var(--my-theme-text);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

.widget-area {
  font-size: 0.95rem;
}

.widget {
  border-top: 2px solid var(--my-theme-text);
  padding-top: 16px;
  margin-bottom: 32px;
}

.widget-title {
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget ul li {
  border-bottom: 1px solid var(--my-theme-border);
  padding: 8px 0;
}
.widget ul li a {
  color: var(--my-theme-text);
}
.widget ul li a:hover {
  color: var(--my-theme-accent);
}

.widget_search .search-form {
  display: flex;
  gap: 6px;
}
.widget_search .search-form input[type=search] {
  flex: 1;
  font-family: var(--my-theme-font-body);
  font-size: 0.95rem;
  padding: 8px 12px;
  background: transparent;
  color: var(--my-theme-text);
  border: 1px solid var(--my-theme-border-dark);
  border-radius: var(--my-theme-radius);
}
.widget_search .search-form input[type=search]:focus {
  outline: none;
  border-color: var(--my-theme-accent);
}
.widget_search .search-form button {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border: 0;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--my-theme-radius);
}
.widget_search .search-form button:hover {
  background: var(--my-theme-accent);
}

.nyt-article {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

.article-header {
  text-align: center;
  margin-bottom: 32px;
}

.article-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: bold;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.article-deck {
  font-family: var(--my-theme-font-body);
  font-size: 1.25rem;
  text-align: justify;
  color: var(--my-theme-text-soft);
  line-height: 1.5;
  margin: 0 0 24px;
}

.article-meta {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  text-align: justify;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-muted);
  margin-bottom: 20px;
}
.article-meta .byline a {
  color: var(--my-theme-text);
  font-weight: 600;
}
.article-meta .read-time {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--my-theme-border);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 1px solid var(--my-theme-border);
  margin: 24px 0;
}
.share-buttons.share-bottom {
  margin-top: 40px;
}

.share-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--my-theme-muted);
  margin-right: 6px;
}

.share-link {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-text);
  border: 1px solid var(--my-theme-border-dark);
  padding: 6px 12px;
  border-radius: var(--my-theme-radius);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.share-link:hover {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-color: var(--my-theme-text);
  text-decoration: none;
}
.share-link.copy-link.copied {
  background: var(--my-theme-accent);
  color: #fff;
  border-color: var(--my-theme-accent);
}

.article-hero {
  margin: 0 0 32px;
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-hero figcaption {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  color: var(--my-theme-muted);
  margin-top: 8px;
  text-align: right;
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 8px;
}

.article-body {
  font-family: var(--my-theme-font-body);
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--my-theme-text);
}
.article-body > * {
  margin-bottom: 1.25em;
}
.article-body > p:first-of-type::first-letter {
  font-family: var(--my-theme-font-heading);
  font-size: 4.5em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  font-weight: 700;
  color: var(--my-theme-text);
}
.article-body > p:first-of-type {
  text-indent: 0;
}
.article-body h2 {
  font-size: 1.75rem;
  margin-top: 1.5em;
}
.article-body h3 {
  font-size: 1.4rem;
  margin-top: 1.4em;
}
.article-body blockquote {
  border-left: 3px solid var(--my-theme-accent);
  font-size: 1.25rem;
  font-style: italic;
  padding: 0.5em 1.5em;
  margin: 1.5em 0;
}
.article-body a {
  border-bottom: 1px solid currentColor;
}

.article-footer {
  margin-top: 40px;
}
.article-footer .tags-links {
  font-family: var(--my-theme-font-ui);
  font-size: 0.85rem;
  padding-top: 20px;
  border-top: 1px solid var(--my-theme-border);
}

.meta-label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--my-theme-muted);
  margin-right: 8px;
}

.post-navigation {
  max-width: 740px;
  margin: 60px auto 0;
  padding: 24px 20px;
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 1px solid var(--my-theme-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .post-navigation {
    grid-template-columns: 1fr 1fr;
  }
}
.post-navigation a {
  color: var(--my-theme-text);
}
.post-navigation .nav-label {
  display: block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--my-theme-muted);
  margin-bottom: 4px;
}
.post-navigation .nav-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.15rem;
  line-height: 1.3;
}
.post-navigation .nav-next {
  text-align: right;
}

.nyt-comments {
  max-width: 740px;
  margin: 60px auto 0;
  padding: 40px 20px 0;
  border-top: 3px double var(--my-theme-text);
}

.comments-header {
  margin-bottom: 24px;
}

.comments-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .children {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.nyt-comment {
  padding: 20px 0;
  border-top: 1px solid var(--my-theme-border);
}
.comment-list > .nyt-comment:first-child {
  border-top: 0;
}

.comment-list .children .nyt-comment {
  margin-left: 40px;
  padding-left: 20px;
  border-left: 2px solid var(--my-theme-border);
  border-top: 0;
}
@media (max-width: 600px) {
  .comment-list .children .nyt-comment {
    margin-left: 16px;
    padding-left: 12px;
  }
}

.comment-body {
  position: relative;
}

.comment-meta {
  margin-bottom: 12px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.comment-author-info .fn {
  font-family: var(--my-theme-font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--my-theme-text);
  display: block;
  font-style: normal;
}

.comment-metadata {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  color: var(--my-theme-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comment-metadata a {
  color: var(--my-theme-muted);
}

.comment-awaiting-moderation {
  color: var(--my-theme-accent);
  font-style: normal;
  margin-left: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.comment-content {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--my-theme-text-soft);
  margin-bottom: 10px;
  margin-left: 52px;
}
@media (max-width: 600px) {
  .comment-content {
    margin-left: 0;
  }
}
.comment-content p:last-child {
  margin-bottom: 0;
}

.comment-actions {
  margin-left: 52px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 600px) {
  .comment-actions {
    margin-left: 0;
  }
}
.comment-actions .reply-link a,
.comment-actions .edit-link a {
  color: var(--my-theme-muted);
  font-weight: 600;
  margin-right: 16px;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.comment-actions .reply-link a:hover,
.comment-actions .edit-link a:hover {
  color: var(--my-theme-accent);
  border-color: var(--my-theme-accent);
  text-decoration: none;
}

.comment-respond {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 3px double var(--my-theme-text);
}

.comment-reply-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.5rem;
  margin: 0 0 16px;
}

.comment-notes {
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  color: var(--my-theme-muted);
  margin-bottom: 20px;
}

.comment-form p {
  margin-bottom: 16px;
}
.comment-form label {
  display: block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-text);
  margin-bottom: 6px;
}
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  width: 100%;
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  padding: 10px 12px;
  background: transparent;
  color: var(--my-theme-text);
  border: 1px solid var(--my-theme-border-dark);
  border-radius: var(--my-theme-radius);
  transition: border-color 0.2s ease;
}
.comment-form input[type=text]:focus,
.comment-form input[type=email]:focus,
.comment-form input[type=url]:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--my-theme-accent);
}
.comment-form .submit {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border: 0;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: var(--my-theme-radius);
  transition: background 0.2s ease;
}
.comment-form .submit:hover {
  background: var(--my-theme-accent);
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-form-cookies-consent label {
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.comment-form-cookies-consent input {
  width: auto;
}

.comments-pagination {
  margin-top: 24px;
  text-align: center;
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nyt-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header-single {
  text-align: center;
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.page-title-single {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.page-hero {
  margin: 0 0 32px;
}
.page-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.page-body {
  font-family: var(--my-theme-font-body);
  font-size: 1.1875rem;
  line-height: 1.75;
  color: var(--my-theme-text);
}
.page-body > * {
  margin-bottom: 1.25em;
}
.page-body h2 {
  font-size: 1.75rem;
  margin-top: 1.5em;
}
.page-body h3 {
  font-size: 1.4rem;
  margin-top: 1.4em;
}
.page-body blockquote {
  border-left: 3px solid var(--my-theme-accent);
  font-size: 1.25rem;
  font-style: italic;
  padding: 0.5em 1.5em;
  margin: 1.5em 0;
}
.page-body a {
  border-bottom: 1px solid currentColor;
}
.page-body ul, .page-body ol {
  padding-left: 1.5em;
}
.page-body ul li, .page-body ol li {
  margin-bottom: 0.5em;
}
.page-body img {
  border-radius: var(--my-theme-radius);
}

.page-footer {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--my-theme-border);
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-muted);
}

.page-category-posts {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 3px double var(--my-theme-text);
}

.page-category-posts-header {
  margin-bottom: 32px;
  text-align: center;
}

.page-category-posts-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--my-theme-border);
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}

.page-no-posts {
  margin-top: 48px;
  padding: 32px;
  text-align: center;
  background: var(--my-theme-bg-alt);
  border: 1px dashed var(--my-theme-border-dark);
}
.page-no-posts p {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-muted);
  margin: 0;
}

.page-category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--my-theme-border);
}

.category-pill {
  display: inline-block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border: 1px solid var(--my-theme-border-dark);
  border-radius: 999px;
  color: var(--my-theme-text);
  background: transparent;
  text-decoration: none;
  transition: all var(--my-theme-transition, 0.2s) ease;
}
.category-pill:hover, .category-pill:focus {
  background: var(--my-theme-accent);
  color: #fff;
  border-color: var(--my-theme-accent);
  text-decoration: none;
  transform: translateY(-2px);
}
.category-pill.is-active {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-color: var(--my-theme-text);
}

@media (max-width: 600px) {
  .page-category-pills {
    justify-content: flex-start;
    gap: 6px;
  }
  .category-pill {
    font-size: 0.68rem;
    padding: 6px 12px;
  }
}
.nyt-front {
  padding-bottom: 60px;
}

.nyt-hero {
  padding: 40px 0;
  border-bottom: 3px double var(--my-theme-text);
}

.nyt-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .nyt-hero-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.nyt-hero-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  margin: 8px 0 16px;
  letter-spacing: -0.02em;
}
.nyt-hero-title a {
  color: var(--my-theme-text);
}
.nyt-hero-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-hero-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin-bottom: 16px;
}

.nyt-hero-deck {
  font-family: var(--my-theme-font-body);
  font-size: 1.15rem;
  color: var(--my-theme-text-soft);
  line-height: 1.5;
  margin: 0 0 12px;
}

.nyt-hero-side {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--my-theme-border);
  padding-left: 32px;
}
@media (max-width: 767px) {
  .nyt-hero-side {
    border-left: 0;
    border-top: 1px solid var(--my-theme-border);
    padding-left: 0;
    padding-top: 24px;
  }
}

.nyt-hero-side-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
.nyt-hero-side-item:last-child {
  border-bottom: 0;
}

.nyt-hero-side-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.25;
  margin: 6px 0 12px;
}
.nyt-hero-side-title a {
  color: var(--my-theme-text);
}
.nyt-hero-side-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-hero-side-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}

.nyt-hero-side-deck {
  font-family: var(--my-theme-font-body);
  font-size: 0.95rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 8px;
}

.nyt-secondary {
  padding: 40px 0;
  border-bottom: 1px solid var(--my-theme-border);
}

.nyt-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .nyt-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .nyt-secondary-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nyt-secondary-item {
  border-right: 1px solid var(--my-theme-border);
  padding-right: 24px;
}
.nyt-secondary-item:last-child {
  border-right: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .nyt-secondary-item {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--my-theme-border);
    padding-bottom: 20px;
  }
  .nyt-secondary-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.nyt-secondary-thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}

.nyt-secondary-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.25;
  margin: 6px 0 8px;
}
.nyt-secondary-title a {
  color: var(--my-theme-text);
}
.nyt-secondary-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-secondary-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 0.95rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 8px;
}

.nyt-opinion {
  padding: 48px 0;
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
}

.nyt-opinion-header {
  text-align: center;
  margin-bottom: 32px;
}

.nyt-opinion-heading {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-style: italic;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.02em;
}

.nyt-opinion-tagline {
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-muted);
  margin: 8px 0 0;
}

.nyt-opinion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .nyt-opinion-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.nyt-opinion-lead-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.nyt-opinion-lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 12px;
}
.nyt-opinion-lead-title a {
  color: var(--my-theme-text);
}
.nyt-opinion-lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-opinion-lead-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 12px;
}

.nyt-opinion-byline {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-muted);
}
.nyt-opinion-byline .byline-name {
  font-weight: 700;
  color: var(--my-theme-text);
}
.nyt-opinion-byline .byline-sep {
  margin: 0 6px;
}

.nyt-opinion-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .nyt-opinion-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .nyt-opinion-mini-grid {
    grid-template-columns: 1fr;
  }
}

.nyt-opinion-mini {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 16px;
}
.nyt-opinion-mini:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.nyt-opinion-mini-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 6px;
}
.nyt-opinion-mini-title a {
  color: var(--my-theme-text);
}
.nyt-opinion-mini-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-categories {
  padding: 48px 0;
  border-bottom: 3px double var(--my-theme-text);
}

.nyt-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .nyt-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .nyt-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.nyt-category-column {
  border-right: 1px solid var(--my-theme-border);
  padding-right: 24px;
}
.nyt-category-column:last-child {
  border-right: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .nyt-category-column {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--my-theme-border);
  }
  .nyt-category-column:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.nyt-category-header {
  border-bottom: 2px solid var(--my-theme-text);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.nyt-category-title {
  font-family: var(--my-theme-font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
}
.nyt-category-title a {
  color: var(--my-theme-text);
}
.nyt-category-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-category-lead-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
}

.nyt-category-lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.25;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--my-theme-border);
}
.nyt-category-lead-title a {
  color: var(--my-theme-text);
}
.nyt-category-lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-category-mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nyt-category-mini {
  padding: 10px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
.nyt-category-mini:last-child {
  border-bottom: 0;
}

.nyt-category-mini-title {
  font-family: var(--my-theme-font-heading);
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0 0 4px;
}
.nyt-category-mini-title a {
  color: var(--my-theme-text);
}
.nyt-category-mini-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-latest {
  padding: 48px 0;
}

.nyt-latest-header {
  border-bottom: 3px double var(--my-theme-text);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.nyt-latest-heading {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  margin: 0;
}

.nyt-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nyt-latest-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
.nyt-latest-item:last-child {
  border-bottom: 0;
}
@media (max-width: 640px) {
  .nyt-latest-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.nyt-latest-time {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--my-theme-muted);
  font-variant-numeric: tabular-nums;
}

.nyt-latest-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.nyt-latest-title a {
  color: var(--my-theme-text);
}
.nyt-latest-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.nyt-latest-cat {
  font-family: var(--my-theme-font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-accent);
}
@media (max-width: 640px) {
  .nyt-latest-cat {
    text-align: left;
  }
}

.page-section {
  padding: 40px 0;
  border-bottom: 3px double var(--my-theme-text);
}

.page-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--my-theme-border);
}

.page-section-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  margin: 0;
}
.page-section-title a {
  color: var(--my-theme-text);
}
.page-section-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.page-section-more {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-accent);
  border-bottom: 1px solid var(--my-theme-accent);
  padding-bottom: 2px;
  white-space: nowrap;
}
.page-section-more:hover {
  color: var(--my-theme-text);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

.layout-hero-1-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .layout-hero-1-4 {
    grid-template-columns: 3fr 2fr;
  }
}

.layout-lead-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.layout-lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 12px;
}
.layout-lead-title a {
  color: var(--my-theme-text);
}
.layout-lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.layout-lead-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 12px;
}

.layout-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .layout-small-grid {
    grid-template-columns: 1fr;
  }
}

.layout-small {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 12px;
}

.layout-small-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}

.layout-small-title {
  font-family: var(--my-theme-font-heading);
  font-size: 0.98rem;
  line-height: 1.3;
  margin: 0;
}
.layout-small-title a {
  color: var(--my-theme-text);
}
.layout-small-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.layout-hero-center {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 992px) {
  .layout-hero-center {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

.layout-center-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.layout-center-mini {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 16px;
}
.layout-center-mini:last-child {
  border-bottom: 0;
}

.layout-center-mini-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 8px;
}

.layout-center-mini-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0;
}
.layout-center-mini-title a {
  color: var(--my-theme-text);
}
.layout-center-mini-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.layout-center-lead {
  text-align: center;
}

.layout-center-lead-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.layout-center-lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 12px;
}
.layout-center-lead-title a {
  color: var(--my-theme-text);
}
.layout-center-lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.layout-hero-1-3 {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.layout-1-3-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .layout-1-3-lead {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.layout-1-3-lead-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.layout-1-3-lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 12px;
}
.layout-1-3-lead-title a {
  color: var(--my-theme-text);
}
.layout-1-3-lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.layout-1-3-lead-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1.05rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 12px;
}

.layout-1-3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--my-theme-border);
}
@media (min-width: 640px) {
  .layout-1-3-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.layout-1-3-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}

.layout-1-3-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 8px;
}
.layout-1-3-title a {
  color: var(--my-theme-text);
}
.layout-1-3-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.layout-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  gap: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 12px;
  box-sizing: border-box;
}

.carousel-slide-inner {
  background: var(--my-theme-bg-alt);
  border-radius: var(--my-theme-radius);
  overflow: hidden;
}

.carousel-slide-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.carousel-slide-body {
  padding: 24px;
  text-align: center;
}

.carousel-slide-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 12px;
}
.carousel-slide-title a {
  color: var(--my-theme-text);
}
.carousel-slide-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.carousel-slide-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 12px;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: none;
}
@media (min-width: 768px) {
  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.carousel-nav:hover {
  background: var(--my-theme-accent);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dots .carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--my-theme-border-dark);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.carousel-dots .carousel-dot.is-active {
  background: var(--my-theme-accent);
}

.hero-section {
  padding: 40px 0;
  border-bottom: 3px double var(--my-theme-text);
  margin-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.hero-featured .hero-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero-content {
  padding-top: 20px;
  text-align: center;
}

.hero-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero-title a {
  color: var(--my-theme-text);
}
.hero-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.hero-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1.125rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 16px;
}

.hero-secondary {
  border-left: 1px solid var(--my-theme-border);
  padding-left: 24px;
}
@media (max-width: 991px) {
  .hero-secondary {
    border-left: 0;
    border-top: 1px solid var(--my-theme-border);
    padding-left: 0;
    padding-top: 24px;
  }
}

.hero-secondary-title {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-accent);
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 10px;
  margin: 0 0 16px;
}

.hero-mini {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
.hero-mini:last-child {
  border-bottom: 0;
}

.hero-mini-thumb img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.hero-mini-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 4px;
}
.hero-mini-title a {
  color: var(--my-theme-text);
}
.hero-mini-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.hero-mini .entry-meta {
  margin: 0;
  font-size: 0.7rem;
}

.breaking-news {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--my-theme-text);
}

.breaking-inner {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 16px;
}

.breaking-label {
  flex-shrink: 0;
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--my-theme-accent);
  color: #fff;
  padding: 4px 10px;
  position: relative;
}
.breaking-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  margin-right: 6px;
  vertical-align: middle;
  animation: my-theme-blink 1s infinite;
}

@keyframes my-theme-blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0.2;
  }
}
.breaking-track {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  position: relative;
}

.breaking-items {
  display: inline-block;
  padding-left: 100%;
  animation: my-theme-ticker 40s linear infinite;
}

.breaking-news:hover .breaking-items {
  animation-play-state: paused;
}

@keyframes my-theme-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.breaking-item {
  font-family: var(--my-theme-font-body);
  font-size: 0.95rem;
  color: var(--my-theme-bg);
  margin: 0 8px;
}
.breaking-item:hover {
  color: var(--my-theme-accent);
  text-decoration: underline;
}

.breaking-sep {
  color: var(--my-theme-muted);
  margin: 0 8px;
}

@media (prefers-reduced-motion: reduce) {
  .breaking-items {
    animation: none;
    padding-left: 0;
  }
}
.trending-ticker {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 1px solid var(--my-theme-border);
  overflow: hidden;
}

.trending-ticker-inner {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  gap: 16px;
}

.trending-ticker-label {
  flex-shrink: 0;
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  padding: 4px 10px;
  position: relative;
}
.trending-ticker-label::before {
  content: "↗";
  display: inline-block;
  margin-right: 6px;
  font-size: 0.85em;
  color: var(--my-theme-accent);
}

.trending-ticker-track {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  position: relative;
}

.trending-ticker-items {
  display: inline-block;
  padding-left: 100%;
  animation: my-theme-trending-ticker 50s linear infinite;
}

.trending-ticker:hover .trending-ticker-items {
  animation-play-state: paused;
}

@keyframes my-theme-trending-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.trending-ticker-item {
  font-family: var(--my-theme-font-body);
  font-size: 0.95rem;
  color: var(--my-theme-text);
  margin: 0 8px;
  text-decoration: none;
}
.trending-ticker-item:hover {
  color: var(--my-theme-accent);
  text-decoration: underline;
}

.trending-ticker-num {
  display: inline-block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  color: #fff;
  background: var(--my-theme-accent);
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.trending-ticker-sep {
  color: var(--my-theme-muted);
  margin: 0 8px;
  font-size: 0.7rem;
}

@media (prefers-reduced-motion: reduce) {
  .trending-ticker-items {
    animation: none;
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .trending-ticker-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 16px;
  }
  .trending-ticker-label {
    font-size: 0.65rem;
  }
  .trending-ticker-item {
    font-size: 0.85rem;
  }
}
:root {
  --my-theme-dm-bg: #0f0f0f;
  --my-theme-dm-bg-alt: #1a1a1a;
  --my-theme-dm-text: #e8e8e8;
  --my-theme-dm-text-soft: #b8b8b8;
  --my-theme-dm-muted: #888888;
  --my-theme-dm-border: #2a2a2a;
  --my-theme-dm-border-dark: #3a3a3a;
  --my-theme-dm-link: #6ea8d8;
}

html.dark-mode body {
  background-color: var(--my-theme-dm-bg);
  color: var(--my-theme-dm-text);
}

html.dark-mode {
  --my-theme-bg: var(--my-theme-dm-bg);
  --my-theme-bg-alt: var(--my-theme-dm-bg-alt);
  --my-theme-text: var(--my-theme-dm-text);
  --my-theme-text-soft: var(--my-theme-dm-text-soft);
  --my-theme-muted: var(--my-theme-dm-muted);
  --my-theme-border: var(--my-theme-dm-border);
  --my-theme-border-dark: var(--my-theme-dm-border-dark);
  --my-theme-link: var(--my-theme-dm-link);
}

html.dark-mode img {
  opacity: 0.92;
}

html.dark-mode .site-header {
  border-bottom-color: var(--my-theme-dm-text);
}

html.dark-mode .site-footer {
  border-top-color: var(--my-theme-dm-text);
}

.dark-mode-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid var(--my-theme-border-dark);
  color: var(--my-theme-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.dark-mode-toggle:hover {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-color: var(--my-theme-text);
}
.dark-mode-toggle .icon-moon {
  display: none;
}

html.dark-mode .dark-mode-toggle .icon-sun {
  display: none;
}
html.dark-mode .dark-mode-toggle .icon-moon {
  display: inline;
}

.header-inner {
  position: relative;
}

.related-posts {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 20px 0;
  border-top: 3px double var(--my-theme-text);
}

.related-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  margin: 0 0 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-item {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 20px;
}

.related-thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 12px;
}

.related-item-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 8px 0 8px;
}
.related-item-title a {
  color: var(--my-theme-text);
}
.related-item-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.related-body .entry-meta {
  margin: 0;
}

.newsletter-block {
  margin: 60px auto 0;
  max-width: 900px;
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 40px 24px;
  text-align: center;
}

.newsletter-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.75rem;
  font-style: italic;
  margin: 0 0 8px;
}

.newsletter-desc {
  font-family: var(--my-theme-font-body);
  font-size: 1.05rem;
  color: var(--my-theme-text-soft);
  max-width: 520px;
  margin: 0 auto 24px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-form input[type=email] {
  flex: 1 1 260px;
  min-width: 0;
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid var(--my-theme-text);
  border-radius: var(--my-theme-radius);
  color: var(--my-theme-text);
}
.newsletter-form input[type=email]:focus {
  outline: none;
  border-color: var(--my-theme-accent);
}

.newsletter-submit {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border: 0;
  padding: 12px 24px;
  cursor: pointer;
  border-radius: var(--my-theme-radius);
  transition: background 0.2s ease;
}
.newsletter-submit:hover {
  background: var(--my-theme-accent);
}
.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-message {
  flex-basis: 100%;
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  margin: 8px 0 0;
}
.newsletter-message.is-success {
  color: #2f7a3d;
}
.newsletter-message.is-error {
  color: var(--my-theme-accent);
}

.author-bio {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 32px 24px;
  background: var(--my-theme-bg-alt);
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 1px solid var(--my-theme-border);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 600px) {
  .author-bio {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 24px 16px;
  }
}

.author-avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .author-avatar-img {
    width: 64px;
    height: 64px;
  }
}

.author-name {
  font-family: var(--my-theme-font-heading);
  font-size: 1.4rem;
  margin: 0 0 8px;
  font-style: italic;
}
.author-name a {
  color: var(--my-theme-text);
}
.author-name a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.author-desc {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--my-theme-text-soft);
  margin: 0 0 12px;
}

.author-link {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-accent);
  border-bottom: 1px solid var(--my-theme-accent);
  padding-bottom: 2px;
}
.author-link:hover {
  color: var(--my-theme-text);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

.author-profile {
  padding: 0 0 60px;
}

.author-header {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 48px 0;
  margin-bottom: 40px;
}

.author-header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 640px) {
  .author-header-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

.author-avatar-img-large {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid var(--my-theme-text);
}

.author-display-name {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 12px;
}

.author-bio-text {
  font-family: var(--my-theme-font-body);
  font-size: 1.05rem;
  color: var(--my-theme-text-soft);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 16px;
}

.author-stats {
  display: flex;
  gap: 24px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-muted);
}

.author-stat strong {
  color: var(--my-theme-text);
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}
.author-stat a {
  color: var(--my-theme-accent);
}

.author-posts-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  margin: 0 0 32px;
}

.category-archive {
  padding-bottom: 60px;
}

.category-header {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 48px 0;
  margin-bottom: 40px;
}

.category-header-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 8px;
}

.category-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 700;
  margin: 0 0 12px;
}

.category-description {
  font-family: var(--my-theme-font-body);
  font-size: 1.1rem;
  color: var(--my-theme-text-soft);
  max-width: 700px;
  margin: 0 0 16px;
}

.category-count {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-muted);
}

.category-featured {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 3px double var(--my-theme-text);
}

.category-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .category-lead {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }
}

.lead-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-style: italic;
  line-height: 1.2;
  margin: 8px 0 12px;
}
.lead-title a {
  color: var(--my-theme-text);
}
.lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.lead-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1.05rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 16px;
}

.category-grid {
  margin-top: 0;
}

.search-results {
  padding-bottom: 60px;
}

.search-header {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 40px 0;
  margin-bottom: 40px;
}

.search-header-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 8px;
}

.search-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-style: italic;
  margin: 0 0 8px;
}
.search-title em {
  font-style: normal;
  color: var(--my-theme-accent);
}

.search-count {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-muted);
  display: block;
  margin-bottom: 20px;
}

.search-refine {
  display: flex;
  gap: 8px;
  max-width: 520px;
}
.search-refine input {
  flex: 1;
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--my-theme-border-dark);
  background: transparent;
  color: var(--my-theme-text);
  border-radius: var(--my-theme-radius);
}
.search-refine input:focus {
  outline: none;
  border-color: var(--my-theme-accent);
}
.search-refine button {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border: 0;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--my-theme-radius);
}
.search-refine button:hover {
  background: var(--my-theme-accent);
}

.search-list {
  display: flex;
  flex-direction: column;
}

.search-result-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
@media (min-width: 640px) {
  .search-result-item {
    grid-template-columns: 160px 1fr;
    align-items: start;
  }
}

.search-result-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.search-result-type {
  font-family: var(--my-theme-font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 6px;
}

.search-result-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 0 0 8px;
}
.search-result-title a {
  color: var(--my-theme-text);
}
.search-result-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.search-result-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 8px;
}

.search-no-results {
  text-align: center;
  padding: 60px 20px;
}

.no-results-text {
  font-family: var(--my-theme-font-body);
  font-size: 1.1rem;
  color: var(--my-theme-text-soft);
  margin-bottom: 24px;
}

.archive-page {
  padding-bottom: 60px;
}

.archive-header {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 40px 0;
  margin-bottom: 40px;
  text-align: center;
}

.archive-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-style: italic;
  margin: 0 0 8px;
}

.archive-description {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 {
  padding: 60px 0;
}

.error-404-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 20px;
}

.error-404-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 16px;
}

.error-404-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  margin: 0 0 16px;
}

.error-404-desc {
  font-family: var(--my-theme-font-body);
  font-size: 1.05rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 24px;
  line-height: 1.6;
}

.error-404-search {
  margin: 0 auto 24px;
}
.error-404-search .search-form {
  display: flex;
  gap: 8px;
}
.error-404-search .search-form input[type=search] {
  flex: 1;
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--my-theme-border-dark);
  background: transparent;
  color: var(--my-theme-text);
  border-radius: var(--my-theme-radius);
}
.error-404-search .search-form input[type=search]:focus {
  outline: none;
  border-color: var(--my-theme-accent);
}
.error-404-search .search-form button {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border: 0;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: var(--my-theme-radius);
}
.error-404-search .search-form button:hover {
  background: var(--my-theme-accent);
}

.error-404-home {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--my-theme-accent);
  border-bottom: 1px solid var(--my-theme-accent);
  padding-bottom: 2px;
}
.error-404-home:hover {
  color: var(--my-theme-text);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

.opinion-card {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.opinion-label {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--my-theme-font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  margin-bottom: 12px;
  border-radius: var(--my-theme-radius);
  color: #fff;
  background: var(--my-theme-accent);
}

.opinion-thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.opinion-card .entry-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.25;
  margin: 0 0 8px;
}
.opinion-card .entry-title a {
  color: var(--my-theme-text);
}
.opinion-card .entry-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.podcast-card {
  border-bottom: 1px solid var(--my-theme-border);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.podcast-label {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--my-theme-font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 3px 8px;
  margin-bottom: 12px;
  border-radius: var(--my-theme-radius);
  color: var(--my-theme-bg);
  background: var(--my-theme-text);
}

.podcast-thumb img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 16px;
}

.podcast-card .entry-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.25;
  margin: 0 0 8px;
}
.podcast-card .entry-title a {
  color: var(--my-theme-text);
}
.podcast-card .entry-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.podcast-duration {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-muted);
  margin-bottom: 8px;
}

.services-archive {
  padding-bottom: 60px;
}

/* ---------- Archive Header ---------- */
.services-header {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 48px 0;
  margin-bottom: 40px;
  text-align: center;
}

.services-header-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 8px;
}

.services-archive-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  margin: 0 0 12px;
}

.services-archive-desc {
  font-family: var(--my-theme-font-body);
  font-size: 1.1rem;
  color: var(--my-theme-text-soft);
  max-width: 700px;
  margin: 0 auto 24px;
}

.services-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.service-pill {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid var(--my-theme-border-dark);
  border-radius: 999px;
  color: var(--my-theme-text);
  text-decoration: none;
  transition: all 0.2s ease;
}
.service-pill:hover, .service-pill.is-active {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Service Card ---------- */
.service-card {
  position: relative;
  padding: 32px 24px;
  background: var(--my-theme-bg);
  border: 1px solid var(--my-theme-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.service-card:hover {
  border-color: var(--my-theme-text);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.service-card--featured {
  border-color: var(--my-theme-accent);
  border-width: 2px;
}

.service-featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--my-theme-font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--my-theme-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-card-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.service-card-category {
  font-family: var(--my-theme-font-ui);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-accent);
  margin-bottom: 8px;
  display: block;
}

.service-card-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.25;
  margin: 0 0 12px;
}
.service-card-title a {
  color: var(--my-theme-text);
  text-decoration: none;
}
.service-card-title a:hover {
  color: var(--my-theme-accent);
}

.service-card-tagline,
.service-card-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 0.98rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 16px;
  flex: 1;
}

.service-card-price {
  font-family: var(--my-theme-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--my-theme-accent);
  margin-bottom: 16px;
}

.service-card-link {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--my-theme-accent);
  border-bottom: 1px solid var(--my-theme-accent);
  padding-bottom: 2px;
  text-decoration: none;
  align-self: center;
}
.service-card-link:hover {
  color: var(--my-theme-text);
  border-color: var(--my-theme-text);
}

/* ---------- Single Service ---------- */
.single-service {
  padding-bottom: 60px;
}

.service-article {
  max-width: 100%;
}

.service-hero {
  background: var(--my-theme-bg-alt);
  border-bottom: 3px double var(--my-theme-text);
  padding: 60px 0;
  margin-bottom: 60px;
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .service-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.service-hero-content {
  text-align: center;
}
@media (min-width: 768px) {
  .service-hero-content {
    text-align: left;
  }
}

.service-icon-large {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 20px;
}

.service-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 12px;
}

.service-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 16px;
}

.service-tagline {
  font-family: var(--my-theme-font-body);
  font-size: 1.15rem;
  color: var(--my-theme-text-soft);
  line-height: 1.5;
  margin: 0 0 24px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .service-price {
    justify-content: flex-start;
  }
}
.service-price {
  justify-content: center;
}

.service-price-value {
  font-family: var(--my-theme-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--my-theme-accent);
  line-height: 1;
}

.service-price-note {
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--my-theme-muted);
}

.service-cta {
  display: inline-block;
  font-family: var(--my-theme-font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  padding: 14px 32px;
  border-radius: var(--my-theme-radius);
  text-decoration: none;
  transition: background 0.2s ease;
}
.service-cta:hover {
  background: var(--my-theme-accent);
  color: #fff;
}

.service-hero-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Service body */
.service-body {
  max-width: 900px;
  margin: 0 auto;
}

.service-content {
  font-family: var(--my-theme-font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--my-theme-text);
  margin-bottom: 60px;
}

.service-section-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.75rem;
  font-style: italic;
  text-align: center;
  margin: 0 0 32px;
}

/* Features */
.service-features {
  padding: 40px 0;
  border-top: 3px double var(--my-theme-text);
  margin-bottom: 40px;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) {
  .service-features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--my-theme-font-body);
  font-size: 1.05rem;
  color: var(--my-theme-text-soft);
}

.feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--my-theme-accent);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

/* Gallery */
.service-gallery {
  padding: 40px 0;
  border-top: 3px double var(--my-theme-text);
  margin-bottom: 40px;
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.service-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--my-theme-radius);
}
.service-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.service-gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA bottom */
.service-cta-bottom {
  text-align: center;
  padding: 48px 24px;
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  margin-top: 40px;
}
.service-cta-bottom h3 {
  font-family: var(--my-theme-font-heading);
  font-size: 1.5rem;
  font-style: italic;
  margin: 0 0 20px;
}

/* Mobile */
@media (max-width: 640px) {
  .service-hero {
    padding: 40px 0;
  }
  .service-icon-large {
    font-size: 3rem;
  }
  .service-price-value {
    font-size: 1.5rem;
  }
  .service-features-list {
    grid-template-columns: 1fr;
  }
}
.team-archive,
.team-single {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

.team-archive {
  padding-bottom: 6rem;
}
.team-archive__header {
  padding: 6rem 0 4rem;
  text-align: center;
}
.team-archive__header .container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.team-archive__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b6b;
  background: #fafaf9;
  border-radius: 999px;
}
.team-archive__title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.team-archive__subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: #6b6b6b;
}

.team-tree {
  display: block;
  margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}
.team-tree ul,
.team-tree li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-tree > ul, .team-tree > .team-node {
  display: inline-block;
  text-align: center;
}
.team-tree .team-node__children {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 4rem;
  margin-top: 4rem;
}
.team-tree .team-node__children::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4rem;
  background: #d8d8d6;
}
.team-tree .team-node__children::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  height: 2px;
  background: #d8d8d6;
}
.team-tree .team-node__children > .team-node {
  position: relative;
  flex: 0 0 auto;
}
.team-tree .team-node__children > .team-node::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.5rem;
  background: #d8d8d6;
}
.team-tree .team-node__children:has(> .team-node:only-child)::after {
  display: none;
}
.team-tree--subordinates {
  text-align: left;
  padding: 0;
}
.team-tree--subordinates .team-node__children {
  flex-wrap: wrap;
  padding-top: 0;
  margin-top: 2.5rem;
}
.team-tree--subordinates .team-node__children::before, .team-tree--subordinates .team-node__children::after {
  display: none;
}
.team-tree--subordinates .team-node__children > .team-node::before {
  display: none;
}

.team-node {
  display: inline-block;
  position: relative;
  text-align: center;
}
.team-node__card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #ececea;
  border-radius: 24px;
  text-align: center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1), border-color 300ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1;
}
.team-node__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.15);
  border-color: #d8d8d6;
}
.team-node__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.team-node__avatar {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 0 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fafaf9;
  flex-shrink: 0;
}
.team-node__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.team-node__initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.75rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #eaeae8, #d8d8d6);
}
.team-node__body {
  width: 100%;
}
.team-node__name {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.team-node__position {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  color: #6b6b6b;
}
.team-node__tagline {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-style: italic;
  color: #6b6b6b;
  line-height: 1.5;
}
.team-node__location {
  margin: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6b6b;
  opacity: 0.75;
}
.team-node__socials {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.team-node__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 600;
  color: #6b6b6b;
  background: transparent;
  border: 1px solid #ececea;
  border-radius: 999px;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-node__socials a:hover {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.team-node--level-leadership .team-node__card {
  width: 260px;
  border-color: #1a1a1a;
}
.team-node--level-leadership .team-node__card .team-node__avatar {
  width: 104px;
  height: 104px;
}
.team-node--level-leadership .team-node__card .team-node__name {
  font-size: 1.125rem;
}
.team-node--level-management .team-node__card {
  width: 240px;
}
.team-node--level-management .team-node__card .team-node__avatar {
  width: 92px;
  height: 92px;
}
.team-node--level-lead .team-node__card .team-node__avatar {
  width: 76px;
  height: 76px;
}

.team-grid {
  display: grid;
  gap: 2.5rem;
}
.team-grid--archive {
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .team-grid--archive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team-grid--archive {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .team-grid--archive {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fafaf9;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.12);
}
.team-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.team-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #eaeae8;
}
.team-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover .team-card__media img {
  transform: scale(1.05);
}
.team-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eaeae8, #d8d8d6);
}
.team-card__placeholder span {
  font-size: 3rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.15);
  letter-spacing: -0.03em;
}
.team-card__body {
  padding: 1.5rem 1.5rem 2.5rem;
  text-align: center;
}
.team-card__name {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.team-card__position {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  color: #6b6b6b;
}
.team-card__location {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b6b;
  opacity: 0.75;
}
.team-card__socials {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0 0 1.5rem;
  list-style: none;
}
.team-card__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: 600;
  color: #6b6b6b;
  background: transparent;
  border: 1px solid #ececea;
  border-radius: 999px;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card__socials a:hover {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.team-single {
  padding: 6rem 0;
}
.team-single__article {
  max-width: 1100px;
  margin: 0 auto;
}
.team-single__hero {
  display: grid;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .team-single__hero {
    grid-template-columns: 320px 1fr;
    align-items: center;
  }
}
.team-single__photo {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #fafaf9;
}
.team-single__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team-single__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eaeae8, #d8d8d6);
}
.team-single__photo-placeholder span {
  font-size: 4rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.15);
}
.team-single__name {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.team-single__position {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #6b6b6b;
}
.team-single__tagline {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  font-style: italic;
  color: #6b6b6b;
}
.team-single__reports-to {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1.5rem;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b6b6b;
  background: #fafaf9;
  border-radius: 999px;
}
.team-single__reports-to span {
  font-weight: 500;
}
.team-single__reports-to a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-single__reports-to a:hover {
  border-color: #1a1a1a;
}
.team-single__departments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.team-single__departments a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #fafaf9;
  border-radius: 999px;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-single__departments a:hover {
  background: #1a1a1a;
  color: #fff;
}
.team-single__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-single__socials a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  border: 1px solid #ececea;
  border-radius: 999px;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-single__socials a:hover {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}
.team-single__bio {
  margin-bottom: 6rem;
}
.team-single__section-title {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.team-single__bio-content {
  font-size: 1.0625rem;
  line-height: 1.75;
}
.team-single__bio-content p {
  margin: 0 0 1.5rem;
}
.team-single__details {
  margin-bottom: 6rem;
}
.team-single__skills {
  margin-top: 4rem;
}
.team-single__skills h3 {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.team-single__reports {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #ececea;
}
.team-single__nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 4rem;
  border-top: 1px solid #ececea;
}
.team-single__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-single__nav a:hover {
  opacity: 0.6;
}

.team-details-grid {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) {
  .team-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-details-grid .team-detail {
  padding: 1.5rem;
  background: #fafaf9;
  border-radius: 14px;
}
.team-details-grid .team-detail dt {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b6b6b;
}
.team-details-grid .team-detail dd {
  margin: 0;
  font-size: 0.9375rem;
}
.team-details-grid .team-detail dd a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #ececea;
  transition: border-color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.team-details-grid .team-detail dd a:hover {
  border-color: #1a1a1a;
}

.team-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-skills-list li {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: #1a1a1a;
  background: #fafaf9;
  border-radius: 999px;
}

.team-empty {
  padding: 6rem 0;
  text-align: center;
}
.team-empty h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.team-empty p {
  margin: 0;
  color: #6b6b6b;
}

@media (max-width: 900px) {
  .team-tree .team-node__children {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
  }
  .team-tree .team-node__children::before {
    height: 2.5rem;
  }
  .team-tree .team-node__children::after {
    display: none;
  }
  .team-tree .team-node__children > .team-node::before {
    top: -1.5rem;
    height: 1.5rem;
  }
}
.podcast-player-wrap {
  margin: 32px auto;
  padding: 24px;
  background: var(--my-theme-bg-alt);
  border-top: 2px solid var(--my-theme-text);
  border-bottom: 2px solid var(--my-theme-text);
}

.podcast-player-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.podcast-player-header .podcast-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--my-theme-text);
  padding: 4px 10px;
  border-radius: var(--my-theme-radius);
}

.podcast-episode-number {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--my-theme-accent);
}

.podcast-player-header .podcast-duration {
  font-family: var(--my-theme-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--my-theme-muted);
  margin-left: auto;
}

.podcast-audio {
  width: 100%;
  margin-bottom: 12px;
}

.podcast-guest {
  font-family: var(--my-theme-font-ui);
  font-size: 0.85rem;
  color: var(--my-theme-text-soft);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--my-theme-border);
}

.podcast-archive {
  padding-bottom: 120px;
}

.podcast-archive-header {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 48px 0;
  margin-bottom: 32px;
}

.podcast-header-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 8px;
}

.podcast-archive-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  margin: 0 0 12px;
}

.podcast-archive-desc {
  font-family: var(--my-theme-font-body);
  font-size: 1.1rem;
  color: var(--my-theme-text-soft);
  max-width: 700px;
  margin: 0 0 24px;
}

.podcast-series-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.series-pill {
  font-family: var(--my-theme-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid var(--my-theme-border-dark);
  border-radius: 999px;
  color: var(--my-theme-text);
  background: transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}
.series-pill:hover, .series-pill.is-active {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-color: var(--my-theme-text);
  text-decoration: none;
}

.episode-list {
  display: flex;
  flex-direction: column;
}

.episode-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
@media (min-width: 640px) {
  .episode-row {
    grid-template-columns: 160px 1fr;
    align-items: start;
  }
}

.episode-thumb-wrap {
  position: relative;
}

.episode-thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.episode-play {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--my-theme-accent);
  color: #fff;
  border: 0;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: transform 0.2s ease;
}
.episode-play:hover {
  transform: scale(1.08);
}
.episode-play.is-playing {
  background: var(--my-theme-text);
}
.episode-play.is-playing .play-icon::before {
  content: "❚❚";
}
.episode-play.is-playing .play-icon {
  font-size: 0.8rem;
  padding-left: 0;
}

.episode-meta-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.episode-meta-top span {
  font-family: var(--my-theme-font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.episode-series {
  color: var(--my-theme-accent);
}

.episode-number {
  color: var(--my-theme-muted);
}

.episode-duration {
  color: var(--my-theme-muted);
  margin-left: auto;
}

.episode-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0 0 8px;
}
.episode-title a {
  color: var(--my-theme-text);
}
.episode-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.episode-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 1rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 8px;
}

.episode-guest {
  font-family: var(--my-theme-font-ui);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--my-theme-muted);
  display: block;
  margin-bottom: 6px;
}

.podcast-sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  z-index: 999;
  padding: 12px 0;
  border-top: 3px double var(--my-theme-accent);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.podcast-sticky-player[hidden] {
  display: none;
}

.podcast-sticky-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-play-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--my-theme-accent);
  color: #fff;
  border: 0;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
}

.sticky-now-playing {
  font-family: var(--my-theme-font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 0 1 260px;
}

.sticky-audio {
  flex: 1;
  height: 36px;
  min-width: 0;
}

.sticky-close {
  background: transparent;
  border: 0;
  color: var(--my-theme-bg);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 8px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .sticky-now-playing {
    display: none;
  }
}
.opinion-columns {
  padding: 40px 0;
}

.opinion-section-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.75rem;
  font-style: italic;
  text-align: center;
  margin: 0 0 28px;
  position: relative;
}
.opinion-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--my-theme-accent);
  margin: 12px auto 0;
}

.columnist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .columnist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .columnist-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.columnist-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--my-theme-border);
  background: var(--my-theme-bg-alt);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.columnist-card:hover {
  border-color: var(--my-theme-text);
  transform: translateY(-2px);
}

.columnist-link {
  display: block;
  text-decoration: none;
}
.columnist-link:hover {
  text-decoration: none;
}

.columnist-name {
  display: block;
  font-family: var(--my-theme-font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
  color: var(--my-theme-text);
  margin-bottom: 6px;
}

.columnist-link:hover .columnist-name {
  color: var(--my-theme-accent);
}

.columnist-count {
  font-family: var(--my-theme-font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--my-theme-muted);
}

.columnist-desc {
  font-family: var(--my-theme-font-body);
  font-size: 0.9rem;
  color: var(--my-theme-text-soft);
  margin: 12px 0 0;
  line-height: 1.5;
}

.opinion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) {
  .opinion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .opinion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.opinion-card-grid {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--my-theme-border);
}

.opinion-avatar-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.opinion-columnist-link {
  font-family: var(--my-theme-font-ui);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
}

.opinion-grid-title {
  font-family: var(--my-theme-font-heading);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 8px;
}
.opinion-grid-title a {
  color: var(--my-theme-text);
}
.opinion-grid-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.opinion-grid-excerpt {
  font-family: var(--my-theme-font-body);
  font-size: 0.95rem;
  color: var(--my-theme-text-soft);
  margin: 0 0 8px;
}

.opinion-lead {
  background: var(--my-theme-bg-alt);
  border-top: 3px double var(--my-theme-text);
  border-bottom: 3px double var(--my-theme-text);
  padding: 40px 0;
  margin-bottom: 32px;
}

.opinion-lead-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 768px) {
  .opinion-lead-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.opinion-lead-label {
  font-family: var(--my-theme-font-ui);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--my-theme-accent);
  display: block;
  margin-bottom: 8px;
}

.opinion-lead-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 12px;
}
.opinion-lead-title a {
  color: var(--my-theme-text);
}
.opinion-lead-title a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.opinion-lead-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-title-opinion {
  font-style: italic;
}

.article-deck-opinion {
  font-style: italic;
  color: var(--my-theme-text);
}

.ad-zone {
  margin: 40px auto;
  text-align: center;
}
.ad-zone .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-theme-ad {
  max-width: 100%;
  display: inline-block;
}
.my-theme-ad img {
  max-width: 100%;
  height: auto;
  display: block;
}
.my-theme-ad a {
  display: inline-block;
  text-decoration: none;
}
.my-theme-ad a:hover {
  opacity: 0.9;
}

.my-theme-sidebar-ad {
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--my-theme-border);
}
.my-theme-sidebar-ad .my-theme-ad img {
  margin: 0 auto;
}

.my-theme-ad-in-content {
  margin: 32px 0;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 1px solid var(--my-theme-border);
}

.my-theme-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.my-theme-popup[hidden] {
  display: none;
}

.my-theme-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.my-theme-popup-content {
  position: relative;
  background: var(--my-theme-bg);
  max-width: 600px;
  width: 100%;
  padding: 30px 24px 24px;
  border-radius: var(--my-theme-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: my-theme-popup-in 0.3s ease;
  z-index: 1;
}
.my-theme-popup-content .my-theme-ad {
  display: block;
  margin: 0 auto;
}
.my-theme-popup-content .my-theme-ad img {
  margin: 0 auto;
  max-height: 70vh;
  width: auto;
}

.my-theme-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--my-theme-transition, 0.2s) ease;
}
.my-theme-popup-close:hover {
  transform: scale(1.1);
  background: var(--my-theme-accent);
}
.my-theme-popup-close[hidden] {
  display: none !important;
}

.my-theme-popup-timer {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--my-theme-accent);
  color: #fff;
  font-family: var(--my-theme-font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: my-theme-timer-pulse 1s ease infinite;
}
.my-theme-popup-timer[hidden] {
  display: none;
}
.my-theme-popup-timer .popup-timer-count {
  font-variant-numeric: tabular-nums;
  min-width: 1.5em;
  text-align: center;
  font-size: 1.1em;
}
.my-theme-popup-timer .popup-timer-suffix {
  font-size: 0.75em;
  opacity: 0.85;
}

@keyframes my-theme-popup-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes my-theme-timer-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 640px) {
  .my-theme-popup-content {
    padding: 24px 16px 16px;
  }
  .my-theme-popup-close {
    top: 4px;
    right: 4px;
  }
}
.my-theme-targeting-block {
  padding: 4px 0;
}

.my-theme-popup-timing {
  background: #f9f9f9;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  margin-top: 12px;
}

.my-theme-ad-video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.my-theme-ad--media-video video {
  max-width: 100%;
  height: auto;
}

.my-theme-popup-content .my-theme-ad-video {
  max-height: 70vh;
  width: auto;
  max-width: 100%;
}

.my-theme-ad-in-content .my-theme-ad-video {
  max-width: 728px;
  width: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}

.skip-link:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
  padding: 10px 16px;
  text-decoration: none;
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
}

:focus-visible {
  outline: 2px solid var(--my-theme-accent);
  outline-offset: 2px;
}

.pagination {
  margin-top: 40px;
  text-align: center;
  font-family: var(--my-theme-font-ui);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 6px 12px;
  color: var(--my-theme-text);
}
.pagination .page-numbers:hover {
  color: var(--my-theme-accent);
}
.pagination .current {
  background: var(--my-theme-text);
  color: var(--my-theme-bg);
}
.pagination .prev,
.pagination .next {
  font-weight: 600;
}/* Red Voice 3.0 — compiled-equivalent overrides for the consolidated SCSS bundles. */
.site-content .container{min-width:0;align-items:start}
@media (min-width:992px){body.has-sidebar .site-content>.container{grid-template-columns:minmax(0,7fr) minmax(260px,3fr)}}
.site-main,.site-content,.widget-area,.posts-grid,.page-layout,.page-layout-main{min-width:0}
.widget-area{align-self:start;height:fit-content;min-width:0}
.page-layout{display:grid;grid-template-columns:minmax(0,1fr);gap:40px;align-items:start}
@media (min-width:992px){.page-layout{grid-template-columns:minmax(0,7fr) minmax(260px,3fr)}}
.page-layout-main,.page-layout-sidebar{min-width:0}.page-layout-sidebar{height:fit-content}

/* Header / branding / sticky nav */
.site-header,.header-inner,.site-branding{background:var(--my-theme-brand-bg,var(--my-theme-bg))}
.site-branding{min-width:0}
.site-branding .custom-logo{width:300px;max-width:100%;max-height:72px}
.site-branding .site-title{font-family:var(--my-theme-font-brand,var(--my-theme-font-heading));font-size:3rem}
.site-branding .site-title a{color:var(--my-theme-site-title-color,var(--my-theme-text))}
.site-branding .site-title a:hover{color:var(--my-theme-site-title-hover,var(--my-theme-accent))}
.main-navigation{background:var(--my-theme-menu-bg,var(--my-theme-bg));z-index:20;transition:background-color .2s ease,color .2s ease,box-shadow .3s ease}
.main-navigation li>a{font-family:var(--my-theme-font-menu,var(--my-theme-font-ui));color:var(--my-theme-menu-text,var(--my-theme-text));transition:color .2s ease,background-color .2s ease}
.main-navigation li>a:hover,.main-navigation li.is-open>a{color:var(--my-theme-menu-hover-text,var(--my-theme-accent));background:var(--my-theme-menu-hover-bg,transparent)}
.main-navigation.is-stuck{position:fixed;top:0;left:0;right:0;z-index:9999;background:var(--my-theme-menu-sticky-bg,#121212);box-shadow:0 4px 12px rgba(0,0,0,.08);animation:nav-slide-down .25s ease}
.main-navigation.is-stuck li>a{color:var(--my-theme-menu-sticky-text,#fff)}
.main-navigation.is-stuck li>a:hover,.main-navigation.is-stuck li.is-open>a{color:var(--my-theme-menu-sticky-hover-text,#fff);background:var(--my-theme-menu-sticky-hover-bg,#2b2b2b)}
body.nav-is-stuck{padding-top:52px}
@keyframes nav-slide-down{from{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}
@media(max-width:767px){
 .header-inner{justify-content:space-between;text-align:left;padding:14px 20px}
 .site-branding{align-items:flex-start;flex:1;text-align:left}
 .site-branding .custom-logo{width:180px;max-height:48px}
 .site-branding .site-title{font-size:1.35rem;text-align:left;line-height:1.15}
 .menu-toggle{display:inline-flex;flex-shrink:0}
 .site-header.mobile-is-stuck{position:fixed;top:0;left:0;right:0;z-index:9999;box-shadow:0 4px 12px rgba(0,0,0,.08);animation:nav-slide-down .25s ease}
 .main-navigation{position:relative!important;padding:0}
 .main-navigation .container{display:block}
 .main-navigation>.container>ul,.main-navigation ul.menu{display:none;flex-direction:column;align-items:stretch;gap:0}
 .main-navigation.toggled>.container>ul,.main-navigation.toggled ul.menu{display:flex}
 .main-navigation li{width:100%;border-bottom:1px solid var(--my-theme-border)}
 .main-navigation li>a{padding:14px 16px;justify-content:space-between}
 .menu-item-dark-mode{display:block;margin:0;padding:12px 16px;border-left:0;border-top:1px solid var(--my-theme-border);text-align:center}
 body.nav-is-stuck{padding-top:0}
 body.mobile-header-is-stuck{padding-top:78px}
}

/* Compact post cards — no forced height/stretch */
.posts-grid{align-items:start}
.post-card{align-self:start;min-width:0;height:fit-content}
.post-card .entry-title{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.entry-summary{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;max-height:3.2em}
.entry-summary p{margin:0}

/* Article text/media containment */
.nyt-article,.single-post .site-main{width:100%;min-width:0}
.nyt-article{max-width:740px;box-sizing:border-box}
.article-body,.entry-content{width:100%;max-width:100%;min-width:0;overflow-wrap:anywhere;word-break:normal}
.article-body p,.entry-content p{margin:0 0 1.15em;line-height:1.75;text-align:justify;text-justify:inter-word;max-width:100%}
.article-body h1,.article-body h2,.article-body h3,.article-body h4,.entry-content h1,.entry-content h2,.entry-content h3,.entry-content h4{max-width:100%;overflow-wrap:anywhere}
.article-body img,.article-body video,.article-body iframe,.article-body embed,.article-body object,.entry-content img,.entry-content video,.entry-content iframe,.entry-content embed,.entry-content object{max-width:100%;height:auto}
.article-body table,.entry-content table{display:block;max-width:100%;overflow-x:auto}
.article-body pre,.entry-content pre{max-width:100%;overflow-x:auto;white-space:pre-wrap;overflow-wrap:anywhere}
.article-body code,.entry-content code{overflow-wrap:anywhere}
.article-body figure,.entry-content figure{max-width:100%;margin-left:auto;margin-right:auto}
.wp-block-embed,.wp-block-video,.wp-block-table,.wp-block-image{max-width:100%}
@media(max-width:767px){.article-body p,.entry-content p{text-align:left}}

/* Builder / sections */
.page-section{padding:40px 0;border-bottom:1px solid var(--my-theme-border);min-width:0}
.page-section-header{display:flex;justify-content:space-between;gap:20px;align-items:baseline;margin-bottom:20px;border-bottom:1px solid var(--my-theme-border);padding-bottom:10px}
.page-section-title{margin:0;font-family:var(--my-theme-font-heading);font-size:1.55rem;line-height:1.15}
.page-section-title a{color:var(--my-theme-text)}.page-section-more{font-family:var(--my-theme-font-ui);font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;color:var(--my-theme-accent)}
.rv-section-with-sidebar{display:grid;grid-template-columns:minmax(0,7fr) minmax(260px,3fr);gap:32px;align-items:start}.rv-section-main,.rv-section-aside{min-width:0}.rv-section-aside{align-self:start;height:fit-content}.rv-section-ad{margin-bottom:24px;overflow:hidden}
.rv-post-card{min-width:0;align-self:start;height:fit-content;overflow:hidden}.rv-post-thumb{display:block;min-width:0;overflow:hidden}.rv-post-thumb img{width:100%;aspect-ratio:3/2;object-fit:cover}.rv-post-title{margin:8px 0;font-family:var(--my-theme-font-heading);line-height:1.15;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.rv-post-title a{color:var(--my-theme-text)}.rv-post-excerpt{margin:0 0 8px;color:var(--my-theme-text-soft);line-height:1.45;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;max-height:2.9em}.rv-post-meta{font-family:var(--my-theme-font-ui);color:var(--my-theme-muted);font-size:.7rem;text-transform:uppercase;letter-spacing:.08em}.rv-post-category{display:inline-block;margin-top:10px;color:var(--my-theme-accent);font-family:var(--my-theme-font-ui);font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em}
.layout-hero-1-2{display:grid;grid-template-columns:minmax(0,2fr) minmax(240px,1fr);gap:28px;align-items:start}.layout-1-2-side{display:grid;gap:20px;align-content:start}.layout-hero-1-4{display:grid;grid-template-columns:minmax(0,2fr) minmax(240px,1fr);gap:28px;align-items:start}.layout-hero-1-4>.layout-1-2-side{display:grid;grid-template-columns:1fr 1fr;gap:20px}.layout-1-3-grid,.layout-1-3-full-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:20px;align-items:start}.layout-1-4-full-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;margin-top:20px;align-items:start}.layout-hero-center{display:grid;grid-template-columns:1fr 1.4fr 1fr;gap:24px;align-items:start}.layout-center-col{display:grid;gap:20px;align-content:start}.layout-center-lead .rv-post-title{font-size:clamp(1.35rem,2vw,2rem)}.layout-single-card{display:grid;grid-template-columns:minmax(0,2fr) minmax(0,1fr);gap:28px;align-items:start}.layout-2-4,.layout-4-2{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:28px;align-items:start}.layout-2-4-left,.layout-2-4-right,.layout-4-2-left,.layout-4-2-right{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;align-items:start}.layout-small-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.carousel-track{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:8px}.carousel-slide{flex:0 0 calc(33.333% - 14px);min-width:240px;scroll-snap-align:start}.carousel-slide-inner{height:100%}.carousel-nav{position:absolute;top:10px;z-index:2;border:1px solid var(--my-theme-border);background:var(--my-theme-bg);width:34px;height:34px;cursor:pointer}.carousel-prev{right:52px}.carousel-next{right:10px}.carousel-dots{display:flex;justify-content:center;gap:6px;margin-top:12px}.carousel-dot{width:7px;height:7px;border-radius:50%;border:0;background:var(--my-theme-border-dark);padding:0}.carousel-dot.is-active{background:var(--my-theme-accent)}

/* Trending ticker */
.trending-ticker{width:100%;overflow:hidden;background:var(--my-theme-trending-bg,#1f2937);color:var(--my-theme-trending-text,#fff)}.trending-ticker-inner{display:flex;align-items:center;min-height:48px;overflow:hidden}.trending-ticker-label{flex:0 0 auto;margin-right:18px;padding-right:16px;border-right:1px solid rgba(255,255,255,.25);font-family:var(--my-theme-font-ui);font-size:.72rem;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--my-theme-trending-label,#f59e0b)}.trending-ticker-track{min-width:0;flex:1;overflow:hidden}.trending-ticker-items{display:flex;width:max-content;gap:0;animation:my-theme-trending-ticker 45s linear infinite}.trending-ticker:hover .trending-ticker-items{animation-play-state:paused}.trending-ticker-item{color:var(--my-theme-trending-text,#fff);white-space:nowrap;font-family:var(--my-theme-font-body);font-size:.95rem;text-decoration:none}.trending-ticker-item:hover{color:var(--my-theme-trending-label,#f59e0b)}.trending-ticker-num{display:inline-block;margin-right:6px;font-family:var(--my-theme-font-ui);font-weight:800}.trending-ticker-sep{padding:0 12px;opacity:.45}@keyframes my-theme-trending-ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* Gutenberg Section Grid/Post Card */
.rv-section-grid{padding:20px 0}.rv-editor-section-title{font-family:var(--my-theme-font-heading)}.rv-editor-thumb{width:100%;aspect-ratio:3/2;object-fit:cover}.rv-editor-category{display:block;color:var(--my-theme-accent);font-family:var(--my-theme-font-ui);font-size:.7rem;text-transform:uppercase;letter-spacing:.1em}.rv-editor-heading{margin:8px 0}.rv-editor-excerpt{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.rv-editor-meta{font-family:var(--my-theme-font-ui);color:var(--my-theme-muted);font-size:.72rem}
@media(max-width:991px){.rv-section-with-sidebar,.layout-hero-1-2,.layout-hero-1-4,.layout-hero-center,.layout-single-card,.layout-2-4,.layout-4-2{grid-template-columns:1fr}.layout-hero-1-4>.layout-1-2-side{grid-template-columns:repeat(2,minmax(0,1fr))}.layout-1-3-grid,.layout-1-3-full-grid,.layout-1-4-full-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:767px){.page-section{padding:28px 0}.page-section-header{align-items:flex-start}.layout-hero-1-4>.layout-1-2-side,.layout-1-3-grid,.layout-1-3-full-grid,.layout-1-4-full-grid,.layout-2-4-left,.layout-2-4-right,.layout-4-2-left,.layout-4-2-right,.layout-small-grid{grid-template-columns:1fr}.carousel-slide{flex-basis:85%}.trending-ticker-inner{min-height:44px}.trending-ticker-label{margin-right:10px;padding-right:10px}.trending-ticker-item{font-size:.86rem}}
