/* ============================================================
   Lina Sinjab Child — main.css
   ============================================================ */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  --ls-cream:         #EDE9E1;
  --ls-orange:        #f08400;
  --ls-black:         #1A1A18;
  --ls-mid:           #5A5A55;
  --ls-light:         #9A9A94;
  --ls-border:        rgba(26,26,24,.13);
  --ls-border-strong: rgba(26,26,24,.22);
  --ls-sans: 'Gill Sans','Gill Sans MT',Calibri,'Trebuchet MS',sans-serif;
  --ls-serif: Georgia,'Times New Roman',serif;
  --ls-max-w: 880px;
  --ls-side-pad: 48px;
}
/* contact form */
legend.wpforms-field-label{
	color: #5a5a55 !important;
}

/* ── Custom cursor ─────────────────────────────────────── */
/* Kill browser cursor on all elements — !important beats TT3 */
/* html,
body,
body * {
  cursor: none !important;
} */

/* Restore text cursor for form fields */
input, textarea, select,
input *, textarea *, select * {
  cursor: text !important;
}
.add-layout-padding{
padding-left: 20px!important;
padding-right: 20px!important;
}
#ls-cursor-dot {
  position: fixed; top: -40px; left: -40px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ls-orange);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  will-change: left, top;
}
#ls-cursor-ring {
  position: fixed; top: -40px; left: -40px;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(240,132,0,.45);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, opacity .2s;
  will-change: left, top;
}
body:has(a:hover) #ls-cursor-ring,
body:has(button:hover) #ls-cursor-ring,
body:has(.wp-block-button:hover) #ls-cursor-ring,
body:has(.wp-block-navigation-item:hover) #ls-cursor-ring {
  width: 52px; height: 52px; opacity: .6;
}
/* Touch / pointer-coarse devices — restore normal cursor */
@media (hover: none), (pointer: coarse) {
  html, body, body * { cursor: auto !important; }
  input, textarea, select { cursor: text !important; }
  #ls-cursor-dot, #ls-cursor-ring { display: none !important; }
}

/* ── Page loader — shown on every full page load ───────── */
.ls-loader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--ls-orange);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px var(--ls-side-pad);
  transition: transform .8s cubic-bezier(.7,0,.3,1);
}
.ls-loader-num {
  font-family: var(--ls-sans);
  font-size: clamp(50px, 10vw, 110px);
  font-weight: 400;
  letter-spacing: .02em;
  color: #fff;
}
.ls-loader-label {
  font-family: var(--ls-sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding-bottom: 14px;
}
.ls-loader.ls-loader-out { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) {
  .ls-loader { transition: opacity .3s ease; }
  .ls-loader.ls-loader-out { transform: none; opacity: 0; }
}

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

body {
  font-family: var(--ls-sans);
  background-color: var(--ls-cream) !important;
  color: var(--ls-black);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}

/* Override TT3 link colour globally */
.wp-block-post-content a,
.entry-content a {
  color: var(--ls-orange);
}
.wp-block-post-content a:hover,
.entry-content a:hover {
  color: var(--ls-black);
}

/* ── Typography — headings ─────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
  font-family: var(--ls-sans);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ls-black);
}

/* h5 = eyebrow label (FILMS, ARCHIVE, ABOUT, etc.) */
h5.wp-block-heading {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ls-orange);
  margin-bottom: 6px;
  font-weight: 600;
}

