/* =========================================================
   Bonanza Creative Training Hive - Unified Styles
   ========================================================= */

/* -------------------- */
/* 🔷 GLOBAL RESETS     */
/* -------------------- */

/* Hide theme headers on training pages only */
body.single-bcth_course header#top,
body.single-bcth_module header#top,
body.single-bcth_submodule header#top,
body.bcth-no-header header#top,
body.bcth-courses-overview header#top,
body.single-bcth_course #header-outer,
body.single-bcth_module #header-outer,
body.single-bcth_submodule #header-outer,
body.bcth-no-header #header-outer,
body.bcth-courses-overview #header-outer,
body.single-bcth_course #header-space,
body.single-bcth_module #header-space,
body.single-bcth_submodule #header-space,
body.bcth-no-header #header-space,
body.bcth-courses-overview #header-space {
  display: none !important;
}

/* Hide theme footers on training pages only */
body.single-bcth_course #footer-outer,
body.single-bcth_module #footer-outer,
body.single-bcth_submodule #footer-outer,
body.bcth-no-header #footer-outer,
body.bcth-courses-overview #footer-outer,
body.single-bcth_course .site-footer,
body.single-bcth_module .site-footer,
body.single-bcth_submodule .site-footer,
body.bcth-no-header .site-footer,
body.bcth-courses-overview .site-footer {
  display: none !important;
}

/* Accessibility helper */
.sr-only { 
  position: absolute !important; 
  width: 1px; 
  height: 1px; 
  padding: 0; 
  margin: -1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
  white-space: nowrap; 
  border: 0; 
}

/* Remove theme spacing on training pages */
.bcth-course-wrapper,
.bcth-course-hero { 
  margin-top: 0 !important; 
  padding-top: 0 !important; 
}

/* -------------------- */
/* 🔷 LAYOUT CONTAINERS */
/* -------------------- */

.bcth-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

/* Full-width breakout sections */
.bcth-section-breakout { 
  width: 100vw; 
  margin-left: calc(50% - 50vw); 
}

.bcth-section-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

/* Accordion sections should be narrower */
.bcth-section-breakout .bcth-section-inner {
  max-width: 1200px;
}

/* -------------------- */
/* 🔷 HERO SECTIONS     */
/* -------------------- */

.bcth-course-hero {
  background: #f0f2f6;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.bcth-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 80px) clamp(16px, 3vw, 40px);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
}

.bcth-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #501e78;
    line-height: 1.2;
}

.bcth-hero-desc { 
  font-size: clamp(1rem, 1.1vw + .8rem, 1.125rem); 
  line-height: 1.6; 
  color: #374151;
}

.bcth-hero-art img { 
  max-width: min(300px, 100%); 
  height: auto; 
  display: block; 
  margin-left: auto;
  border-radius: 15px;
}

/* Responsive: stack hero */
@media (max-width: 900px) {
  .bcth-hero-inner { 
    grid-template-columns: 1fr; 
  }
  .bcth-hero-art img { 
    margin: 0; 
  }
}

/* -------------------- */
/* 🔷 COURSE OVERVIEW   */
/* -------------------- */

.bcth-course-overview-header {
  background-color: #f0f2f6;
  padding: 80px 20px 40px;
  text-align: left;
}

.bcth-course-overview-header h1 {
  color: #501e78;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.bcth-course-overview-header p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #374151;
}

.bcth-overview-heading {
  padding: 60px 0 20px;
}

/* When overview heading is combined with container, ensure same padding as other containers */
.bcth-container.bcth-overview-heading {
  padding: 60px clamp(16px, 3vw, 40px) 20px clamp(16px, 3vw, 40px) !important;
}

.bcth-overview-heading h2 {
  color: #501e78;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: left;
}

.bcth-course-grid {
  padding: 60px 0 100px 0;
}

/* Course cards grid */
.bcth-grid-masonry {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: flex-start;
}

