/* ===========================
   MEDIA VIDEOS
   =========================== */

/* Filter Buttons */
.dess-mv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.dess-mv-filter {
  padding: 8px 20px;
  border: 2px solid #1b4f8a;
  background: transparent;
  color: #1b4f8a;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.dess-mv-filter.active,
.dess-mv-filter:hover {
  background: #1b4f8a;
  color: #ffffff;
}

/* Grid */
.dess-mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.dess-mv-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}
.dess-mv-card:hover {
  transform: translateY(-4px);
}
.dess-mv-card.hidden {
  display: none;
}

/* Thumbnail */
.dess-mv-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  height: 200px;
}
.dess-mv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.dess-mv-card:hover .dess-mv-thumb img {
  transform: scale(1.04);
}
.dess-mv-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dess-mv-thumb-placeholder i {
  font-size: 48px;
  color: #ff0000;
  opacity: 0.7;
}

/* Play Button */
.dess-mv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.dess-mv-play i {
  font-size: 18px;
  color: #e63329;
  margin-left: 3px;
}
.dess-mv-card:hover .dess-mv-play {
  background: #e63329;
}
.dess-mv-card:hover .dess-mv-play i {
  color: #ffffff;
}

/* Duration badge */
.dess-mv-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Body */
.dess-mv-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dess-mv-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: #1b4f8a;
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}
.dess-mv-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.dess-mv-title a {
  color: #1a1a1a;
  text-decoration: none;
}
.dess-mv-title a:hover {
  color: #1b4f8a;
}

.dess-mv-excerpt {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.dess-mv-link {
  font-size: 13px;
  font-weight: 600;
  color: #e63329;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.dess-mv-link:hover {
  color: #c92a21;
}

/* Responsive */
@media (max-width: 900px) {
  .dess-mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .dess-mv-grid {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   SINGLE MEDIA VIDEO PAGE
   =========================== */

.dess-single-video {
  width: 100%;
}

/* Hero */
.dess-sv-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 120px;
  background: #0a1628;
}
.dess-sv-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 30px;
}

/* Main Layout */
.dess-sv-main {
  padding: 60px 40px;
}
.dess-sv-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  background: #f0f4e8;
  border-radius: 16px;
  padding: 48px;
}

/* Meta top */
.dess-sv-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.dess-sv-cat {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1b4f8a;
  text-decoration: none;
}
.dess-sv-cat:hover {
  text-decoration: underline;
}
.dess-sv-sep {
  color: #999999;
  font-size: 13px;
}
.dess-sv-date {
  font-size: 13px;
  color: #666666;
}

/* Title + Speaker */
.dess-sv-title {
  font-size: 36px;
  font-weight: 800;
  color: #0a1628;
  line-height: 1.2;
  margin: 0 0 16px;
}
.dess-sv-speaker {
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 16px;
}

/* Description */
.dess-sv-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 24px;
}
.dess-sv-desc p {
  margin-bottom: 12px;
}

/* Platform links */
.dess-sv-platforms {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dess-sv-platform {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}
.dess-sv-platform.youtube {
  background: #ff0000;
  color: #ffffff;
}
.dess-sv-platform.spotify {
  background: #1db954;
  color: #ffffff;
}
.dess-sv-platform.podcast {
  background: #9b59b6;
  color: #ffffff;
}
.dess-sv-platform.amazon {
  background: #ff9900;
  color: #ffffff;
}
.dess-sv-platform.linkedin {
  background: #0a66c2;
  color: #ffffff;
}
.dess-sv-platform.instagram {
  background: #e1306c;
  color: #ffffff;
}
.dess-sv-platform.facebook {
  background: #1877f2;
  color: #ffffff;
}
.dess-sv-platform.twitter {
  background: #000000;
  color: #ffffff;
}
.dess-sv-platform:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Video embed */
.dess-sv-video-wrap {
  width: 100%;
}
.dess-sv-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.dess-sv-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About section */
.dess-sv-about-wrap {
  padding: 0 40px 60px;
}
.dess-sv-about {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 40px 48px;
  background-color: #f0f4e8 !important;
}
.dess-sv-about-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #0a1628;
  margin: 0 0 20px;
}
.dess-sv-about-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dess-sv-about-list li {
  font-size: 15px;
  color: #0a1628;
  line-height: 1.6;
}

