/*
Theme Name:   FarmTalk Child
Theme URI:    https://farmtalk.co.za
Description:  FarmTalk Child Theme for Soledad
Author:       FarmTalk
Author URI:   https://farmtalk.co.za
Template:     soledad
Version:      1.0.1
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  farmtalk-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — FarmTalk Design System
   ============================================================ */
:root {
  /* Brand Colours */
  --ft-red:        #dc2626;   /* primary accent — CTAs, labels, dots */
  --ft-red-dark:   #b91c1c;   /* hover state for red */
  --ft-red-muted:  #fca5a5;   /* light contexts e.g. dark-card labels */

  --ft-black:      #09090b;   /* zinc-950 — headings, footer bg */
  --ft-charcoal:   #18181b;   /* zinc-900 — body text */
  --ft-mid:        #71717a;   /* zinc-500 — meta / subdued text */
  --ft-border:     #e4e4e7;   /* zinc-200 — dividers */

  --ft-cream:      #f7f7f5;   /* page background */
  --ft-white:      #ffffff;   /* cards, header */

  /* Card dark variant */
  --ft-card-dark-bg:   #09090b;
  --ft-card-dark-text: rgba(255,255,255,0.80);

  /* Typography */
  --ft-font-display: 'Bebas Neue', 'Franklin Gothic Heavy', Impact, sans-serif;
  --ft-font-body:    'Source Serif 4', Georgia, serif;
  --ft-font-ui:      system-ui, -apple-system, sans-serif;

  /* Spacing */
  --ft-radius-card:   2rem;     /* rounded-[2rem] */
  --ft-radius-inner:  1.25rem;  /* inner image blocks */
  --ft-radius-pill:   9999px;   /* buttons */

  /* Shadows */
  --ft-shadow-card: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);

  /* Layout */
  --ft-max-width: 1280px;  /* matches <main id="main"> content wrapper */
  --ft-gutter:    1.5rem;  /* px-6 */
}

/* ============================================================
   BASE OVERRIDES — inherits Soledad, refines specifics
   ============================================================ */
body {
  background-color: var(--ft-cream);
  color: var(--ft-charcoal);
  font-family: var(--ft-font-body);
}

/* ============================================================
   UTILITY CLASSES — reusable across templates
   ============================================================ */

/* Label above headings */
.ft-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ft-red);
}

.ft-label--light { color: var(--ft-red-muted); }

/* Red accent bar (appears above card titles) */
.ft-bar {
  display: block;
  height: 0.5rem;
  width: 4rem;
  border-radius: var(--ft-radius-pill);
  background-color: var(--ft-red);
  margin-bottom: 1.25rem;
}

/* Card — base */
.ft-card {
  background: var(--ft-white);
  border-radius: var(--ft-radius-card);
  box-shadow: var(--ft-shadow-card);
  outline: 1px solid var(--ft-border);
  padding: 1.75rem;
}

.ft-card--dark {
  background: var(--ft-card-dark-bg);
  color: var(--ft-white);
  outline: none;
}

/* Placeholder thumbnail (replaced by real images at runtime) */
.ft-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e4e4e7;
  border-radius: var(--ft-radius-inner);
  overflow: hidden;
}
.ft-thumb img,
.ft-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.ft-btn {
  display: inline-block;
  border-radius: var(--ft-radius-pill);
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s, background-color 0.15s, border-color 0.15s;
  cursor: pointer;
  line-height: 1;
}

.ft-btn--primary {
  background-color: var(--ft-red);
  color: var(--ft-white);
}
.ft-btn--primary:hover { filter: brightness(1.1); color: var(--ft-white); }

.ft-btn--outline {
  background: transparent;
  color: var(--ft-charcoal);
  border: 1px solid var(--ft-border);
}
.ft-btn--outline:hover { border-color: var(--ft-red); color: var(--ft-red); }

.ft-btn--dark {
  background: var(--ft-black);
  color: var(--ft-white);
}
.ft-btn--dark:hover { background-color: var(--ft-red); color: var(--ft-white); }

.ft-btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.ft-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--ft-border);
  backdrop-filter: blur(6px);
}

