/* Aurexo-style interior page cover — all nav pages */

.diler-page-cover {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.diler-page-cover__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.03);
}

.diler-page-cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.diler-page-cover__inner {
  position: relative;
  z-index: 2;
  padding: 56px 0 48px;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.diler-page-cover__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.diler-page-cover__breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.diler-page-cover__breadcrumb a:hover {
  color: var(--aurexo-accent, #84cc16);
}

.diler-page-cover__sep {
  opacity: 0.5;
}

.diler-page-cover__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.diler-page-cover__subtitle {
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 22px;
}

.diler-page-cover__subtitle i,
.diler-page-cover__subtitle [class^="icon-aurexo-"] {
  color: var(--aurexo-accent, #84cc16);
  margin-right: 8px;
}

.diler-page-cover__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.diler-page-cover__stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.diler-page-cover__stat i,
.diler-page-cover__stat [class^="icon-aurexo-"] {
  color: var(--aurexo-accent, #84cc16);
}

.diler-page-cover__stat strong {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 768px) {
  .diler-page-cover {
    min-height: 260px;
  }

  .diler-page-cover__inner {
    padding: 40px 0 32px;
  }

  .diler-page-cover__stats {
    gap: 8px;
  }
}