/* Prev/Next Nav */
.dess-sv-nav-wrap {
  padding: 0 40px 60px;
}
.dess-sv-nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 2px solid #ebf3fb;
}
.dess-sp-nav-prev,
.dess-sp-nav-next {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #1b4f8a;
  max-width: 45%;
  padding: 16px 20px;
  border: 2px solid #ebf3fb;
  border-radius: 8px;
  transition: all 0.3s;
}
.dess-sp-nav-prev:hover,
.dess-sp-nav-next:hover {
  background: #ebf3fb;
  border-color: #1b4f8a;
}
.dess-sp-nav-prev i,
.dess-sp-nav-next i {
  font-size: 18px;
  flex-shrink: 0;
}
.dess-sp-nav-prev div,
.dess-sp-nav-next div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dess-sp-nav-prev small,
.dess-sp-nav-next small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  font-weight: 600;
}
.dess-sp-nav-prev span,
.dess-sp-nav-next span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
}
.dess-sp-nav-next {
  margin-left: auto;
  text-align: right;
}

/* Responsive */
@media (max-width: 900px) {
  .dess-sv-container {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }
  .dess-sv-title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .dess-sv-main {
    padding: 40px 20px;
  }
  .dess-sv-about-wrap {
    padding: 0 20px 40px;
  }
  .dess-sv-about {
    padding: 28px 24px;
  }
  .dess-sv-nav-wrap {
    padding: 0 20px 40px;
  }
  .dess-sv-nav {
    flex-direction: column;
  }
  .dess-sp-nav-prev,
  .dess-sp-nav-next {
    max-width: 100%;
  }
}
/* Hero */
.dess-sv-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  min-height: 400px;
  background-image: url(https://dess.digital/wp-content/uploads/2026/06/bg-06-free-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.dess-sv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 15, 35, 0.82);
  z-index: 1;
}
.dess-sv-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 40px 80px;
}

/* Hero h1 white */
.dess-sv-hero h1 {
  color: #ffffff !important;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin: 12px 0 20px;
  max-width: 800px;
}

/* Hero meta white */
.dess-sv-hero .dess-sp-meta span {
  color: #ffffffcc !important;
  font-size: 13px;
}
.dess-sv-hero .dess-sp-meta i {
  color: #ffffff99 !important;
}

@media (max-width: 768px) {
  .dess-sv-hero h1 {
    font-size: 28px;
  }
  .dess-sv-hero-inner {
    padding: 120px 20px 60px;
  }
}
/* Breadcrumb white */
.dess-sv-hero .dess-sp-breadcrumb,
.dess-sv-hero .dess-sp-breadcrumb a,
.dess-sv-hero .dess-sp-breadcrumb span {
  color: #ffffff99 !important;
}
.dess-sv-hero .dess-sp-breadcrumb a:hover {
  color: #ffffff !important;
}
.dess-sv-hero .dess-sp-breadcrumb i {
  color: #ffffff66 !important;
}

/* Category badge — white pill */
.dess-sv-hero .dess-sp-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1b4f8a !important;
  background: #ffffff !important;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  margin-bottom: 12px;
}
.dess-sv-hero .dess-sp-cat:hover {
  background: #ebf3fb !important;
}
.dess-sp-breadcrumb {
  margin-bottom: 16px;
}
/* ===========================
   TRANSCRIPT SECTION
   =========================== */
.dess-sv-transcript {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: flex-start;
}

.dess-sv-toc {
  background: #3d60ac;
  border-radius: 10px;
  padding: 24px 20px;
  position: sticky;
  top: 100px;
}
.dess-sv-toc h3 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.dess-sv-toc ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dess-sv-toc ul li a,
.dess-sv-toc ul li {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
}
.dess-sv-toc ul li a:hover {
  text-decoration: underline;
}

.dess-sv-transcript-body {
  background: #1e2140;
  border-radius: 10px;
  padding: 28px 32px;
  color: #ffffff;
  overflow-y: auto;
  max-height: 600px;
}
.dess-sv-transcript-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}
.dess-sv-transcript-body em {
  font-size: 13px;
  color: #aaaacc;
  display: block;
  margin-bottom: 24px;
  font-style: italic;
}
.dess-sv-transcript-body p {
  font-size: 15px;
  line-height: 1.8;
  color: #ccccdd;
  margin-bottom: 20px;
}
.dess-sv-transcript-body strong,
.dess-sv-transcript-body b {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .dess-sv-transcript {
    grid-template-columns: 1fr;
  }
  .dess-sv-toc {
    position: static;
  }
}
/* Transcript Wrap — Full Width */
.dess-sv-transcript-wrap {
  padding: 0 40px 40px;
}
.dess-sv-transcript-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Excerpt in info column */
.dess-sv-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: #444444;
  margin: 24px;
}
.dess-sv-excerpt p {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .dess-sv-transcript-wrap {
    padding: 0 20px 40px;
  }
}
