@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);
  border-bottom: 1px solid var(--my-theme-text);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--my-theme-transition, 0.2s) ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  padding: 24px 20px 16px;
  text-align: center;
  position: relative;
}

.site-title {
  font-family: var(--my-theme-font-heading);
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}
.site-title a {
  color: var(--my-theme-text);
}
.site-title a:hover {
  text-decoration: none;
  color: var(--my-theme-accent);
}

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

.main-navigation {
  border-top: 1px solid var(--my-theme-border);
  border-bottom: 1px solid var(--my-theme-border);
  padding: 8px 0;
  margin-top: 16px;
}
.main-navigation > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.main-navigation a {
  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);
}
.main-navigation a:hover {
  color: var(--my-theme-accent);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--my-theme-text);
  position: relative;
  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;
  position: relative;
}
.menu-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.menu-toggle[aria-expanded=true] .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded=true] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    text-align: left;
    position: relative;
  }
  .site-branding {
    flex: 1;
    min-width: 0;
    text-align: left;
    padding-right: 60px;
  }
  .site-title {
    font-size: 1.35rem;
    text-align: left;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .site-description {
    font-size: 0.68rem;
    text-align: left;
    letter-spacing: 0.12em;
    margin-top: 4px;
  }
  .menu-toggle {
    display: inline-flex;
    order: 2;
  }
  .main-navigation {
    width: 100% !important;
    order: 3;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    margin-top: 0;
  }
  .main-navigation > ul,
  .main-navigation ul.menu {
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-navigation.toggled > ul,
  .main-navigation.toggled ul.menu {
    display: flex !important;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--my-theme-border);
  }
  .main-navigation li {
    border-bottom: 1px solid var(--my-theme-border);
    width: 100%;
    position: relative;
  }
  .main-navigation li:last-child {
    border-bottom: 0;
  }
  .main-navigation li > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 8px !important;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--my-theme-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .main-navigation li > a:hover {
    color: var(--my-theme-accent);
  }
  .main-navigation .dropdown-arrow {
    font-size: 0.9em;
    transition: transform 0.3s ease;
  }
  .main-navigation li.is-open > a > .dropdown-arrow {
    transform: rotate(180deg);
  }
  .main-navigation .sub-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    background: var(--my-theme-bg-alt);
    display: none !important;
    min-width: 0;
    width: 100%;
    z-index: auto !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-navigation .sub-menu li {
    border-bottom: 1px solid var(--my-theme-border);
  }
  .main-navigation .sub-menu li:last-child {
    border-bottom: 0;
  }
  .main-navigation .sub-menu li a {
    padding: 12px 24px !important;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--my-theme-text-soft);
  }
  .main-navigation li.is-open > .sub-menu {
    display: block !important;
    max-height: 500px;
  }
  .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;
  }
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.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;
  gap: 0;
}
.main-navigation li {
  position: relative;
}
.main-navigation li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  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;
  transition: transform 0.2s ease;
  display: inline-block;
}
.main-navigation > ul > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--my-theme-bg);
  border: 1px solid var(--my-theme-border);
  border-top: 2px solid var(--my-theme-accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 200;
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .main-navigation > ul > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-navigation > ul > li > .sub-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
.main-navigation > ul > li:focus-within > .sub-menu,
.main-navigation > ul > li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-navigation > ul > li > .sub-menu > li:focus-within > .sub-menu,
.main-navigation > ul > li > .sub-menu > li.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.main-navigation > ul > li > .sub-menu > li > a {
  padding: 10px 20px;
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--my-theme-text-soft);
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
.main-navigation > ul > li > .sub-menu > li > a:hover {
  background: var(--my-theme-bg-alt);
  color: var(--my-theme-accent);
  border-left-color: var(--my-theme-accent);
  padding-left: 24px;
}
.main-navigation > ul > li > .sub-menu > li > .sub-menu {
  position: absolute;
  top: -8px;
  left: 100%;
  min-width: 220px;
  background: var(--my-theme-bg);
  border: 1px solid var(--my-theme-border);
  border-left: 2px solid var(--my-theme-accent);
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 201;
  display: block;
}
.main-navigation > ul > li > .sub-menu > li > .sub-menu > li > a {
  padding: 10px 20px;
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--my-theme-text-soft);
}
.main-navigation > ul > li > .sub-menu > li > .sub-menu > li > a:hover {
  background: var(--my-theme-bg-alt);
  color: var(--my-theme-accent);
  padding-left: 24px;
}

@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;
    justify-content: space-between;
  }
  .main-navigation .sub-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    background: var(--my-theme-bg-alt);
    display: none;
    min-width: 0;
    width: 100%;
    transition: none !important;
  }
  .main-navigation .sub-menu > li > a {
    padding: 10px 24px;
    font-size: 0.78rem;
  }
  .main-navigation .sub-menu > li > a:hover {
    padding-left: 28px;
  }
  .main-navigation li.is-open > .sub-menu {
    display: block !important;
  }
  .main-navigation .sub-menu .sub-menu > li > a {
    padding-left: 40px;
  }
  .main-navigation .sub-menu .sub-menu .sub-menu > li > a {
    padding-left: 56px;
  }
  .main-navigation .dropdown-arrow-right {
    transform: rotate(90deg);
  }
  .main-navigation li.is-open > a > .dropdown-arrow-down,
  .main-navigation li.is-open > a > .dropdown-arrow-right {
    transform: rotate(180deg);
  }
}
.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: italic;
  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;
  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-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-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;
  }
}

.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;
  }
}
: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;
}

.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;
}