#video-home .background-header {
  width: 100%;
  height: 100px;
  background-color: #405d9e;
  background-image: url('../images/videos-background-mobile.webp');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
}
#video-home .search {
  max-width: 400px;
  margin: 0 auto;
}
#video-home .filter-videos .form-select {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid #4e86b8;
  background-color: transparent;
  color: #4e86b8;
  font-weight: 500;
}
#video-home .skeleton-card {
  border-radius: 1rem;
  background: #f8fafc;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
#video-home .skeleton-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #e9ecef;
}
@supports not (aspect-ratio: 16 / 9) {
  #video-home .skeleton-thumb {
    height: 0;
    padding-top: 56.25%;
  }
}
#video-home .skeleton-card .placeholder {
  border-radius: 999px;
  background-color: #e9ecef;
}
#video-home .skeleton-title {
  width: 70%;
  height: 1.1rem;
}
#video-home .skeleton-line {
  width: 100%;
  height: 0.7rem;
}
#video-home .skeleton-line.short {
  width: 60%;
}
#video-home .skeleton-author {
  width: 40%;
  height: 0.7rem;
}
#video-home .listing-videos h3,
#video-internal .related-videos h3 {
  color: #2c5178;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.3;
}
#video-home .listing-videos p,
#video-internal .related-videos p {
  margin-bottom: 0;
  font-size: 1rem;
}
#video-home .listing-videos .author,
#video-internal .related-videos .author {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 1rem;
  background-color: #d5e5f3;
  color: #2c5178;
  font-weight: 700;
}
#video-internal .title {
  padding: 15px 0;
  margin-bottom: 0;
}
#video-internal .content .bg-blue-100 .title {
  font-size: 2rem;
}
#video-internal .related-videos .title {
  margin-bottom: 0;
}
#video-internal .professional img {
  width: 122px;
  height: 122px;
}
#video-internal .professional .name {
  font-size: 1.12rem;
}
#video-internal .other-videos-professional .title,
#video-internal .more-videos .title,
#video-internal .find-a-specialist .title,
#video-internal .related-content .title {
  padding-left: 10px;
}

@media (min-width: 992px) {
  #video-home .background-header {
    height: 260px;
    background: url('../images/videos-background.webp') top/cover no-repeat;
  }
}