@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

/* ============================================
   DIRECTORY PAGE - matches flowinfaith.com
   ============================================ */

body.page-template-default { background: #ECECEC !important; }

/* Directory Hero */
.fif-dir-hero {
  background: #413356;
  padding: 200px 24px 80px;
  text-align: center;
}
.fif-dir-hero img { width: 96px; height: 96px; object-fit: contain; margin: 0 auto 24px; display: block; }
.fif-dir-hero .fif-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: #C7A254;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
}
.fif-dir-hero h1 {
  color: #fff !important;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin: 0 0 16px;
  line-height: 1.05;
}
.fif-dir-hero p {
  color: #F6EDC8;
  font-size: 20px;
  opacity: 0.9;
  margin: 0;
  font-family: "DM Sans", sans-serif;
}

/* Search form */
.pmpro_member_directory_search {
  max-width: 700px;
  margin: -30px auto 40px !important;
  position: relative;
  z-index: 10;
}
.pmpro_member_directory_search .pmpro_form_input {
  width: 100% !important;
  padding: 18px 24px 18px 48px !important;
  border-radius: 9999px !important;
  border: 2px solid #ECECEC !important;
  font-size: 18px !important;
  font-family: "DM Sans", sans-serif !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08) !important;
  outline: none !important;
}
.pmpro_member_directory_search .pmpro_form_input:focus { border-color: #C7A254 !important; }
.pmpro_member_directory_search .pmpro_form_submit input {
  background: #413356 !important; color: #fff !important; border: none !important;
  border-radius: 9999px !important; padding: 14px 36px !important; font-weight: 700 !important;
  font-family: "DM Sans", sans-serif !important; cursor: pointer !important;
}
.pmpro_member_directory_search .pmpro_form_submit input:hover { background: #C7A254 !important; }

/* 3-column card grid */
.pmpro_member_directory-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  padding: 20px 0 60px !important;
}
@media (max-width: 900px) { .pmpro_member_directory-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; } }
@media (max-width: 600px) { .pmpro_member_directory-grid { grid-template-columns: 1fr !important; } }

/* Teacher cards */
.pmpro_member_directory-item.pmpro_card {
  background: #fff !important; border-radius: 20px !important; overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  border: none !important; display: flex !important; flex-direction: column !important; padding: 0 !important;
}
.pmpro_member_directory-item.pmpro_card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12) !important;
}

/* Avatar - full width square photo */
.pmpro_member_directory-item .pmpro_member_profile_field-avatar {
  width: 100% !important; padding: 0 !important; margin: 0 !important;
  aspect-ratio: 1 / 1; overflow: hidden; position: relative;
}
.pmpro_member_directory-item img.avatar {
  width: 100% !important; height: 100% !important; object-fit: cover !important;
  border-radius: 0 !important; border: none !important; display: block !important;
  transition: transform 0.5s ease !important;
}
.pmpro_member_directory-item:hover img.avatar { transform: scale(1.05) !important; }

/* Card content */
.pmpro_member_directory-item .pmpro_card_content { padding: 20px 24px 8px !important; flex: 1 !important; display: flex !important; flex-direction: column !important; }

/* Name */
.pmpro_member_directory-item .pmpro_font-large,
.pmpro_member_directory-item .pmpro_font-large a {
  color: #413356 !important; text-decoration: none !important;
  font-family: "DM Sans", sans-serif !important; font-size: 20px !important;
  font-weight: 700 !important; line-height: 1.3 !important;
}

/* Level badge */
.pmpro_member_directory-item .pmpro_member_profile_field-membership_name .pmpro_member_profile_field_data {
  display: inline-block !important; background: #F6EDC8 !important; color: #553F0F !important;
  padding: 4px 14px !important; border-radius: 9999px !important; font-size: 11px !important;
  font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important;
}

