/* RPL Video Section Styles */

.rpl-video-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.rpl-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.rpl-section-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5276 0%, #2980b9 100%);
  color: white;
  font-size: 20px;
  border-radius: 10px;
  margin-right: 15px;
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.rpl-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0;
  position: relative;
  color: var(--rpl-blue-dark);
  z-index: 1;
}

.rpl-section-divider {
  height: 4px;
  width: 100px;
  background: linear-gradient(to right, #3498db, transparent);
  margin-bottom: 30px;
  border-radius: 2px;
}

.empty-state {
  text-align: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.empty-icon {
  font-size: 50px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  display: block;
}

/* Responsive styles */
@media (max-width: 767px) {
  .rpl-section-title {
    font-size: 24px;
  }

  .rpl-section-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .rpl-section-title {
    font-size: 20px;
  }
}