/* h2 = section/page headings */
h2.wp-block-heading {
  font-size: clamp(18px, 3.5vw, 26px);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* h3 = sub-headings (Director, Speaker) */
h3.wp-block-heading {
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: .03em;
}

/* h4 = medium headings */
h4.wp-block-heading {
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* h6 = small card titles */
h6.wp-block-heading {
  font-size: 14px;
  letter-spacing: .04em;
  font-weight: 400;
}

/* post title (h1 in single posts) */
.wp-block-post-title {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ── Primary/secondary colour classes ─────────────────── */
.has-primary-color     { color: var(--ls-orange) !important; }
.has-secondary-background-color { background-color: var(--ls-cream) !important; }
.has-tertiary-color    { color: var(--ls-light) !important; }
.has-contrast-color    { color: var(--ls-black) !important; }
.has-mid-color         { color: var(--ls-mid) !important; }

/* ── Body copy ─────────────────────────────────────────── */
.wp-block-paragraph,
.wp-block-post-content p,
.entry-content p {
  color: var(--ls-mid);
  line-height: 1.75;
}

/* Paragraphs used as plain text (not eyebrows) */
.wp-block-post-content p strong,
.entry-content p strong {
  color: var(--ls-black);
}

/* ── Header ────────────────────────────────────────────── */
/* TT3 wraps header in a template-part block */
.wp-block-template-part[class*="header"],
header.wp-block-template-part,
.site-header,
#masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237,233,225,.22) !important;
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  transition: background .3s, box-shadow .3s;
}
.wp-block-template-part[class*="header"].ls-scrolled,
header.wp-block-template-part.ls-scrolled,
.site-header.ls-scrolled,
#masthead.ls-scrolled {
  background: rgba(237,233,225,.97) !important;
  box-shadow: 0 1px 20px rgba(26,26,24,.06);
}

/* Site title / wordmark */
.wp-block-site-title,
.wp-block-site-title a {
  font-family: var(--ls-sans);
  font-size: 17px !important;
  font-weight: 400 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}
/* menu - navbar */
.wp-block-navigation__responsive-container.is-menu-open {
    overflow: visible !important;
    min-height: 100vh !important;
}
/* Navigation links */
.wp-block-navigation .wp-block-navigation-item__content {
  font-size: 13px !important;
  font-weight: 300;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ls-mid);
  transition: color .2s;
  padding: 6px 0;
  position: relative;
  text-decoration: none !important;
}


/* Underline draws from centre outward on nav hover */
.wp-block-navigation .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ls-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.wp-block-navigation .wp-block-navigation-item:hover .wp-block-navigation-item__content {
  color: var(--ls-black);
}
.wp-block-navigation .wp-block-navigation-item:hover .wp-block-navigation-item__content::after {
  transform: scaleX(1);
}

/* Remove TT3 default nav background/border overrides */
.wp-block-navigation {
  background: transparent !important;
}

/* ── Separators ────────────────────────────────────────── */
.wp-block-separator,
hr.wp-block-separator {
  margin: 0!important;
  padding:0!important;
  border-top: 1px solid #ccc;
}

/* ── Buttons / CTAs ────────────────────────────────────── */
.wp-block-button__link,
.wp-block-file__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ls-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  border: 1px solid var(--ls-border-strong);
  color: var(--ls-black);
  background: transparent;
  transition: border-color .25s, color .25s, background .25s;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap;
}
.wp-block-button__link:hover {
  border-color: var(--ls-orange);
  color: var(--ls-orange);
  background: transparent;
}

/* Primary / orange variant (is-style-fill) */
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button.wp-block-button__link.has-primary-color {
  border-color: var(--ls-orange);
  color: var(--ls-orange);
  background: transparent;
}
.wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--ls-orange);
  color: #fff;
  border-color: var(--ls-orange);
}

/* Outline variant */
.wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--ls-border-strong);
  color: var(--ls-black);
  background: transparent;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--ls-orange);
  color: var(--ls-orange);
}

/* ── Pods "watch-trailer" template / any inline CTA link── */
.ls-watch-trailer a,
a.ls-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 2px;
  border: 1px solid var(--ls-orange);
  color: var(--ls-orange);
  background: transparent;
  transition: background .2s, color .2s;
  text-decoration: none !important;
}
.ls-watch-trailer a:hover,
a.ls-cta:hover {
  background: var(--ls-orange);
  color: #fff;
}

/* ── Section label (ARTICLES ─────) ────────────────────── */
.ls-section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ls-orange);
  margin-bottom: 40px;
}
.ls-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ls-border-strong);
}

/* ── Articles page — featured article layout ───────────── */
/* .ls-card = image column, .ls-card-body = text column */
.wp-block-columns:has(.ls-card) {
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  padding: 56px var(--ls-side-pad);
  border-bottom: 1px solid var(--ls-border);
}

