/* Founder Discussion Videos — [founder_videos] shortcode */

.dev-founder-videos {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 50px;
}

.dev-founder-videos__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 550;
  color: #424242;
  margin: 0 0 32px;
  line-height: 1.2;
}

.dev-founder-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.dev-founder-videos__card {
  display: flex;
  flex-direction: column;
}

/* Thumbnail wrapper — 16:9 aspect ratio */
.dev-founder-videos__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #0a0a1a;
  cursor: pointer;
}

.dev-founder-videos__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.dev-founder-videos__thumb:hover img {
  opacity: 0.85;
}

/* Play button overlay */
.dev-founder-videos__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s;
}

.dev-founder-videos__thumb:hover .dev-founder-videos__play {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Placeholder when no video is set */
.dev-founder-videos__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #666;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  background: #f0f0f0;
}

/* Title */
.dev-founder-videos__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #00337a;
  margin: 16px 0 8px;
  line-height: 1.3;
}

/* Description */
.dev-founder-videos__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Responsive: tablet */
@media (max-width: 991px) {
  .dev-founder-videos__heading {
    font-size: 32px;
  }
  .dev-founder-videos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Responsive: mobile */
@media (max-width: 600px) {
  .dev-founder-videos {
    padding: 30px 16px 40px;
  }
  .dev-founder-videos__heading {
    font-size: 26px;
  }
  .dev-founder-videos__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ── Discussion with Founder — placeholder section ── */

.dev-founder-discussion {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 50px;
}

.dev-founder-discussion__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 550;
  color: #424242;
  margin: 0 0 16px;
  line-height: 1.2;
}

.dev-founder-discussion__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 24px;
}

.dev-founder-discussion__placeholder {
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
}

.dev-founder-discussion__placeholder p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #999;
  margin: 0;
}

@media (max-width: 991px) {
  .dev-founder-discussion__heading { font-size: 32px; }
}

@media (max-width: 600px) {
  .dev-founder-discussion { padding: 30px 16px 40px; }
  .dev-founder-discussion__heading { font-size: 26px; }
}

/* RTL support */
[dir="rtl"] .dev-founder-discussion__heading,
[dir="rtl"] .dev-founder-discussion__desc {
  text-align: right;
}

[dir="rtl"] .dev-founder-videos__heading {
  text-align: right;
}

[dir="rtl"] .dev-founder-videos__title,
[dir="rtl"] .dev-founder-videos__desc {
  text-align: right;
}