/* Inner rows: constrained content, full-width background */
.ft-header__super,
.ft-header__main {
  max-width: var(--ft-max-width);
  margin: 0 auto;
  padding-left: var(--ft-gutter);
  padding-right: var(--ft-gutter);
  width: 100%;
  box-sizing: border-box;
}

.ft-header__super {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ft-mid);
}

.ft-header__main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

/* Logo – scales down on very small screens */
.ft-header__logo {
  flex: 0 0 auto;
  margin-right: 0.25rem;
}

.ft-header__logo img {
  height: 2.75rem;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (min-width: 480px) {
  .ft-header__logo img {
    height: 3.25rem;
    max-width: 220px;
  }
}

/* Desktop navigation */
.ft-header__nav {
  display: none;
  margin-right: auto;          /* only active when visible */
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .ft-header__nav {
    display: flex;
  }
}

.ft-header__nav a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ft-charcoal);
  text-decoration: none;
}
.ft-header__nav a:hover { color: var(--ft-red); }

/* Main Navigation list */
.ft-nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-nav-menu > li {
  margin: 0;
  padding: 0;
}

.ft-nav-menu > li > a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: var(--ft-charcoal);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.975rem;
  transition: color .2s ease;
}

.ft-nav-menu > li > a:hover {
  color: var(--ft-red);
}

.ft-nav-menu > li.current-menu-item > a,
.ft-nav-menu > li.current-menu-parent > a {
  color: var(--ft-red);
}

/* Active-page underline indicator */
.ft-nav-menu > li.current-menu-item > a::after,
.ft-nav-menu > li.current-menu-parent > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--ft-red);
  border-radius: var(--ft-radius-pill);
}

/* ============================================================
   HEADER ICON BUTTONS (search / hamburger)
   ============================================================ */
.ft-header__search-toggle,
.ft-header__hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--ft-charcoal);
  cursor: pointer;
  border-radius: 50%;
  transition: background-color .15s, color .15s;
  flex: 0 0 auto;
}

.ft-header__search-toggle:hover,
.ft-header__hamburger:hover {
  background: #f4f4f5;
  color: var(--ft-red);
}

.ft-header__search-toggle svg,
.ft-header__hamburger svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

/* Search icon + CTA: desktop only */
.ft-header__search-toggle,
.ft-header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .ft-header__search-toggle { display: inline-flex; }
  .ft-header__cta { display: inline-block; }
}

/* Hamburger: mobile only + pushed to the right edge */
.ft-header__hamburger {
  display: inline-flex;
  margin-left: auto;                 /* critical – pushes it to the far right */
  visibility: visible !important;    /* fight possible parent-theme overrides */
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (min-width: 1024px) {
  .ft-header__hamburger {
    display: none;
  }
}

/* Desktop search panel */
.ft-search-panel {
  border-bottom: 1px solid var(--ft-border);
  background: var(--ft-white);
}
.ft-search-panel[hidden] { display: none; }

.ft-search-panel__inner {
  max-width: var(--ft-max-width);
  margin: 0 auto;
  padding: 1rem var(--ft-gutter);
}

.ft-search-panel__inner .search-field {
  width: 100%;
  max-width: 28rem;
  padding: 0.6rem 1rem;
  border-radius: var(--ft-radius-pill);
  border: 1px solid var(--ft-border);
  font-family: var(--ft-font-ui);
}

/* Divider (desktop only) */
.ft-header__divider {
  display: none;
  width: 1px;
  height: 1.5rem;
  background: var(--ft-border);
  margin: 0 0.25rem;
  flex: none;
}

@media (min-width: 1024px) {
  .ft-header__divider { display: block; }
}

/* ============================================================
   MOBILE MENU — floating card
   ============================================================ */
.ft-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.ft-mobile-menu[hidden] { display: none; }

.ft-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.45);
  backdrop-filter: blur(2px);
}

.ft-mobile-menu__panel {
  position: absolute;
  top: 16px;
  right: 16px;
  left: 16px;
  margin-left: auto;
  width: calc(100vw - 32px);
  max-width: 360px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--ft-white);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  animation: ft-menu-pop 0.22s ease-out;
}