.wp-block-column.ls-card {
  overflow: hidden;
  border-radius: 3px;
}
.wp-block-column.ls-card img,
.wp-block-column.ls-card figure {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 3px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.wp-block-columns:has(.ls-card):hover .wp-block-column.ls-card img {
  transform: scale(1.03);
}

.wp-block-column.ls-card-body .wp-block-post-title a,
.wp-block-column.ls-card-body .wp-block-post-title {
  font-size: clamp(18px, 3.5vw, 20px);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ls-black);
  transition: color .2s;
}
.wp-block-columns:has(.ls-card):hover .wp-block-post-title a,
.wp-block-columns:has(.ls-card):hover .wp-block-post-title {
  color: var(--ls-orange);
}

/* Article body text */
.wp-block-column.ls-card-body .wp-block-post-content p {
  font-size: 14px;
  color: var(--ls-mid);
  line-height: 1.7;
}

/* ── Archive / grid loops ──────────────────────────────── */
.ls-loop--grid .wp-block-group.ls-card {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.ls-loop--grid .wp-block-group.ls-card img,
.ls-loop--grid .wp-block-group.ls-card figure {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 12px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.ls-loop--grid .wp-block-group:hover .wp-block-group.ls-card img {
  transform: scale(1.04);
}

.ls-loop--grid .wp-block-group.ls-card-body .wp-block-post-title a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ls-black);
  transition: color .2s;
  text-decoration: none;
}
.ls-loop--grid .wp-block-group:hover .wp-block-post-title a {
  color: var(--ls-orange);
}

/* Archive section headings */
.wp-block-group h5.wp-block-heading + h2.wp-block-heading {
  margin-bottom: clamp(24px, 4vw, 40px);
}

/* ── Director page ─────────────────────────────────────── */
/* Film entries: image left, text right, 50/50 */
.wp-block-query .wp-block-columns.alignwide,
.wp-block-query .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding: 56px 0;
  border-top: 1px solid var(--ls-border);
}

/* Featured image in director/radio columns */
.wp-block-query .wp-block-column .wp-block-post-featured-image {
  overflow: hidden;
  border-radius: 3px;
}
.wp-block-query .wp-block-column .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 3px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.wp-block-query .wp-block-columns:hover .wp-block-post-featured-image img {
  transform: scale(1.03);
}

/* Post title in director loop */
.wp-block-query .wp-block-post-title,
.wp-block-query .wp-block-post-title a {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ls-black);
  margin-bottom: 20px;
  line-height: 1.3;
  text-decoration: none;
}

/* Post excerpt in director loop */
.wp-block-post-excerpt .wp-block-post-excerpt__excerpt {
  font-size: 14px;
  color: var(--ls-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── Radio / Podcast — alternating layout ──────────────── */
/* odd: image left; reversed class: image right */
.wp-block-columns.reversed {
  direction: rtl;
}
.wp-block-columns.reversed > .wp-block-column {
  direction: ltr;
}

/* ── Speaker page ──────────────────────────────────────── */
/* Two-column layout: portrait left (33%), text right (66%) */
.wp-block-columns:has(.wp-block-column[style*="33.33%"]) {
  gap: clamp(32px, 6vw, 72px);
  padding: 80px 0 64px;
  align-items: start;
}

/* Portrait wrapper — accent border offset behind */
.wp-block-columns .wp-block-column[style*="33.33%"] {
  position: relative;
}
.img-border::before {
  content: '';
  position: absolute;
  top: 24px; left: -24px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  border: 2px solid var(--ls-orange);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}
/* Solid corner accent peeking out behind the image */
.img-border::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 64px; height: 64px;
  background: var(--ls-orange);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}
/* Portrait image */
.wp-block-columns .wp-block-column[style*="33.33%"] .wp-block-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}

/* Home — About lede quote */
.ls-about-lede {
  font-family: var(--ls-serif);
  font-style: italic;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--ls-black);
  max-width: 520px;
}

/* Home — About stat counters (count-up driven by main.js) */
.ls-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--ls-border);
}
.ls-counter-num {
  margin: 0;
  font-family: var(--ls-sans);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 400;
  color: var(--ls-black);
  line-height: 1;
}
.ls-counter-label {
  margin: 8px 0 0;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ls-mid);
}

/* Topics list — pill tags style */
.wp-block-list li {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ls-mid);
  border: 1px solid var(--ls-border-strong);
  padding: 5px 12px;
  border-radius: 2px;
  margin: 4px 4px 4px 0;
  transition: border-color .2s, color .2s;
  /* override old list styles */
  position: static;
  border-bottom: none;
}
.wp-block-list li::before { display: none; }
.wp-block-list li:hover {
  border-color: var(--ls-orange);
  color: var(--ls-orange);
}

