@charset "UTF-8";

/* Ornek videolar - acik tema */

.ov-hero {
  background: linear-gradient(145deg, #f0f6ff 0%, #e6f0ff 58%, #e0ecff 100%);
  color: #12335d;
  padding: var(--pub-space-10) var(--pub-container-padding) var(--pub-space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ov-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 80%, rgba(47, 120, 255, 0.2), transparent 62%);
}

.ov-hero__inner {
  position: relative;
  z-index: 1;
}

.ov-hero__eyebrow {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2360b3;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(35, 96, 179, 0.2);
}

.ov-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 var(--pub-space-3);
  color: #0f2a4f;
}

.ov-hero__lead {
  font-size: var(--pub-font-size-lg);
  color: #4a6389;
  margin: 0 auto;
  max-width: 42rem;
  line-height: var(--pub-line-relaxed);
}

.ov-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pub-space-2);
  justify-content: center;
  margin-bottom: var(--pub-space-8);
}

.ov-filter-btn {
  border: 1px solid #cbddff;
  background: #fff;
  color: #305784;
  font-size: var(--pub-font-size-sm);
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background var(--pub-duration-fast) var(--pub-ease-out),
    color var(--pub-duration-fast) var(--pub-ease-out),
    border-color var(--pub-duration-fast) var(--pub-ease-out),
    box-shadow var(--pub-duration-fast) var(--pub-ease-out);
}

.ov-filter-btn:hover {
  border-color: #2f78ff;
  color: #1f5fb4;
}

.ov-filter-btn.is-active {
  background: linear-gradient(135deg, #2f78ff, #2ea9ff);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(47, 120, 255, 0.22);
}

.ov-video-grid {
  min-height: 4rem;
}

.ov-video-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #d7e6ff;
  box-shadow: 0 14px 32px rgba(26, 63, 123, 0.09);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--pub-duration) var(--pub-ease-out),
    transform var(--pub-duration) var(--pub-ease-out);
}

.ov-video-card:hover {
  box-shadow: 0 20px 40px rgba(26, 63, 123, 0.14);
  transform: translateY(-4px);
}

.ov-video-card__media {
  background: linear-gradient(140deg, #dceaff, #eaf2ff);
}

.ov-video-card__ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.ov-video-card__body {
  padding: 1rem 1rem 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--pub-space-2);
}

.ov-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: var(--pub-font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #1f5fb4;
  background: #eaf2ff;
  padding: 0.2rem 0.55rem;
  border-radius: var(--pub-radius-sm);
}

.ov-badge--lgs {
  color: #1f6b57;
  background: #e4f8f1;
}

.ov-video-card__title {
  font-size: var(--pub-font-size-lg);
  font-weight: 600;
  color: #102746;
  margin: 0;
  line-height: var(--pub-line-tight);
}

.ov-video-card__ders {
  font-size: var(--pub-font-size-sm);
  color: #50698f;
  margin: 0;
}

.ov-video-card__desc {
  font-size: var(--pub-font-size-sm);
  color: #61799d;
  margin: 0;
  line-height: var(--pub-line-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ov-video-card__modal-btn {
  margin-top: auto;
  align-self: flex-start;
}

.ov-empty {
  text-align: center;
  padding: var(--pub-space-12) var(--pub-space-4);
  color: var(--pub-color-text-muted);
}

.ov-empty__icon {
  font-size: 3rem;
  color: #1e6eb5;
  opacity: 0.85;
  margin-bottom: var(--pub-space-4);
}

.ov-empty h3 {
  color: var(--pub-color-text);
  margin-bottom: var(--pub-space-2);
}

.ov-modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(11, 26, 52, 0.3);
}

.ov-modal-content .modal-header {
  border-bottom: 1px solid var(--pub-color-border-light);
  padding: var(--pub-space-3) var(--pub-space-4);
}

.ov-modal-ratio iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 575.98px) {
  .ov-filters {
    justify-content: flex-start;
  }

  .ov-filter-btn {
    font-size: var(--pub-font-size-xs);
    padding: 0.4rem 0.75rem;
  }

  .ov-hero {
    padding-top: var(--pub-space-8);
    padding-bottom: var(--pub-space-10);
  }
}