.bcth-course-card {
  flex: 0 1 calc(33.333% - 2rem);
  box-sizing: border-box;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 2rem;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bcth-course-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.bcth-course-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #501e78;
  margin-bottom: 0.5rem;
}

.bcth-course-card p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Responsive grid */
@media (max-width: 992px) {
  .bcth-course-card {
    flex: 0 1 calc(50% - 2rem);
  }
}

@media (max-width: 600px) {
  .bcth-course-card {
    flex: 0 1 100%;
  }
}

/* -------------------- */
/* 🔷 ACCORDIONS        */
/* -------------------- */

.bcth-accordions { 
  padding: 0; 
}

.bcth-acc-heading { 
  color: #501e78; 
  margin: clamp(16px, 2vw, 24px) 0; 
}

/* Accordion item structure */
.bcth-acc {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* Divider between items */
.bcth-acc + .bcth-acc {
  border-top: 2px solid #e5e5e5;
  margin-top: 12px;
  padding-top: 14px;
}

/* Accordion trigger button */
.bcth-acc-trigger {
  display: flex; 
  align-items: center; 
  gap: 8px;
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #595959;
  background: transparent;
  border: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: clamp(14px, 2.8vw, 20px) clamp(16px, 3vw, 24px);
}

.bcth-acc-number,
.bcth-acc-trigger-text {
  font: inherit; 
  color: inherit;
}

.bcth-acc-number { 
  margin-right: 6px; 
}

/* Hover and open states */
.bcth-acc-trigger:hover,
.bcth-acc.open .bcth-acc-trigger {
  color: #e61e78;
}

/* Plus/Minus icon */
.bcth-acc-trigger-icon {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; 
  height: 32px;
  border-radius: 50%;
  border: 2px solid #595959;
  color: #595959;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  background: transparent;
}

.bcth-acc-trigger:hover .bcth-acc-trigger-icon,
.bcth-acc.open .bcth-acc-trigger .bcth-acc-trigger-icon {
  border-color: #e61e78; 
  color: #e61e78;
}

/* Accordion panel */
.bcth-acc-panel {
  display: none !important;
  padding: 0 clamp(16px, 3vw, 24px) clamp(16px, 3vw, 24px);
  border-top: none;
  background: #fff;
}

.bcth-acc.open .bcth-acc-panel {
  display: block !important;
}

/* Panel content */
.bcth-acc-intro {
  margin: clamp(8px, 1vw, 12px) 0 clamp(16px, 2vw, 20px);
  color: #374151;
}

/* Panel controls */
.bcth-acc-controls { 
  display: flex; 
  justify-content: flex-end; 
  margin-top: clamp(12px, 2vw, 16px); 
}

.bcth-acc-controls .bcth-btn-link-purple {
  color: #595959;
}

.bcth-acc-controls .bcth-btn-link-purple:hover,
.bcth-acc-controls .bcth-btn-link-purple:focus {
  color: #e61e78;
}

.bcth-acc-controls .bcth-acc-close,
.bcth-acc-controls .bcth-btn-link-purple {
  cursor: pointer;
}

.bcth-acc-controls .bcth-acc-close:focus-visible {
  outline: 2px solid #e61e78;
  outline-offset: 2px;
}

/* Mobile accordion adjustments */
@media (max-width: 700px) {
  .bcth-acc-trigger { 
    padding: 14px 16px; 
  }
  .bcth-acc-panel { 
    padding: 0 16px 16px; 
  }
}

/* -------------------- */
/* 🔷 CONTENT SECTIONS  */
/* -------------------- */

/* Sub-modules list */
.bcth-submodules {
  list-style: none; 
  margin: 0; 
  padding: 0;
  display: grid; 
  gap: clamp(12px, 2vw, 16px);
}

.bcth-submodule { 
  background: transparent; 
  border: 0; 
  padding: 0; 
}

.bcth-sub-title {
  color: #501e78;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.bcth-sub-desc { 
  margin: 0 0 10px 0; 
  color: #4b5563; 
}

/* Video sections */
.bcth-video-links { 
  margin: 8px 0 10px; 
}

.embedded-video { 
  margin: 8px 0 16px; 
  aspect-ratio: 16/9; 
  max-width: 720px;
  width: 100%;
  position: relative;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
}

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

/* Fallback for videos that don't load */
.embedded-video:empty::before {
  content: "Loading video...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #6b7280;
  font-style: italic;
}

/* Downloads */
.bcth-downloads {
  list-style: none; 
  margin: 8px 0 0 0; 
  padding: 0;
  display: grid; 
  gap: 12px;
}

.bcth-download-title { 
  font-weight: 600; 
  color: #111827; 
  margin-bottom: 6px; 
}

/* Remove list styling safety */
.bcth-submodules, 
.bcth-submodules li, 
.bcth-downloads, 
.bcth-downloads li {
  list-style: none !important; 
  padding-left: 0 !important; 
  margin-left: 0 !important;
}

/* -------------------- */
/* 🔷 BUTTONS           */
/* -------------------- */

.bcth-btn {
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  font-size: 14px; 
  font-weight: 600; 
  letter-spacing: .2px;
  padding: 18px 30px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease, background-color .2s ease, border-color .2s ease;
  cursor: pointer;
}

.bcth-btn i { 
  font-size: .95em; 
  margin-left: 8px; 
}

/* Small buttons */
.bcth-btn-sm { 
  padding: 8px 12px; 
  border-radius: 10px; 
  font-size: 14px;
}

/* Full width buttons */
.bcth-btn-full {
  width: 100%;
  justify-content: center;
}

/* Primary button (pink) */
.bcth-btn-primary {
  background: #e61e78; 
  border-color: #e61e78; 
  color: #fff !important;
  box-shadow: 0 6px 12px rgba(230,30,120,.20);
}

.bcth-btn-primary:hover,
.bcth-btn-primary:focus {
  transform: translateY(-2px);
  background-color: #c91a69;
  border-color: #c91a69;
  box-shadow: 0 10px 20px rgba(230,30,120,.28);
}

.bcth-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(230,30,120,.20);
}