/* Speaker name eyebrow (h4 with has-primary-color) */
h4.wp-block-heading.has-primary-color {
  font-size: 11px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ls-orange) !important;
  margin-bottom: 12px;
}

/* SPEAKER large heading */
p.has-large-font-size {
  font-size: clamp(22px, 4vw, 26px) !important;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ls-black);
  margin-bottom: 24px;
}

/* Topics heading */
h3.wp-block-heading {
  letter-spacing: .06em;
  color: var(--ls-black);
  margin: 32px 0 14px;
}

/* Topics list */
.wp-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wp-block-list li {
  font-size: 11px !important;
  color: var(--ls-orange);
  padding: 8px 18px;
  position: relative;
  border-bottom: 1px solid var(--ls-border);
}
.wp-block-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--ls-orange);
}

/* Home — "Featured in" tag chips. Scoped with its own class so it
   doesn't inherit the Speaker page's small dash-list treatment above,
   which is a generic .wp-block-list li selector and was leaking in. */
.wp-block-list.ls-tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wp-block-list.ls-tag-chips li {
  font-size: 12px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ls-mid);
  background: transparent;
  border: 1px solid var(--ls-border-strong);
  border-radius: 999px;
  padding: 9px 20px;
  margin: 0;
  transition: border-color .2s, color .2s, background .2s;
}
.wp-block-list.ls-tag-chips li::before { content: none; }
.wp-block-list.ls-tag-chips li:hover {
  border-color: var(--ls-orange);
  color: #fff;
  background: var(--ls-orange);
}

/* Talks list (post query in speaker) */
.t-n-l li{
	margin:0;
	display: flex;
	justify-content: space-between;
	border-top: 0.5px solid var(--ls-border);
}
.t-n-l li:last-child{
	border-bottom: 0.5px solid var(--ls-border);
}
.t-n-l li a{
	margin:0 !important;
}
.t-n-l li a, .t-n-l li p{
	padding: 18px;
}
.wp-block-group.has-primary-color .wp-block-post-title,
.wp-block-group.has-primary-color .wp-block-post-title a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ls-black);
  transition: color .2s;
  display: block;
  text-decoration: none;
}
.wp-block-group.has-primary-color:hover .wp-block-post-title a {
  color: var(--ls-orange);
}

/* Meta tags row in talks */
.wp-block-group.has-tertiary-color {
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ls-light);
  display: flex;
  gap: 8px;
  padding: 0 0 12px;
}

/* Book cover */
.wp-block-columns .wp-block-column[style*="25%"] {
  flex: 0 0 160px !important;
  max-width: 160px !important;
}
.wp-block-columns .wp-block-column[style*="25%"] .wp-block-post-featured-image img {
  width: 160px;
  max-width: 160px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wp-block-columns.are-vertically-aligned-center:hover .wp-block-column[style*="25%"] .wp-block-post-featured-image img {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(0,0,0,.28);
}

/* Book label (GUEST CHAPTER paragraph) */
.wp-block-column.is-vertically-aligned-center p.has-primary-color {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ls-orange) !important;
  margin-bottom: 14px;
}

/* Book title (h4 in post title) */
.wp-block-columns .wp-block-column[style*="75%"] .wp-block-post-title,
.wp-block-columns .wp-block-column[style*="75%"] .wp-block-post-title a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ls-black);
  text-decoration: none;
  margin-bottom: 10px;
}

/* Book author italic */
.wp-block-columns .wp-block-column[style*="75%"] p em {
  font-size: 13px;
  color: var(--ls-mid);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}

/* Book description */
.wp-block-columns .wp-block-column[style*="75%"] p:not(.has-primary-color):not(:has(em)) {
  font-size: 14px;
  color: var(--ls-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ── Contact page ──────────────────────────────────────── */
/* CONTACT / LINA heading group */
.wp-block-group .wp-block-heading {
  /* keep base styles */
}

/* WPForms styling — match design system */
.wpforms-container-full .wpforms-form label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ls-mid);
  display: block;
  margin-bottom: 6px;
}