/* Location */
.pmpro_member_directory-item .pmpro_member_profile_field-pmpro_location .pmpro_member_profile_field_data { color: #888 !important; font-size: 14px !important; }

/* Specialties */
.pmpro_member_directory-item .pmpro_member_profile_field-pmpro_specialties .pmpro_member_profile_field_data { font-size: 13px !important; color: #666 !important; line-height: 1.8 !important; }

/* Hide labels in cards */
.pmpro_member_directory-item .pmpro_member_profile_field_label { display: none !important; }

/* View Profile button */
.pmpro_member_directory-item .pmpro_card_actions { padding: 12px 24px 24px !important; margin-top: auto !important; }
.pmpro_member_directory-item .pmpro_card_actions .pmpro_btn {
  display: block !important; width: 100% !important; text-align: center !important;
  background: #413356 !important; color: #fff !important; border-radius: 9999px !important;
  padding: 14px 24px !important; font-size: 14px !important; font-weight: 700 !important;
  text-decoration: none !important; border: none !important; transition: background 0.2s !important;
  font-family: "DM Sans", sans-serif !important;
}
.pmpro_member_directory-item .pmpro_card_actions .pmpro_btn:hover { background: #C7A254 !important; }

/* ============================================
   PROFILE PAGE - matches flowinfaith.com
   ============================================ */

/* Profile hero - full purple section with 2-col layout */
.fif-profile-hero {
  background: #413356;
  padding: 220px 24px 80px;
  color: #fff;
  overflow: hidden;
}
.fif-profile-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Back link */
.fif-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #C7A254 !important; font-weight: 700; text-decoration: none !important;
  font-size: 13px; font-family: "DM Sans", sans-serif; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 48px; transition: color 0.2s;
}
.fif-back-link:hover { color: #fff !important; }

/* Profile content wrapper */
.fif-profile-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 60px;
}

/* Profile card - remove default styling */
.fif-profile-wrap .pmpro_card.pmpro_member_profile {
  background: transparent !important; box-shadow: none !important;
  border: none !important; padding: 0 !important;
}

/* Profile grid: avatar left, info right inside the purple hero */
.fif-profile-wrap .pmpro_member_profile > .pmpro_card_content {
  display: grid !important;
  grid-template-columns: 380px 1fr !important;
  gap: 60px !important;
  align-items: start !important;
  background: #413356 !important;
  padding: 0 0 60px !important;
  margin: -80px -24px 0 !important;
  padding: 0 48px 60px !important;
  border-radius: 0 0 24px 24px !important;
  color: #fff;
  position: relative;
}
@media (max-width: 900px) {
  .fif-profile-wrap .pmpro_member_profile > .pmpro_card_content {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center;
  }
}

/* Avatar in profile hero */
.fif-profile-wrap .pmpro_member_profile_field-avatar {
  margin: 0 !important;
}
.fif-profile-wrap .pmpro_member_profile_field-avatar img.avatar {
  width: 380px !important; height: 500px !important;
  border-radius: 24px !important; object-fit: cover !important;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5) !important;
  border: none !important;
}
@media (max-width: 900px) {
  .fif-profile-wrap .pmpro_member_profile_field-avatar img.avatar {
    width: 280px !important; height: 370px !important; margin: 0 auto !important; display: block !important;
  }
}

/* Name in purple hero */
.fif-profile-wrap .pmpro_member_profile_field-display_name {
  margin-bottom: 16px !important;
}
.fif-profile-wrap .pmpro_member_profile_field-display_name h2,
.fif-profile-wrap .pmpro_member_profile_field-display_name .pmpro_member_profile_field_data {
  color: #fff !important; font-family: "DM Sans", sans-serif !important;
  font-size: clamp(36px, 6vw, 72px) !important; font-weight: 700 !important;
  margin: 0 !important; line-height: 1.05 !important;
}

/* Location in hero */
.fif-profile-wrap .pmpro_member_profile_field-pmpro_location {
  margin-bottom: 24px !important;
}
.fif-profile-wrap .pmpro_member_profile_field-pmpro_location .pmpro_member_profile_field_data {
  color: #C7A254 !important; font-weight: 700 !important; text-transform: uppercase !important;
  letter-spacing: 3px !important; font-size: 14px !important;
}

/* Specialties as pills in hero */
.fif-profile-wrap .pmpro_member_profile_field-pmpro_specialties {
  margin-bottom: 32px !important; background: transparent !important; padding: 0 !important; border-radius: 0 !important;
}
.fif-profile-wrap .pmpro_member_profile_field-pmpro_specialties .pmpro_member_profile_field_data {
  display: flex !important; flex-wrap: wrap !important; gap: 8px !important;
}

/* Level badge in hero */
.fif-profile-wrap .pmpro_member_profile_field-membership_name {
  margin-bottom: 16px !important;
}
.fif-profile-wrap .pmpro_member_profile_field-membership_name .pmpro_member_profile_field_data {
  display: inline-block !important; background: rgba(255,255,255,0.1) !important;
  color: #C7A254 !important; padding: 6px 18px !important; border-radius: 9999px !important;
  font-size: 13px !important; font-weight: 700 !important; text-transform: uppercase !important;
  letter-spacing: 1px !important; border: 1px solid rgba(255,255,255,0.2) !important;
}

/* Website button in hero */
.fif-profile-wrap .pmpro_member_profile_field-pmpro_website {
  margin-top: 8px !important;
}
.fif-profile-wrap .pmpro_member_profile_field-pmpro_website a {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  padding: 14px 32px !important; border: 2px solid #fff !important; color: #fff !important;
  border-radius: 9999px !important; font-weight: 700 !important; font-size: 14px !important;
  text-decoration: none !important; transition: all 0.2s !important;
  background: transparent !important;
}
.fif-profile-wrap .pmpro_member_profile_field-pmpro_website a:hover {
  background: #fff !important; color: #413356 !important;
}

/* Content sections below hero */
.fif-profile-wrap .pmpro_member_profile_field-pmpro_certifications,
.fif-profile-wrap .pmpro_member_profile_field-description {
  background: #ECECEC !important; padding: 40px !important; border-radius: 24px !important;
  margin: 32px 0 0 !important;
}
.fif-profile-wrap .pmpro_member_profile_field-pmpro_certifications .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-description .pmpro_member_profile_field_label {
  display: block !important; font-size: 24px !important; font-weight: 700 !important;
  text-transform: none !important; letter-spacing: 0 !important; color: #413356 !important;
  margin-bottom: 16px !important; font-family: "DM Sans", sans-serif !important;
}
.fif-profile-wrap .pmpro_member_profile_field-description .pmpro_member_profile_field_data {
  color: #444 !important; font-size: 16px !important; line-height: 1.8 !important;
}

/* Hide labels where not needed */
.fif-profile-wrap .pmpro_member_profile_field-display_name .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-avatar .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-membership_name .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-pmpro_location .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-pmpro_website .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-pmpro_specialties .pmpro_member_profile_field_label,
.fif-profile-wrap .pmpro_member_profile_field-membership_startdate,
.fif-profile-wrap .pmpro_member_profile_field-user_email,
.fif-profile-wrap .pmpro_member_profile_before .pmpro_member_directory_search { display: none !important; }

/* Page hero (for other pages) */
.fif-page-hero {
  background: #413356; padding: 160px 24px 60px; text-align: center;
}
.fif-page-hero h1 {
  color: #fff !important; font-size: 48px; font-weight: 700;
  font-family: "DM Sans", sans-serif; margin: 0; line-height: 1.1;
}

/* ============================================
   PROFILE PAGE - flowinfaith.com exact match
   ============================================ */

/* Hero section */
.fif-p-hero {
  background: #413356;
  padding: clamp(140px, 20vw, 220px) 24px 80px;
  color: #fff;
  overflow: hidden;
}
.fif-p-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Back link */
.fif-p-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C7A254 !important;
  font-weight: 700;
  text-decoration: none !important;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.fif-p-back:hover { color: #fff !important; }

/* 2-column hero grid */
.fif-p-hero-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .fif-p-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
}

/* Photo */
.fif-p-photo-wrap {
  position: relative;
}
.fif-p-photo {
  width: 380px;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
@media (max-width: 900px) {
  .fif-p-photo {
    width: 280px;
    height: 370px;
    margin: 0 auto;
    display: block;
  }
}

/* Location tag */
.fif-p-location-tag {
  display: inline-block;
  color: #C7A254;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
}

/* Name */
.fif-p-name {
  font-size: clamp(40px, 7vw, 80px) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-family: "DM Sans", sans-serif !important;
  line-height: 1.05 !important;
  margin: 0 0 24px !important;
}

/* Specialty pills in hero */
.fif-p-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .fif-p-pills { justify-content: center; }
}
.fif-p-pill {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-family: "DM Sans", sans-serif;
}

/* Hero action buttons */
.fif-p-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .fif-p-hero-actions { justify-content: center; }
}
.fif-p-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid #fff;
  color: #fff !important;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
  min-width: 160px;
  justify-content: center;
}
.fif-p-btn-outline:hover {
  background: #fff;
  color: #413356 !important;
}

