/* Keep the gold PRO invitation readable in both site themes. */
#index-page .pro-discovery,
#search-results .pro-discovery {
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  box-sizing:border-box;
  max-width:100%;
  padding:8px;
  border:1px solid #f5b62e;
  border-radius:14px;
  background:linear-gradient(115deg,#fff2b5 0%,#ffd263 60%,#ffbb47 100%);
  box-shadow:0 3px 14px rgba(213,139,14,.25);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.25;
  text-align:left;
}
#index-page .home-video-filters {
  flex-wrap:wrap;
}
#index-page .pro-discovery {
  margin-left:auto;
}
#index-page .pro-discovery:not(.is-active),
#search-results .pro-discovery:not(.is-active) {
  animation:pro-discovery-glow 2.4s ease-in-out .6s 2;
}
#index-page .pro-discovery-filter,
#search-results .pro-discovery-filter {
  display:flex;
  flex:1 1 auto;
  align-items:center;
  gap:10px;
  min-width:0;
  min-height:44px;
  border-radius:8px;
  color:#302006 !important;
  text-decoration:none !important;
}
#index-page .pro-discovery-badge,
#search-results .pro-discovery-badge {
  display:inline-flex;
  flex-shrink:0;
  align-items:center;
  justify-content:center;
  width:44px;
  height:40px;
  border-radius:9px;
  background:#302006;
  color:#ffe197 !important;
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
}
#index-page .pro-discovery-copy,
#search-results .pro-discovery-copy {
  min-width:0;
}
#index-page .pro-discovery-title,
#search-results .pro-discovery-title {
  display:block;
  color:#302006 !important;
  font-size:15px;
  font-weight:800;
}
#index-page .pro-discovery-hint,
#search-results .pro-discovery-hint {
  display:block;
  margin-top:3px;
  color:#61420e !important;
  font-size:11px;
}
#index-page .pro-discovery-track,
#search-results .pro-discovery-track {
  display:inline-block;
  position:relative;
  flex:0 0 34px;
  height:20px;
  margin-left:auto;
  border:1px solid #8e6d2b;
  border-radius:999px;
  background:#8e6d2b;
}
#index-page .pro-discovery-track > span,
#search-results .pro-discovery-track > span {
  position:absolute;
  top:3px;
  left:3px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1px 3px rgba(48,32,6,.3);
}
#index-page .pro-discovery.is-active .pro-discovery-track,
#search-results .pro-discovery.is-active .pro-discovery-track {
  border-color:#166534;
  background:#166534;
}
#index-page .pro-discovery.is-active .pro-discovery-track > span,
#search-results .pro-discovery.is-active .pro-discovery-track > span {
  transform:translateX(14px);
}
#index-page .pro-discovery-upgrade,
#search-results .pro-discovery-upgrade {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  box-sizing:border-box;
  min-height:44px;
  padding:10px 14px;
  border-radius:8px;
  background:#302006;
  color:#fff5d6 !important;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  text-decoration:none !important;
  transition:background-color .15s ease;
}
#index-page .pro-discovery-upgrade > span,
#search-results .pro-discovery-upgrade > span {
  color:inherit !important;
}
#index-page .pro-discovery-filter:hover .pro-discovery-title,
#search-results .pro-discovery-filter:hover .pro-discovery-title {
  text-decoration:underline;
}
#index-page .pro-discovery-upgrade:hover,
#search-results .pro-discovery-upgrade:hover {
  background:#594018;
}
#index-page .pro-discovery a:focus-visible,
#search-results .pro-discovery a:focus-visible {
  outline:3px solid #4c1d95 !important;
  outline-offset:2px;
}
@keyframes pro-discovery-glow {
  0%,100% { box-shadow:0 3px 14px rgba(213,139,14,.25); }
  50% { box-shadow:0 0 0 4px rgba(245,182,46,.28),0 4px 22px rgba(213,139,14,.4); }
}
@media (max-width:520px) {
  #index-page .pro-discovery-upgrade,
  #search-results .pro-discovery-upgrade {
    flex:1 0 100%;
  }
}
@media (prefers-reduced-motion:reduce) {
  #index-page .pro-discovery:not(.is-active),
  #search-results .pro-discovery:not(.is-active) {
    animation:none;
  }
  #index-page .pro-discovery-upgrade,
  #search-results .pro-discovery-upgrade {
    transition:none;
  }
}