.wpforms-container-full input[type=text],
.wpforms-container-full input[type=email],
.wpforms-container-full input[type=url],
.wpforms-container-full input[type=tel],
.wpforms-container-full select,
.wpforms-container-full textarea {
  background: transparent !important;
  border: 1px solid var(--ls-border-strong) !important;
  border-radius: 2px !important;
  padding: 10px 12px !important;
  font-family: var(--ls-sans) !important;
  font-size: 14px !important;
  color: var(--ls-black) !important;
  box-shadow: none !important;
  transition: border-color .2s !important;
  width: 100%;
}
.wpforms-container-full input[type=text]:focus,
.wpforms-container-full input[type=email]:focus,
.wpforms-container-full textarea:focus {
  border-color: var(--ls-orange) !important;
  outline: none !important;
  box-shadow: none !important;
}
.wpforms-container-full textarea {
  resize: vertical;
  min-height: 120px;
}

/* WPForms submit button */
.wpforms-container-full .wpforms-submit,
.wpforms-container-full button[type=submit] {
  display: inline-block !important;
  font-family: var(--ls-sans) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: 7px 14px !important;
  border-radius: 2px !important;
  border: 1px solid var(--ls-orange) !important;
  color: var(--ls-orange) !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: background .2s, color .2s !important;
}
.wpforms-container-full .wpforms-submit:hover,
.wpforms-container-full button[type=submit]:hover {
  background: var(--ls-orange) !important;
  color: #fff !important;
}

/* ── Single post / inner page ──────────────────────────── */
.single .wp-block-post-title,
.page .wp-block-post-title {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ls-black);
  margin-bottom: 32px;
}

/* Post meta bar */
.wp-block-post-date,
.wp-block-post-terms,
.wp-block-post-author {
  font-size: 12px;
  color: var(--ls-light);
  letter-spacing: .04em;
}

/* Comment form */
.comment-reply-title,
#reply-title {
  font-family: var(--ls-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ls-black);
  margin-bottom: 8px;
}

#respond .comment-notes {
  font-size: 12px;
  color: var(--ls-light);
  margin-bottom: 28px;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form textarea {
  background: transparent;
  border: 1px solid var(--ls-border-strong);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: var(--ls-sans);
  font-size: 14px;
  color: var(--ls-black);
  width: 100%;
  transition: border-color .2s;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--ls-orange);
  outline: none;
}

.comment-form #submit,
.comment-form input[type=submit] {
  width: 100%;
  background: var(--ls-orange);
  color: #fff;
  border: none;
  padding: 14px;
  font-family: var(--ls-sans);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity .2s;
  margin-top: 8px;
}
.comment-form #submit:hover {
  opacity: .88;
}

/* ── Content sections — spacing ────────────────────────── */
.wp-block-group.alignfull {
  padding-inline: var(--ls-side-pad);
}

.wp-block-group.alignfull > .wp-block-group__inner-container {
  max-width: var(--ls-max-w);
  margin-inline: auto;
}

/* Section rows: heading + "More X" link side by side */
.wp-block-group .section-row,
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* ── Mid-page cover caption text (content styling reused by
   native has-parallax Cover blocks — see bottom of file) ── */
.ls-parallax-mid-label {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 var(--ls-side-pad);
}
.ls-parallax-mid-label strong {
  display: block;
  font-family: var(--ls-sans);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
  color: #fff !important;
}
.ls-parallax-mid-label small {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
/* Big overlapping name — sits above the tagline in the hero only */
.ls-hero-name-row { margin-bottom: 22px; }
.ls-hero-name {
  font-family: var(--ls-sans);
  font-size: clamp(46px, 9vw, 128px);
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: .92;
  color: #fff;
  margin: 0;
}
.ls-hero-name em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.55);
}

/* Tagline inside hero */
.ls-parallax-label {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.ls-parallax-label span { color: var(--ls-orange); }

@media (max-width: 768px) {
  /* Tagline wraps gracefully centered instead of colliding with the
     scroll cue below it — was overflowing/wrapping unpredictably at
     the desktop size+tracking on narrow screens. */
  .ls-parallax-label {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    letter-spacing: .13em;
    gap: 6px;
    padding-bottom: 0;
  }
  .ls-hero-name-row { margin-bottom: 14px; }
  .ls-parallax-mid-label strong { margin-bottom: 10px; }
}

/* ── Scroll progress bar ────────────────────────────────── */
#ls-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--ls-orange);
  z-index: 10000;
  pointer-events: none;
}