/* Social links */
.fif-p-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 900px) {
  .fif-p-socials { justify-content: center; }
}
.fif-p-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 13px;
  font-weight: 700;
  color: #444 !important;
  text-decoration: none !important;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.fif-p-social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Content body below hero */
.fif-p-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Content cards */
.fif-p-card {
  background: #ECECEC;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 24px;
}
.fif-p-card h3 {
  color: #413356 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  margin: 0 0 16px !important;
}
.fif-p-card p,
.fif-p-bio p {
  color: #444 !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  font-family: "DM Sans", sans-serif !important;
  margin: 0 0 12px !important;
}
.fif-p-bio p:last-child { margin-bottom: 0 !important; }

/* Certification/specialty tags */
.fif-p-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fif-p-tags span {
  display: inline-block;
  background: #fff;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: #413356;
  font-family: "DM Sans", sans-serif;
}

/* Hide PMPro default wrapper if shortcode accidentally nests */
.fif-p-hero + .pmpro,
.fif-p-hero ~ .pmpro { display: none; }

/* ============================================
   VIDEO LIBRARY - Flow in Faith
   ============================================ */

/* Featured Hero */
.fif-vl-hero {
  background: #413356;
  padding: clamp(100px, 15vw, 180px) 24px 60px;
  color: #fff;
}
.fif-vl-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .fif-vl-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.fif-vl-hero-text .badge {
  display: inline-block;
  background: rgba(199, 162, 84, 0.2);
  color: #C7A254;
  padding: 6px 18px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(199, 162, 84, 0.3);
}
.fif-vl-hero-text h1 {
  font-size: clamp(32px, 5vw, 48px) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-family: "DM Sans", sans-serif !important;
  line-height: 1.15 !important;
  margin: 0 0 16px !important;
}
.fif-vl-hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.fif-vl-hero-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.fif-vl-hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fif-vl-hero-thumb .play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}
.fif-vl-hero-thumb:hover .play-overlay {
  background: rgba(0,0,0,0.4);
}
.fif-vl-hero-thumb .play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #413356;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  padding-left: 4px;
}
.fif-vl-hero-thumb:hover .play-btn {
  transform: scale(1.1);
}

