.ohrb-slider {
  --ohrb-accent: #c78a2b;
  --ohrb-overlay-start: 0.8;
  --ohrb-overlay-mid: 0.55;
  --ohrb-overlay-end: 0.2;
  position: relative;
  overflow: hidden;
  background: #101214;
  width: 100%;
  height: 80vh;
}

.ohrb-slider * {
  box-sizing: border-box;
}

.ohrb-slides,
.ohrb-slide {
  position: absolute;
  inset: 0;
}

.ohrb-slide {
  opacity: 0;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
}

.ohrb-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.ohrb-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ohrb-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, var(--ohrb-overlay-start)) 0%,
    rgba(0, 0, 0, var(--ohrb-overlay-mid)) 50%,
    rgba(0, 0, 0, var(--ohrb-overlay-end)) 100%
  );
}

.ohrb-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.ohrb-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.ohrb-content-wrap {
  max-width: 44rem;
  position: relative;
}

.ohrb-badge {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ohrb-accent);
}

.ohrb-content {
  display: none;
  animation: ohrbFadeIn 0.65s ease both;
}

.ohrb-content.is-active {
  display: block;
}

.ohrb-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 1rem;
}

.ohrb-content p {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.75;
  max-width: 34rem;
  margin: 0 0 2rem;
}

.ohrb-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ohrb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
  line-height: 1;
  padding: 14px 28px;
}

.ohrb-btn:hover {
  transform: translateY(-1px);
}

.ohrb-btn-primary {
  background: var(--ohrb-accent);
  color: #fff;
  font-weight: 600;
}

.ohrb-btn-primary:hover {
  filter: brightness(0.96);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
  color: #fff;
}

.ohrb-btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 500;
  background: transparent;
}

.ohrb-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.ohrb-btn-arrow {
  font-size: 16px;
  line-height: 1;
}

.ohrb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ohrb-nav:hover {
  background: rgba(255,255,255,0.2);
}

.ohrb-nav span {
  font-size: 28px;
  line-height: 1;
  display: inline-block;
  margin-top: -2px;
}

.ohrb-nav-prev {
  left: 16px;
}

.ohrb-nav-next {
  right: 16px;
}

.ohrb-indicators {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.ohrb-indicator {
  width: 16px;
  height: 3px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.5s ease;
  padding: 0;
}

.ohrb-indicator:hover {
  background: rgba(255,255,255,0.5);
}

.ohrb-indicator.is-active {
  width: 40px;
  background: var(--ohrb-accent);
}

@keyframes ohrbFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .ohrb-container {
    width: min(100%, calc(100% - 48px));
  }
}

@media (max-width: 767px) {
  .ohrb-slider {
    height: 70vh;
  }

  .ohrb-container {
    width: calc(100% - 32px);
  }

  .ohrb-content h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .ohrb-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }

  .ohrb-nav {
    width: 38px;
    height: 38px;
  }

  .ohrb-nav-prev {
    left: 10px;
  }

  .ohrb-nav-next {
    right: 10px;
  }
}