/* ── Scene break (ls-scene-break cover block) ───────────── */
.wp-block-cover.ls-scene-break {
  min-height: 380px !important;
  align-items: center;
}
.wp-block-cover.ls-scene-break .wp-block-cover__inner-container {
  max-width: 560px;
  margin-right: auto;
  margin-left: var(--ls-side-pad);
}
.wp-block-cover.ls-scene-break blockquote,
.wp-block-cover.ls-scene-break .wp-block-quote {
  font-family: var(--ls-serif);
  font-size: clamp(17px, 2.5vw, 22px);
  color: #fff;
  line-height: 1.5;
  font-style: italic;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 16px;
}
.wp-block-cover.ls-scene-break .wp-block-quote cite,
.wp-block-cover.ls-scene-break .wp-block-quote__citation {
  font-family: var(--ls-sans);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wp-block-cover.ls-scene-break .wp-block-quote cite::before,
.wp-block-cover.ls-scene-break .wp-block-quote__citation::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--ls-orange);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Page hero (Articles, Radio, etc.) ─────────────────── */
.wp-block-image.alignfull img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

/* Cover-block page hero — use class ls-page-hero on inner pages */
.wp-block-cover.ls-page-hero {
  min-height: 260px !important;
  align-items: flex-end;
  padding-bottom: 40px;
}
.wp-block-cover.ls-page-hero .wp-block-cover__inner-container {
  max-width: var(--ls-max-w);
  margin-inline: auto;
  padding: 0 var(--ls-side-pad);
}
.wp-block-cover.ls-page-hero .ls-page-eyebrow {
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ls-orange);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wp-block-cover.ls-page-hero .ls-page-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--ls-orange);
  display: inline-block;
  flex-shrink: 0;
}
.wp-block-cover.ls-page-hero .ls-page-title {
  font-size: clamp(22px, 4vw, 36px) !important;
  font-weight: 400 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* ── Reveal / fade-in animation ────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Groups whose children fade in one after another (set via main.js) */
@media (prefers-reduced-motion: no-preference) {
  .reveal-group > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
    transition-delay: calc(var(--ls-reveal-i, 0) * 70ms);
  }
  .reveal-group.in > * {
    opacity: 1;
    transform: none;
  }
}

/* ── Publications marquee ──────────────────────────────── */
.ls-marquee-section {
  position: relative;
  margin: 0 auto !important;
  padding: 10px 0 10px;
  border-top: 1px solid var(--ls-border);
  border-bottom: 1px solid var(--ls-border);
  overflow: hidden;
}

/* "As featured in" label */
.ls-marquee-label {
  text-align: center;
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ls-light);
  margin-bottom: 24px;
}
.ls-marquee-section img{
	max-width: 100px;
	padding: 0 20px;
}
/* edge fades */
.ls-marquee-section::before,
.ls-marquee-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ls-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, var(--ls-cream) 0%, transparent 100%);
}
.ls-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, var(--ls-cream) 0%, transparent 100%);
}

.ls-marquee-track {
  display: flex;
  width: max-content;
  animation: ls-marquee 28s linear infinite;
}

/* Loops across 4 copies of the logo row, not 2 — with only 2, a
   single copy is narrower than most desktop viewports, so once it
   scrolls past there's a stretch of empty track before the next
   copy catches up. -25% moves exactly one copy's width per cycle,
   same as -50% did with 2 copies, so the speed is unchanged. */
@keyframes ls-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

.ls-marquee-inner {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ls-logo-ph {
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  margin: 0 16px;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ls-mid);
  opacity: .55;
  transition: opacity .2s, border-color .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid var(--ls-border);
  border-radius: 2px;
  cursor: default;
}
.ls-logo-ph:hover { opacity: 1; border-color: var(--ls-border-strong); color: var(--ls-black); }

/* ── Ventures — "Beyond the byline" (Foundation + Production) ──
   Plain full-width rectangle on purpose — no diagonal clip-path. ── */
.ls-ventures { position: relative; overflow: hidden; }
.ls-ventures h5.wp-block-heading {
  color: rgba(255,255,255,.85);
  justify-content: center;
}
.ls-ventures h2.wp-block-heading {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: .02em;
  margin-top: 14px;
}