@keyframes ft-menu-pop {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ft-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.ft-mobile-menu__logo {
  font-family: var(--ft-font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ft-black);
}

.ft-mobile-menu__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: #f4f4f5;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ft-charcoal);
  flex: none;
  transition: background-color .15s, color .15s;
}
.ft-mobile-menu__close:hover { background: var(--ft-red); color: var(--ft-white); }
.ft-mobile-menu__close svg { width: 1rem; height: 1rem; fill: currentColor; }

/* Nav list — icon + label rows */
.ft-mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.ft-mobile-menu__list > li > a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.7rem 0.25rem;
  color: var(--ft-charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.0625rem;
  border-bottom: 1px solid var(--ft-border);
  transition: color .15s;
}

.ft-mobile-menu__list > li:last-child > a { border-bottom: none; }

.ft-mobile-menu__list > li > a svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  fill: currentColor;
  color: var(--ft-mid);
  transition: color .15s;
}

.ft-mobile-menu__list > li > a:hover,
.ft-mobile-menu__list > li.current-menu-item > a,
.ft-mobile-menu__list > li.current-menu-parent > a {
  color: var(--ft-red);
}
.ft-mobile-menu__list > li > a:hover svg,
.ft-mobile-menu__list > li.current-menu-item > a svg,
.ft-mobile-menu__list > li.current-menu-parent > a svg {
  color: var(--ft-red);
}

/* Search row */
.ft-mobile-menu__search {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ft-border);
}

.ft-mobile-menu__search .search-field {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: var(--ft-radius-pill);
  border: 1px solid var(--ft-border);
  font-family: var(--ft-font-ui);
  font-size: 0.9rem;
}
.ft-mobile-menu__search .search-field:focus {
  outline: none;
  border-color: var(--ft-red);
}

/* CTA button */
.ft-mobile-menu .ft-btn--block {
  margin-top: 1rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
}

/* Lock background scroll while mobile menu is open */
body.ft-menu-open {
  overflow: hidden;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.ft-footer {
  border-top: 1px solid var(--ft-border);
  background: var(--ft-white);
}

.ft-footer__inner {
  max-width: var(--ft-max-width);
  margin: 0 auto;
  padding: 3rem var(--ft-gutter);
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .ft-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.ft-footer__contact-person {
  margin-bottom: 0.75rem;
}

.ft-footer__contact-person strong {
  display: block;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-footer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ft-footer__copy {
  border-top: 1px solid var(--ft-border);
  padding: 1rem var(--ft-gutter);
  text-align: center;
  font-size: 0.75rem;
  color: var(--ft-mid);
  max-width: var(--ft-max-width);
  margin: 0 auto;
}

/* WhatsApp FAB */
.ft-whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.15s, background 0.15s;
  text-decoration: none;
}
.ft-whatsapp-fab:hover { transform: scale(1.1); background: #16a34a; }
.ft-whatsapp-fab svg { fill: white; width: 1.5rem; height: 1.5rem; }

/* ============================================================
   SECTION CHROME
   ============================================================ */
.ft-section-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ft-border);
}

.ft-section-header h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* ============================================================
   POST / CARD GRIDS
   ============================================================ */
.ft-grid-3 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .ft-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .ft-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.ft-grid-4 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px)  { .ft-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .ft-grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Horizontal scroll strip (videos) */
.ft-scroll-strip {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ft-scroll-strip::-webkit-scrollbar { display: none; }

.ft-scroll-strip__item {
  width: 330px;
  flex: none;
  overflow: hidden;
  border-radius: var(--ft-radius-card);
  background: var(--ft-white);
  box-shadow: var(--ft-shadow-card);
  outline: 1px solid var(--ft-border);
}

/* ============================================================
   SINGLE POST / WATCH / ARCHIVE
   ============================================================ */
.ft-single,
.ft-watch__body,
.ft-comments-wrap {
  max-width: var(--ft-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 1.75rem var(--ft-gutter) 3rem;
  width: 100%;
  box-sizing: border-box;
}

.ft-single {
  padding-top: 5px;
}

.ft-watch__body {
  padding-top: 1.5rem;
}

.ft-comments-wrap {
  padding-top: 0;
}

/* Comfortable reading width for body copy */
.ft-single .entry-content,
.ft-watch .entry-content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.ft-single__hero {
  border-radius: var(--ft-radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e4e4e7;
  margin-bottom: 2rem;
}
.ft-single__hero img { width: 100%; height: 100%; object-fit: cover; }

.ft-single__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: var(--ft-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.ft-single__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.ft-single__content {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--ft-charcoal);
}
.ft-single__content p { margin-bottom: 1.4em; }

.ft-single__meta-cat {
  color: var(--ft-red);
  font-weight: 700;
  text-decoration: none;
}
.ft-single__meta-cat:hover { text-decoration: underline; }

/* Archive */
.ft-archive {
  max-width: var(--ft-max-width);
  margin: 0 auto;
  padding: 2rem var(--ft-gutter);
}

/* ============================================================
   EVENTS ROW
   ============================================================ */
.ft-event-row {
  display: grid;
  gap: 1rem;
  border-radius: var(--ft-radius-card);
  background: var(--ft-white);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--ft-shadow-card);
  outline: 1px solid var(--ft-border);
  align-items: center;
}
@media (min-width: 768px) {
  .ft-event-row { grid-template-columns: 140px 1fr auto; }
}

.ft-event-row__date {
  border-radius: 1.4rem;
  background: #f4f4f5;
  padding: 1rem;
  text-align: center;
}

.ft-event-row__date strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--ft-black);
  margin-top: 0.25rem;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.ft-step__number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ft-red);
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 767px) {
  .ft-header__super .ft-hide-mobile { display: none; }
}

