/* ============================================
   Satyen Raja Media Kit 2026
   Design Brief: Mr Eaves XL San OT only, PDF-style layout
   ============================================ */

:root {
  --black: #000000;
  --warriorsage-red: #D80114;
  --cream: #F5F3F0;
  --container-bg: #222222;
  --grey: #666666;
  --white: #ffffff;
  --metallic: rgba(197, 165, 114, 0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Background outside container per brief */
body {
  font-family: "mr-eaves-xl-sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
  background: var(--container-bg);
  -webkit-font-smoothing: antialiased;
}

/* Document container: max 1200px, centered; top padding creates space for nav above hero */
.doc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
}

/* Container padding: 42px inner spacing */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 42px;
}

/* Typography per brief - Mr Eaves XL San OT only */
h1, h2, h3, h4, h5 {
  line-height: 1.2;
}

h1 {
  font-size: 80px;
  font-weight: 600;
}

h2 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 32px;
}

h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* H5 Red Pre-Header per brief */
h5,
.section-preheader {
  font-size: 20px;
  font-weight: 600;
  color: var(--warriorsage-red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

/* Links */
a {
  color: var(--warriorsage-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* ========== Sections: alternating light/dark, full container width ========== */
section {
  padding: 64px 0 80px;
}

.section-dark {
  background: var(--black);
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
  color: var(--black);
}

/* Navigation: floating above hero on load; pill background appears on scroll */
nav {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 24px;
  box-sizing: border-box;
  pointer-events: none;
}

.nav-pill {
  padding: 14px 36px;
  display: flex;
  justify-content: center;
  pointer-events: auto;
  border-radius: 50px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

/* Pill background + liquid glass only on scroll */
nav.scrolled .nav-pill {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 4px 0;
  white-space: nowrap;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--warriorsage-red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .doc-container {
    padding-top: 0;
    margin: 8px;
  }

  .page-container {
    padding: 0 42px;
  }

  section {
    padding: 48px 0 64px;
  }

  nav {
    display: none;
  }
}

/* ========== Hero: full-width dark, headshot left, accent lines upper right ========== */
.hero {
  background-color: var(--black);
  background-image: url('images/topsection-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--white);
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 0; /* No top padding - hero starts below doc-container padding; no bottom so image locks */
  position: relative;
  overflow: hidden;
}

/* Three diagonal accent lines - upper right, warm metallic */
.hero-accent-lines {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 180px;
  height: 120px;
  pointer-events: none;
}

.hero-accent-lines span {
  display: block;
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--metallic));
  transform-origin: right center;
}

.hero-accent-lines span:nth-child(1) {
  width: 140px;
  top: 0;
  right: 0;
  transform: rotate(-25deg);
  opacity: 0.9;
}

.hero-accent-lines span:nth-child(2) {
  width: 100px;
  top: 24px;
  right: 0;
  transform: rotate(-25deg);
  opacity: 0.6;
}

.hero-accent-lines span:nth-child(3) {
  width: 60px;
  top: 48px;
  right: 0;
  transform: rotate(-25deg);
  opacity: 0.4;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  min-height: 55vh;
}

.hero-image-wrap {
  flex: 0 0 45%;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
}

.hero-satyen-img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  object-position: left bottom;
  display: block;
  vertical-align: bottom;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-preheader {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.hero-preheader span:first-child {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-preheader-line {
  flex: 1;
  min-width: 48px;
  max-width: 120px;
  height: 2px;
  background: var(--warriorsage-red);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.hero-tagline {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Logo strip - below hero content */
.hero-logo-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 0;
}

.hero-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

@media (max-width: 767px) {
  .hero {
    min-height: 75vh;
    padding: 0;
    display: flex;
    align-items: stretch;
  }

  .hero .page-container {
    padding: 0;
    width: 100%;
    display: flex;
  }

  .hero-inner {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 75vh;
    gap: 0;
  }

  .hero-image-wrap {
    grid-row: 1 / -1;
    grid-column: 1;
    min-height: 0;
    align-self: stretch;
    display: flex;
  }

  .hero-satyen-img {
    width: 100%;
    height: 100%;
    min-height: 50vh;
    object-fit: cover;
    object-position: center top;
  }

  .hero-text {
    grid-row: 2;
    grid-column: 1;
    align-self: end;
    padding: 24px 32px 28px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    margin: 0;
    order: unset;
  }

  .hero-preheader {
    margin-bottom: 8px;
  }

  .hero-preheader-line {
    max-width: 60px;
  }

  .hero h1 {
    margin-bottom: 8px;
  }

  .hero-tagline {
    margin-bottom: 4px;
  }

  .hero-tagline:last-of-type {
    margin-bottom: 0;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-accent-lines {
    top: 24px;
    right: 16px;
    width: 100px;
  }

  .hero-accent-lines span:nth-child(1) {
    width: 70px;
  }

  .hero-accent-lines span:nth-child(2) {
    width: 50px;
  }

  .hero-accent-lines span:nth-child(3) {
    width: 30px;
  }
}

/* ========== Recognition strip (cream, between hero and bio) ========== */
.recognition-strip {
  padding: 51px 0 64px;
  margin-bottom: 16px; /* page-break gap showing site background */
}

.recognition-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.recognition-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--black);
  text-transform: uppercase;
}

.recognition-label-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.recognition-divider {
  height: 24px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

.recognition-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0;
}

.recognition-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.recognition-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.recognition-logo-dark {
  filter: brightness(0);
  opacity: 0.85;
}

@media (max-width: 767px) {
  .recognition-title {
    font-size: 28px;
  }

  .recognition-title-br {
    display: none;
  }

  .recognition-label-wrap {
    gap: 10px;
    margin-bottom: 20px;
  }

  .recognition-divider {
    max-width: 40px;
    height: 14px;
  }

  /* Hide dividers on very narrow screens so label fits on one line */
  @media (max-width: 400px) {
    .recognition-divider {
      display: none;
    }
  }

  .recognition-label {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .recognition-logo-strip {
    flex-direction: column;
    gap: 16px;
  }

  .recognition-logo-img {
    height: 24px;
  }
}

/* ========== Biography ========== */
.bio-section-layout {
  display: grid;
  grid-template-columns: 40fr 60fr;
  grid-template-areas:
    "prehead prehead"
    "title title"
    "text video"
    "actions actions"
    "extended extended"
    "carousel carousel";
  gap: 0 48px;
}

.bio-section-layout .bio-video-wrap {
  grid-area: video;
}

.bio-section-layout .bio-preheader {
  grid-area: prehead;
}

.bio-section-layout .bio-title {
  grid-area: title;
}

.bio-section-layout .bio-text {
  grid-area: text;
}

.bio-section-layout .bio-actions {
  grid-area: actions;
}

.bio-section-layout .bio-extended-wrap {
  grid-area: extended;
}

.bio-section-layout .carousel-wrap {
  grid-area: carousel;
}

.bio-section-layout .bio-text {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .bio-section-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .bio-section-layout .bio-video-wrap {
    order: 1;
    margin-bottom: 24px;
  }

  .bio-section-layout .bio-preheader {
    order: 2;
  }

  .bio-section-layout .bio-title {
    order: 3;
    margin-bottom: 20px;
  }

  .bio-section-layout .bio-text {
    order: 4;
  }

  .bio-section-layout .bio-actions {
    order: 5;
  }

  .bio-section-layout .bio-extended-wrap {
    order: 6;
  }

  .bio-section-layout .carousel-wrap {
    order: 7;
  }
}

.bio-actions {
  margin-top: 32px;
  margin-bottom: 48px;
}

.bio-extended-wrap {
  display: none;
  width: 100%;
  margin-top: 40px;
}

.bio-extended-wrap.expanded {
  display: block;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  color: var(--warriorsage-red);
  font-family: inherit;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #b00110;
}

.read-more-btn .read-more-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.read-more-btn.is-expanded .read-more-chevron {
  transform: rotate(180deg);
}

.bio-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.bio-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.video-placeholder {
  background: var(--grey);
  min-height: 280px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-style: italic;
  font-size: 15px;
}

/* Carousel: 3 visible, sliding track, arrows + dots */
.carousel-wrap {
  width: 100%;
  margin-top: 48px;
  border-radius: 8px;
  position: relative;
  padding-left: 48px;
  padding-right: 48px;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
  /* 12 slides, 3 visible */
  width: 400%;
}

.carousel-slide {
  flex: 0 0 8.333%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .carousel-track {
    /* 12 slides, 2 visible */
    width: 600%;
  }
  .carousel-slide {
    flex: 0 0 8.333%;
  }
}

@media (max-width: 767px) {
  .carousel-track {
    /* 12 slides, 1 visible */
    width: 1200%;
  }
  .carousel-slide {
    flex: 0 0 8.333%;
  }
}

/* Midway between portrait (3:4) and square (1:1) — works for both orientations */
.carousel-slide > div,
.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  display: block;
}

.carousel-slide > div {
  background: var(--grey);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-dots button:hover {
  background: rgba(0, 0, 0, 0.4);
}

.carousel-dots button[aria-selected="true"] {
  background: var(--warriorsage-red);
  transform: scale(1.2);
}

.carousel-caption {
  font-size: 15px;
  font-style: italic;
  color: var(--grey);
  margin-top: 12px;
}

.section-dark .carousel-caption {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767px) {
  .carousel-wrap {
    padding-left: 36px;
    padding-right: 36px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: 0;
  }

  .carousel-next {
    right: 0;
  }
}

/* Expertise */
.expertise-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.expertise-copy {
  order: 1;
}

.expertise-image {
  order: 2;
  display: flex;
  justify-content: center;
}

.expertise-list {
  list-style: none;
}

.expertise-list li {
  margin-bottom: 16px;
  padding-left: 0;
}

.expertise-list strong {
  display: block;
  margin-bottom: 4px;
}

.expertise-image-placeholder,
.expertise-image-img {
  aspect-ratio: 3 / 4;
  width: 100%;
  max-width: 380px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.expertise-image-placeholder {
  background: var(--container-bg);
}

@media (max-width: 767px) {
  .expertise-block {
    grid-template-columns: 1fr;
  }

  .expertise-copy,
  .expertise-image {
    order: unset;
  }

  .expertise-image-placeholder,
  .expertise-image-img {
    max-width: none;
  }
}

/* Books */
.book-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
  margin-bottom: 72px;
}

.book-cover {
  display: flex;
  justify-content: flex-start;
}

.book-cover.book-cover-centered {
  width: 100%;
  max-width: none; /* allow full column width so centering is visible */
  justify-content: center;
}

.book-cover.book-cover-centered .book-cover-img {
  max-width: 260px; /* keep portrait size; container is full width for centering */
}

.book-entry:nth-child(even) .book-cover {
  order: 2;
}

.book-entry:nth-child(even) .book-info {
  order: 1;
}

.book-cover-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.book-cover-portrait {
  max-width: 260px;
}

.book-cover-portrait .book-cover-img {
  max-height: 380px;
  object-fit: contain;
}

.book-cover-placeholder {
  min-height: 340px;
  background: var(--container-bg);
  border-radius: 8px;
}

.book-info .book-date {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 16px;
}

.section-dark .book-date {
  color: rgba(255, 255, 255, 0.7);
}

.btn-purchase {
  display: inline-block;
  background: var(--warriorsage-red);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: background 0.2s ease;
}

.btn-purchase:hover {
  background: #b00110;
  text-decoration: none;
}

@media (max-width: 767px) {
  .book-entry {
    grid-template-columns: 1fr;
  }

  .book-entry:nth-child(even) .book-cover,
  .book-entry:nth-child(even) .book-info {
    order: unset;
  }

  .book-info h3 {
    font-size: 24px;
  }
}

/* Podcasts */
.podcasts-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.podcast-embed-wrap {
  margin: 0;
}

.podcast-embed-wrap iframe {
  width: 100%;
  height: 175px;
  border-radius: 8px;
  border: none;
}

.podcast-link-card {
  margin: 0;
  padding: 24px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.podcast-link-card a {
  color: var(--warriorsage-red);
}

@media (max-width: 767px) {
  .podcasts-grid {
    grid-template-columns: 1fr;
  }
}

/* Video podcasts subsection */
.podcast-videos {
  margin-top: 28px;
}

.podcast-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.podcast-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.podcast-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .podcast-videos-grid {
    grid-template-columns: 1fr;
  }
}

/* Impact / Companies */
.company-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
  margin-bottom: 72px;
}

.company-entry:nth-child(even) .company-logo {
  order: 2;
}

.company-entry:nth-child(even) .company-info {
  order: 1;
}

.company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-logo-placeholder {
  min-height: 200px;
  width: 100%;
  max-width: 320px;
  background: var(--container-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo-img {
  width: auto;
  max-width: 320px;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  border-radius: 8px;
}

.company-date-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.company-date {
  font-size: 20px;
  font-weight: 600;
  color: var(--warriorsage-red);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.company-date-divider {
  height: 20px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .company-entry {
    grid-template-columns: 1fr;
  }

  .company-entry:nth-child(even) .company-logo,
  .company-entry:nth-child(even) .company-info {
    order: unset;
  }
}

/* Impact: Strategic Advisor heading + "And many more" logo strip */
.impact-advisor-heading {
  font-size: 48px;
  font-weight: 600;
  color: var(--cream);
  margin: 64px 0 40px;
  text-align: center;
}

.impact-and-more {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 48px 0 24px;
}

.impact-logos-scroll-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
}

.impact-logos-scroll-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: impact-logos-scroll 45s linear infinite;
}

.impact-scroll-logo {
  height: 150px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes impact-logos-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .impact-advisor-heading {
    font-size: 36px;
    margin: 48px 0 32px;
  }

  .impact-and-more {
    margin: 36px 0 20px;
  }

  .impact-scroll-logo {
    height: 120px;
    max-width: 140px;
  }

  .impact-logos-scroll-track {
    gap: 36px;
    animation-duration: 35s;
  }
}

/* Press & Media */
.press-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.press-subsection {
  margin-bottom: 56px;
}

.press-articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.press-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 24px;
  transition: background 0.2s ease;
}

.press-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.press-card .pub-logo {
  height: 32px;
  width: auto;
  max-width: 120px;
  margin-bottom: 14px;
  object-fit: contain;
  display: block;
}

/* Authority logo lives in a wrapper; don't let base rule shrink it */
.press-card .pub-logo-wrap .pub-logo {
  height: 100%;
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

/* Wrapper forces Authority Magazine logo to a fixed large size */
.pub-logo-wrap--authority {
  width: 100%;
  min-height: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: block;
}

.pub-logo-wrap--authority .pub-logo-authority-magazine {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
  display: block;
}

/* News Segments: 2-column grid on desktop, description below each video */
.press-tv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 28px;
}

.press-tv-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.press-tv-description {
  margin-top: 16px;
}

.press-tv-description p {
  margin: 0 0 6px;
}

.press-tv-description p:last-of-type {
  margin-bottom: 0;
}

.press-tv-description a {
  display: inline-block;
  margin-top: 8px;
}

.press-film-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
  align-items: start;
}

/* Films & Documentaries: 2-column poster grid, title + description below each */
.press-films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 28px;
}

.press-film-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.press-film-poster {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--container-bg);
  margin-bottom: 20px;
}

.press-film-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.press-film-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}

.press-thumbnail {
  min-height: 180px;
  background: var(--container-bg);
  border-radius: 8px;
  aspect-ratio: 16/9;
}

/* Responsive YouTube embed for News Segments */
.press-tv-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.press-tv-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .press-articles {
    grid-template-columns: 1fr;
  }

  .press-tv-grid {
    grid-template-columns: 1fr;
  }

  .press-film-item {
    grid-template-columns: 1fr;
  }

  .press-films-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .press-film-poster {
    max-width: 100%;
  }
}

/* Credentials */
.credentials-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: center;
  margin-bottom: 72px;
}