.bcth-btn-primary i { 
  color: inherit !important; 
}

/* Secondary button */
.bcth-btn-secondary {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #495057 !important;
}

.bcth-btn-secondary:hover,
.bcth-btn-secondary:focus {
  background: #e9ecef;
  border-color: #adb5bd;
}

/* Link-style button */
.bcth-btn-link-purple {
  background: transparent; 
  border: 0; 
  color: #501e78; 
  padding: 0;
}

.bcth-btn-link-purple:hover,
.bcth-btn-link-purple:focus {
  color: #e61e78; 
  text-decoration: none !important;
}

/* Icon circles */
.bcth-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; 
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  margin-left: 8px;
}

/* Nectar button compatibility */
.nectar-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #e61e78;
  color: #fff !important;
  padding: 0.6rem 1.25rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform .06s ease, box-shadow .2s ease, background-color .2s ease;
  box-shadow: 0 6px 12px rgba(230,30,120,.20);
}

.nectar-button:hover,
.nectar-button:focus {
  transform: translateY(-2px);
  background-color: #c91a69;
  box-shadow: 0 10px 20px rgba(230,30,120,.28);
  color: #fff !important;
}

.nectar-button:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(230,30,120,.20);
}

.nectar-button i {
  color: inherit !important;
}

/* -------------------- */
/* 🔷 LOGIN PAGE        */
/* -------------------- */

.bcth-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f2f6;
  padding: 40px 16px;
}

.bcth-auth-card {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: clamp(20px, 4vw, 32px);
}