.ls-venture-grid { gap: clamp(24px, 4vw, 40px) !important; }

.ls-venture-card {
  background: var(--ls-cream);
  border-radius: 10px;
  padding: 24px 24px 30px;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.ls-venture-card:hover { transform: translateY(-8px); }

.ls-venture-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.ls-venture-tag {
  display: inline-block;
  font-size: 10px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--ls-orange);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px !important;
}
.ls-venture-card.is-zanz .ls-venture-tag { background: #4A6741; }
.ls-venture-card.is-fanous .ls-venture-tag { background: #9A6B2A; }

.ls-venture-name { color: var(--ls-black) !important; margin-bottom: 10px !important; }
.ls-venture-desc {
  font-size: 14px !important;
  color: var(--ls-mid) !important;
  line-height: 1.7;
  margin-bottom: 16px !important;
}
.ls-venture-link a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.ls-venture-card.is-zanz .ls-venture-link a { color: #3A5232; }
.ls-venture-card.is-fanous .ls-venture-link a { color: #7A5420; }

@media (max-width: 768px) {
  .ls-venture-grid { flex-direction: column; }
	/* sticky posts cards */
.wp-block-post.category-articles,
.wp-block-post.category-radio-podcast,
.wp-block-post.category-books,
.ls-venture-grid.is-zanz{
	position: sticky;
	top: 70px;
}
}
.wp-block-post.category-director{
		position: sticky;
	top: 70px;
}
/* Rotating badge — decorative only, hidden on mobile */
.ls-orbit {
  position: absolute;
  top: 36px; right: 6%;
  width: 120px; height: 120px;
  z-index: 2;
  opacity: .85;
  pointer-events: none;
}
.ls-orbit svg { width: 100%; height: 100%; animation: ls-orbit-spin 16s linear infinite; }
.ls-orbit-arrow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px; color: #fff;
}

@keyframes ls-orbit-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ls-orbit svg { animation: none; } }
@media (max-width: 768px) { .ls-orbit { display: none; } }

/* ── Footer ────────────────────────────────────────────── */

footer{
	margin: 0;
}
/* Darkened amber — less jarring against cream page content */
.ls-site-footer,
.wp-block-template-part[class*="footer"],
footer.wp-block-template-part {
	color: black;
  position: relative;
  overflow: hidden;
}
/* Decorative circle in top-right corner */
.wp-block-template-part[class*="footer"]::before,
footer.wp-block-template-part::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

/* Footer upper band */

.ls-footer-upper .wp-block-columns {
  align-items: start;

  padding: 0 !important;
}

/* Footer brand name */
.ls-footer-brand .wp-block-site-title,
.ls-footer-brand .wp-block-site-title a {
  font-size: 16px !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  margin-bottom: 14px;
}

/* Footer tagline */
.ls-footer-tagline {
  font-size: 12px !important;
  color: rgba(255,255,255,.65) !important;
  line-height: 1.7;
  max-width: 200px;
}

/* Footer nav label */
.ls-footer-nav-label {
  font-size: 10px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.5) !important;
}

/* Footer navigation links */
.ls-footer-nav-col .wp-block-navigation-item__content,
.ls-footer-nav-col .wp-block-navigation a {
  font-size: 12px !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  transition: color .2s !important;
  text-decoration: none !important;
}
.ls-footer-nav-col .wp-block-navigation-item:hover .wp-block-navigation-item__content,
.ls-footer-nav-col .wp-block-navigation a:hover {
  color: #fff !important;
}
/* suppress the underline hover effect inside footer nav */
.ls-footer-nav-col .wp-block-navigation-item__content::after {
  display: none !important;
}

/* Footer social label */
.ls-footer-social-label {
  font-size: 10px !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.5) !important;
  margin-bottom: 16px !important;
}