.credentials-block:nth-child(even) .cred-image {
  order: 2;
}

.credentials-block:nth-child(even) .cred-text {
  order: 1;
}

.credentials-block.centered {
  grid-template-columns: 1fr;
  text-align: center;
}

.cred-image-placeholder {
  min-height: 280px;
  background: var(--container-bg);
  border-radius: 8px;
}

.cred-image {
  max-width: 100%;
}

.cred-image img.cred-img {
  width: 100%;
  height: auto;
  max-height: 360px;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}

.cred-caption {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  margin-bottom: 0;
}

.cred-date {
  font-size: 20px;
  font-weight: 600;
  color: var(--warriorsage-red);
  margin: 0 0 0.75em;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .credentials-block {
    grid-template-columns: 1fr;
  }

  .credentials-block:nth-child(even) .cred-image,
  .credentials-block:nth-child(even) .cred-text {
    order: unset;
  }
}

/* Two-column text */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  max-width: 100%;
}

.two-col-text ul {
  margin: 16px 0;
  padding-left: 24px;
}

.two-col-text li {
  margin-bottom: 10px;
}

.sets-apart-grid {
  align-items: start;
}

.sets-apart-intro {
  max-width: 100%;
  margin: 0 0 28px;
  line-height: 1.6;
}

/* 3 items: 2 columns, row flow — row 1: [1][2], row 2: [3] */
.sets-apart-grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  gap: 28px 56px;
  margin-bottom: 28px;
  max-width: 100%;
}