.bcth-auth-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.bcth-auth-logo {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.bcth-login-title {
  margin: 0 0 20px;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  color: #1a1a1a;
}

.bcth-login-notice {
  text-align: center;
  padding: 20px;
  background: #f0f6fc;
  border-radius: 12px;
  margin-bottom: 20px;
}

.bcth-login-error {
  background: #fff5f5;
  border: 1px solid #ffd5d5;
  color: #7f1d1d;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.bcth-login-success {
  background: #f1f8ff;
  border: 1px solid #cfe8ff;
  color: #0c4a6e;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.bcth-login-links {
  margin-top: 16px;
  text-align: center;
}

.bcth-auth-link {
  color: #e61e78;
  text-decoration: none;
  font-weight: 600;
}

.bcth-auth-link:hover,
.bcth-auth-link:focus {
  text-decoration: underline;
}

/* Login form */
.bcth-login-form-container {
  max-width: 400px;
  margin: 0 auto;
}

.bcth-login-form {
  margin: 0;
}

.bcth-form-field {
  margin-bottom: 16px;
}

.bcth-form-field label {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.bcth-input {
  width: 100%;
  border: 1px solid #e4e7ee;
  border-radius: 12px;
  padding: 12px 14px;
  background: #f7f9fc;
  font-size: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bcth-input:focus {
  outline: none;
  border-color: #e61e78;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(230, 30, 120, 0.14);
}

.bcth-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 4px;
}

.bcth-form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #e61e78;
}

/* WordPress login form compatibility */
#bcth-loginform {
  margin: 0;
}

#bcth-loginform p {
  margin-bottom: 16px;
}

#bcth-loginform label {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

#bcth-loginform input[type="text"],
#bcth-loginform input[type="password"] {
  width: 100%;
  border: 1px solid #e4e7ee;
  border-radius: 12px;
  padding: 12px 14px;
  background: #f7f9fc;
  font-size: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

#bcth-loginform input[type="text"]:focus,
#bcth-loginform input[type="password"]:focus {
  outline: none;
  border-color: #e61e78;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(230, 30, 120, 0.14);
}

#bcth-loginform .forgetmenot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 4px;
}

#bcth-rememberme {
  width: 16px;
  height: 16px;
  accent-color: #e61e78;
}

#bcth-wp-submit {
  display: inline-block;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  background: #e61e78;
  color: #fff;
  box-shadow: 0 6px 18px rgba(230, 30, 120, 0.25);
  transition: transform 0.06s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

#bcth-wp-submit:hover,
#bcth-wp-submit:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(230, 30, 120, 0.35);
}

#bcth-wp-submit:active {
  transform: translateY(0);
}

#bcth-loginform .submit {
  margin-top: 8px;
}

/* Responsive login */
@media (max-width: 480px) {
  .bcth-auth-card {
    padding: 20px;
    border-radius: 12px;
  }
  #bcth-wp-submit {
    font-size: 16px;
  }
}

/* -------------------- */
/* 🔷 HEADER & FOOTER   */
/* -------------------- */

.bcth-header {
  background: #fff;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.bcth-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bcth-logo img {
  max-height: 50px;
  width: auto;
}

.bcth-header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 10px 0;
  text-align: right;
}

.bcth-header-link {
  font-size: 16px;
  font-weight: 600;
  color: #501e78;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bcth-header-link:hover {
  color: #e61e78;
}

/* Welcome text styling - grey with no hover */
.bcth-header-nav span.bcth-header-link {
  color: #6b7280;
  cursor: default;
}

.bcth-header-nav span.bcth-header-link:hover {
  color: #6b7280;
}

.bcth-footer {
  background-color: #501e78;
  color: #fff;
  padding: 16px 16px !important;
  display: block !important;
}

.bcth-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.bcth-footer p {
  font-size: 1.2rem;
  margin: 0 !important;
  line-height: 1.3;
}

/* -------------------- */
/* 🔷 SPACING & LAYOUT  */
/* -------------------- */

