.most-wanted-jobs-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.most-wanted-jobs-carousel .owl-dot {
  display: inline-block;
  margin: 0 5px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: none;
}
.most-wanted-jobs-carousel .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.most-wanted-jobs-carousel .owl-dot.active span {
  background: #00CF68;
  width: 10px;
  height: 10px;
}
.most-wanted-jobs-carousel .owl-dot:hover span {
  background: rgba(255, 255, 255, 0.7);
}
.most-wanted-jobs-carousel.owl-carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}
.most-wanted-jobs-carousel.owl-carousel .owl-item {
  display: flex !important;
  height: auto !important;
}
.most-wanted-jobs-carousel .slide-item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.most-wanted-jobs-carousel .slide-item-content {
  flex: 1;
}
.most-wanted-jobs-carousel .slide-item .item-action {
  margin-top: auto;
}
.most-wanted-jobs-carousel .item-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.most-wanted-jobs-carousel .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.most-wanted-jobs-carousel .item-image img.fallback-logo {
  object-fit: contain !important;
  padding: 20px;
  background: #f5f5f5;
}
.most-wanted-jobs-skeleton {
  display: flex;
  gap: 20px;
  padding: 20px 0;
}
.most-wanted-jobs-skeleton .skeleton-card {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.most-wanted-jobs-skeleton .skeleton-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mwj-shimmer 1.5s infinite;
}
.most-wanted-jobs-skeleton .skeleton-text {
  padding: 15px;
}
.most-wanted-jobs-skeleton .skeleton-line {
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mwj-shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 10px;
}
.most-wanted-jobs-skeleton .skeleton-line:nth-child(1) {
  width: 80%;
}
.most-wanted-jobs-skeleton .skeleton-line:nth-child(2) {
  width: 50%;
}
.most-wanted-jobs-skeleton .skeleton-line:nth-child(3) {
  width: 60%;
}
@keyframes mwj-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (max-width: 767px) {
  .most-wanted-jobs-skeleton .skeleton-card:nth-child(n+2) {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .most-wanted-jobs-skeleton .skeleton-card:nth-child(n+3) {
    display: none;
  }
}