.sets-apart-closing {
  max-width: 100%;
}

.sets-apart-closing p {
  margin: 0 0 20px;
  line-height: 1.6;
}

.sets-apart-closing p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .sets-apart-grid-three {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* 2 columns × 4 rows so items line up horizontally (1 with 5, 2 with 6, etc.) */
.sets-apart-grid-aligned {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 28px 56px;
  margin-top: 28px;
  max-width: 100%;
}

.sets-apart-grid-aligned .sets-apart-item {
  margin-bottom: 0;
  padding-bottom: 28px;
  align-self: start;
}

.sets-apart-grid-aligned .sets-apart-item:nth-child(4),
.sets-apart-grid-aligned .sets-apart-item:nth-child(8) {
  padding-bottom: 0;
}

.sets-apart-item {
  margin-bottom: 28px;
}

.sets-apart-item:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .sets-apart-grid-aligned {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 28px;
  }

  .sets-apart-grid-aligned .sets-apart-item {
    padding-bottom: 28px;
  }

  .sets-apart-grid-aligned .sets-apart-item:nth-child(4) {
    padding-bottom: 28px;
  }

  .sets-apart-grid-aligned .sets-apart-item:last-child {
    padding-bottom: 0;
  }
}

/* Full-width image at end of What Sets Satyen Apart — edges of container, full height visible */
.sets-apart-fullwidth {
  margin-top: 56px;
  margin-left: -42px;
  margin-right: -42px;
  width: calc(100% + 84px);
}