/* ============================================================
   WATCH-PAGE LAYOUT
   ============================================================ */
.ft-watch {
  width: 100%;
}

.ft-watch__player {
  background: #0a0a0a;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ft-watch__player-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative !important;
  padding-bottom: 56.25% !important;
  height: 0 !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ft-watch__player-inner iframe {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  max-width: none !important;
}

.ft-watch__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 1rem;
  color: #0a0a0a;
}

.ft-watch__content {
  margin-top: 1.5rem;
}

/* Hide possible Soledad sidebars on video posts */
body.single-format-video #secondary,
body.single-format-video .widget-area,
body.single-format-video aside.sidebar {
  display: none !important;
}

/* ============================================================
   CONTENT + AD SIDEBAR (legacy – kept for compatibility)
   ============================================================ */
.ft-single-columns {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.ft-single-columns__main {
  max-width: 720px;
}

.ft-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ft-ad-slot {
  background: #f4f4f5;
  border: 1px dashed #d4d4d8;
  border-radius: .75rem;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-ad-slot--placeholder {
  color: #a1a1aa;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ft-ad-slot__label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin: 0 0 .5rem;
}

@media (max-width: 900px) {
  .ft-single-columns {
    grid-template-columns: 1fr;
  }
  .ft-single-columns__main {
    max-width: none;
  }
  .ft-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .ft-sidebar .ft-ad-slot {
    flex: 1 1 280px;
  }
}

/* ============================================================
   RELATED VIDEOS STRIP
   ============================================================ */
.ft-related-videos {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ft-border);
}

.ft-related-videos__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #dc2626;
  margin: 0 0 1rem;
}

.ft-related-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.ft-related-videos__item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ft-related-videos__thumb {
  position: relative;
  padding-bottom: 56.25%;
  background: #e4e4e4;
  border-radius: .5rem;
  overflow: hidden;
}

.ft-related-videos__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 1.25rem;
}

.ft-related-videos__title {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.35;
  margin: .5rem 0 0;
  color: #0a0a0a;
}

@media (max-width: 640px) {
  .ft-related-videos__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ft-breadcrumb {
  max-width: var(--ft-max-width);
  margin: 0 auto;
  padding: 5px var(--ft-gutter) 0.75rem;
  font-size: 0.8rem;
  color: var(--ft-mid);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ft-breadcrumb a {
  color: var(--ft-mid);
  text-decoration: none;
}
.ft-breadcrumb a:hover { color: var(--ft-red); }

.ft-breadcrumb__sep { color: var(--ft-border); }

.ft-breadcrumb__current {
  color: var(--ft-charcoal);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.ft-watch .ft-breadcrumb { padding-top: 5px; }

.ft-single .ft-breadcrumb {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}