/* Filters section */
.fif-vl-filters {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 0;
}
.fif-vl-cat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.fif-vl-cat-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  border: 2px solid #413356;
  background: transparent;
  color: #413356;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.fif-vl-cat-btn:hover {
  background: rgba(65, 51, 86, 0.08);
}
.fif-vl-cat-btn.active {
  background: #413356;
  color: #fff;
}
.fif-vl-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.fif-vl-selects select {
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid #ddd;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  min-width: 160px;
  appearance: auto;
}
.fif-vl-selects select:focus {
  border-color: #C7A254;
  outline: none;
}
.fif-vl-clear {
  padding: 10px 20px;
  border-radius: 9999px;
  border: none;
  background: #ECECEC;
  color: #666;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
}
.fif-vl-clear:hover {
  background: #ddd;
}

/* Video Grid */
.fif-vl-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .fif-vl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fif-vl-grid { grid-template-columns: 1fr; }
}

/* Video Cards */
.fif-vl-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fif-vl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.fif-vl-card a {
  text-decoration: none !important;
  color: inherit !important;
}
.fif-vl-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ECECEC;
}
.fif-vl-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.fif-vl-card:hover .fif-vl-card-thumb img {
  transform: scale(1.05);
}
.fif-vl-card-thumb .cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(65, 51, 86, 0.9);
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.fif-vl-card-thumb .dur-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.fif-vl-card-thumb .lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.fif-vl-card-thumb .lock-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
}

/* Card Body */
.fif-vl-card-body {
  padding: 20px;
}
.fif-vl-card-body h3 {
  color: #413356 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  line-height: 1.3 !important;
}
.fif-vl-card-body .instructor {
  color: #C7A254 !important;
  font-size: 14px !important;
  margin: 0 0 8px !important;
  font-weight: 600;
}
.fif-vl-card-body .desc {
  color: #888 !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  margin: 0 0 12px !important;
}

/* Card Footer */
.fif-vl-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.fif-vl-card-footer span {
  font-size: 12px;
  color: #999;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fif-vl-card-footer .watch {
  color: #C7A254;
  font-weight: 700;
}