.sets-apart-hero-wrap {
  position: relative;
}

.sets-apart-fullwidth-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* Overlay on bottom half: video left, testimonial card right */
.sets-apart-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  padding: 24px 32px 32px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);
  border-radius: 0 0 8px 8px;
}

/* Second video + testimonial: below the background image, same 2-col layout */
.testimonials-video-row {
  margin-top: 0;
  padding: 40px 0 0;
  width: 100%;
}

.sets-apart-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.sets-apart-hero-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.sets-apart-hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.sets-apart-testimonial-card {
  background: var(--cream);
  color: var(--black);
  padding: 28px 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.sets-apart-quote {
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: normal;
  margin: 0 0 16px;
}

.sets-apart-attribution {
  font-size: 1.2rem;
  color: var(--grey);
  margin: 0;
}

.sets-apart-attribution em {
  font-style: italic;
}

@media (max-width: 767px) {
  .sets-apart-fullwidth {
    margin-left: -42px;
    margin-right: -42px;
    width: calc(100% + 84px);
  }

  .sets-apart-hero-overlay {
    height: auto;
    min-height: 50%;
    padding: 20px 20px 24px;
    align-items: flex-end;
  }

  .testimonials-video-row {
    padding: 32px 0 0;
  }

  .sets-apart-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .two-col-text {
    grid-template-columns: 1fr;
  }
}

/* Contact form (Keap/Infusionsoft) */
.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.contact-form .infusion-field {
  margin-bottom: 0;
}

.contact-form .infusion-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  margin-bottom: 0;
}