/* Content spacing */
body.single-bcth_module .entry-content {
  margin-bottom: 100px;
}

body.single-bcth_module .bth-section-breakout:last-of-type,
body.single-bcth_module .bth-module-content:last-of-type {
  margin-bottom: 0 !important;
}

/* Theme compatibility */
body .container-wrap .bcth-auth-page {
  margin-top: -1px;
}

html body[data-header-resize] .container-wrap {
  padding-top: 0 !important;
}

body.single-bcth_module #ajax-content-wrap,
body.single-bcth_module .container-wrap {
  padding-bottom: 0 !important;
}

/* -------------------- */
/* 🔷 RESPONSIVE        */
/* -------------------- */

@media (max-width: 768px) {
  .bcth-hero-inner {
    padding: clamp(20px, 4vw, 40px) clamp(16px, 3vw, 20px);
  }
  
  .bcth-course-overview-header {
    padding: 40px 20px 20px;
  }
  
  .bcth-overview-heading {
    padding: 40px 0 20px;
  }
  
  .bcth-course-grid {
    padding: 40px 0 60px 0;
  }
  
  .bcth-acc-trigger {
    font-size: 24px;
  }
  
  .bcth-btn {
    padding: 14px 20px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .bcth-hero-title {
    font-size: 1.5rem;
  }
  
  .bcth-course-overview-header h1 {
    font-size: 1.75rem;
  }
  
  .bcth-overview-heading h2 {
    font-size: 1.5rem;
  }
  
  .bcth-acc-trigger {
    font-size: 20px;
  }
  
  .bcth-course-card {
    padding: 1rem;
  }
  
  .bcth-course-card h3 {
    font-size: 1.25rem;
  }
  
  .bcth-course-card p {
    font-size: 1rem;
  }
}
/* ========================================
   FIX: Video Play Button Overflow Issue
   Added: 2025-10-24
   Issue: Play buttons escaping containers
   ======================================== */

/* Ensure video box container properly contains the play button */
.nectar-video-box {
    position: relative !important;
    overflow: hidden !important;
}

.nectar-video-box .inner-wrap {
    position: relative !important;
}

/* Constrain the play button to the video box */
.nectar-video-box .play_button_2 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    height: 80px !important;
    z-index: 10 !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

/* Ensure the full-link doesn't interfere */
.nectar-video-box .full-link {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

/* Make sure the image stays in place */
.nectar-video-box img {
    position: relative !important;
    z-index: 0 !important;
    display: block !important;
}

/* Additional safety: prevent any child from escaping */
.nectar-video-box * {
    max-width: 100% !important;
}

/* Specifically target in accordion panels */
.bcth-acc-panel .nectar-video-box .play_button_2 {
    position: absolute !important;
    width: 60px !important;
    height: 60px !important;
}

/* Ensure play button SVG stays within bounds */
.play_button_2 svg {
    width: 100% !important;
    height: 100% !important;
}
/* ========================================
   SPACING: Video Box and Button Layout
   Added: 2025-10-27
   Issue: No spacing between video and button
   ======================================== */

/* Add spacing between video box and the button below it */
.bcth-acc-panel .nectar-video-box {
    margin-bottom: 1rem !important;
}

/* Add spacing to the paragraph containing the Open Link button */
.bcth-acc-panel .nectar-video-box + p {
    margin-top: 1.5rem !important;
    margin-bottom: 2rem !important;
}

/* Add spacing for the download title above each video */
.bcth-video-links .bcth-download-title {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
}

/* First video title shouldn't have top margin */
.bcth-video-links .bcth-download-title:first-of-type {
    margin-top: 0 !important;
}

/* Better spacing for the Open Link buttons */
.bcth-video-links .nectar-button {
    margin-top: 0.5rem !important;
}

/* Overall video links section spacing */
.bcth-video-links {
    margin-top: 1rem !important;
}