/* Social links */
.ls-footer-social .wp-block-social-link a,
.ls-footer-connect .wp-block-social-links a {
  color: rgba(255,255,255,.8) !important;
  transition: color .2s;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.ls-footer-social .wp-block-social-link a:hover,
.ls-footer-connect .wp-block-social-links a:hover {
  color: #fff !important;
}
.ls-footer-social .wp-block-social-link svg,
.ls-footer-connect .wp-block-social-links svg {
  fill: black!important;
  width: 16px;
  height: 16px;
}

/* Footer contact note */
.ls-footer-contact-note {
  font-size: 12px !important;
  color: rgba(255,255,255,.65) !important;
  line-height: 1.65;
  margin-top: 20px !important;
}
.ls-footer-contact-note a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0,0,0,.4) !important;
  transition: text-decoration-color .2s;
}
.ls-footer-contact-note a:hover {
  text-decoration-color: rgba(255,255,255,.9) !important;
}

/* Footer lower bar */

.ls-footer-lower .wp-block-columns {
  margin-inline: auto;
  align-items: center;
}

.ls-footer-lower p {
  font-size: 14px !important;
  letter-spacing: .08em;
  color: white !important;
  margin: 0;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --ls-side-pad: 20px;
  }

  /* Nav collapse — TT3 handles mobile nav natively */


  /* Featured articles stack vertically */
  .wp-block-columns:has(.ls-card),
  .wp-block-query .wp-block-columns,
  .wp-block-query .wp-block-columns.alignwide {
    grid-template-columns: 1fr !important;
    padding: 36px var(--ls-side-pad);
  }

  /* Speaker portrait + bio stack */
  .wp-block-columns:has(.wp-block-column[style*="33.33%"]) {
    flex-direction: column;
    padding: 40px 0;
  }
  .wp-block-column[style*="33.33%"],
  .wp-block-column[style*="66.66%"] {
    flex-basis: 100% !important;
  }

  /* Books stack */
  .wp-block-columns.are-vertically-aligned-center {
    flex-direction: column;
    padding: 40px 0;
  }
  .wp-block-column[style*="25%"],
  .wp-block-column[style*="75%"] {
    flex-basis: 100% !important;
    width: 100%;
  }
  .wp-block-columns .wp-block-column[style*="25%"] .wp-block-post-featured-image img {
    max-width: 160px;
  }

  /* Reversed columns on radio */
  .wp-block-columns.reversed {
    direction: ltr;
  }
/* 	books */
	.books .wp-container-core-group-is-layout-acffa83a{
		flex-wrap: wrap !important;
		flex-direction: column !important;
	}
	.books .wp-container-core-group-is-layout-acffa83a figure{
		width: 100%;
	}



  /* Contact columns stack */
  .wp-block-group[style*="min-height"] > .wp-block-columns {
    flex-direction: column;
  }
  .wp-block-group[style*="min-height"] .wp-block-column[style*="33.33%"],
  .wp-block-group[style*="min-height"] .wp-block-column[style*="66.66%"] {
    flex-basis: 100% !important;
  }

}

@media (max-width: 480px) {
  .wp-block-site-title,
  .wp-block-site-title a {
    font-size: 14px !important;
  }
  .wp-block-navigation .wp-block-navigation-item__content {
    font-size: 10px;
  }
}

/* ── Reusable native-Cover parallax utility (has-parallax) ───────
   Add the class "has-parallax" (Block > Advanced > Additional CSS class)
   to ANY Cover block to give it a smooth scroll parallax background.
   JS logic lives in assets/js/main.js -> initParallax()
   The image is sized larger than its container so the scroll-linked
   translate never reveals empty space at the top or bottom. */
.has-parallax { position: relative; overflow: hidden; }
.has-parallax .wp-block-cover__image-background {
  height: 160% !important;
  top: -20% !important;
  will-change: transform;
}

/* Optional helper — recreates the hero's original dark-to-orange
   gradient overlay on a native Cover block (use alongside the block's
   own overlay color/opacity, or instead of it). */
.ls-hero-cover .wp-block-cover__background {
  background: linear-gradient(to top, rgba(26,26,24,.7) 0%, rgba(26,26,24,.15) 55%, rgba(240,132,0,.12) 100%) !important;
  opacity: 1 !important;
}

/* Same gradient overlay, reused for the two mid-page has-parallax
   Cover blocks (Reporting-from-the-field, Bio backdrop). */
.ls-mid-cover .wp-block-cover__background {
  background: linear-gradient(to top, rgba(26,26,24,.7) 0%, rgba(26,26,24,.15) 55%, rgba(240,132,0,.12) 100%) !important;
  opacity: 1 !important;
}