.contact-form .infusion-name-row .infusion-field {
  margin-bottom: 0;
}

.contact-form .infusion-name-row input {
  margin-bottom: 20px;
}

.contact-form .infusion-submit {
  margin-top: 8px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--grey);
  border-radius: 6px;
  color: var(--cream);
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--grey);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--warriorsage-red);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn-submit {
  display: block;
  width: 100%;
  padding: 14px 40px;
  background: var(--warriorsage-red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form .btn-submit:hover {
  background: #b00110;
}

.contact-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 15px;
  color: var(--grey);
}

.contact-footer a {
  color: var(--cream);
}

.section-cream .contact-form input,
.section-cream .contact-form textarea {
  background: var(--white);
  border-color: #ccc;
  color: var(--black);
}

.section-cream .contact-form input::placeholder,
.section-cream .contact-form textarea::placeholder {
  color: var(--grey);
}

.section-cream .contact-footer {
  color: var(--grey);
}

.section-cream .contact-footer a {
  color: var(--warriorsage-red);
}

@media (max-width: 767px) {
  .contact-form .infusion-name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form .infusion-name-row .infusion-field:first-child input {
    margin-bottom: 20px;
  }
}

/* Section title center */
.section-title-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-title-center h5 {
  margin-bottom: 8px;
}

.section-title-center h2 {
  margin-bottom: 12px;
}

.questions-intro {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.questions-intro:last-of-type {
  margin-bottom: 0;
}

.questions-list-wrap {
  margin-top: 32px;
  max-width: 100%;
}

/* Single grid: 2 columns × 6 rows so Q1–Q6 line up horizontally with Q7–Q12 */
.questions-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
  gap: 24px 56px;
  margin: 0;
  padding-left: 24px;
  list-style-position: outside;
}

.questions-list-wrap .questions-list {
  margin: 0;
  padding-left: 24px;
}

.questions-list-wrap .questions-list li {
  margin-bottom: 0;
  min-height: 0;
  align-self: start;
}

.questions-list-wrap .questions-list-grid li {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.questions-list-wrap .questions-list-grid li:nth-child(6),
.questions-list-wrap .questions-list-grid li:nth-child(12) {
  padding-bottom: 0;
}

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

.questions-list li::marker {
  font-weight: 600;
}

@media (max-width: 767px) {
  .questions-list-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 20px;
  }

  .questions-list-wrap .questions-list-grid li {
    padding-bottom: 20px;
  }

  .questions-list-wrap .questions-list-grid li:last-child {
    padding-bottom: 0;
  }
}
