/* luderio-homepage-quotes.css */

.lud-hp-quotes{
  position: relative;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: center;
}

.lud-hp-quotes-bg{
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  bottom: -12%;
  z-index: 0;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  will-change: transform;
  transform: translate3d(0,0,0);
}

.lud-hp-quotes-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
  opacity: 1;
}

/* OVERLAY IDENTIC cu Hero (luderio-overlay-dots) */
.lud-hp-quotes.lud-overlay-dots .lud-hp-quotes-overlay{
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 2px 2px;
  opacity: 0.3;
}

.lud-hp-quotes-inner{
  position: relative;
  z-index: 2;

  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
}

.lud-hp-quotes.lud-align-left .lud-hp-quotes-inner{
  justify-content: flex-start;
}

.lud-hp-quotes.lud-align-center .lud-hp-quotes-inner{
  justify-content: center;
}

.lud-hp-quotes-carousel{
  width: 66.666%;
  max-width: 920px;
  user-select: none;
  touch-action: pan-y;
}

.lud-hp-quotes-frame{
  overflow: hidden;
}

.lud-hp-quotes-track{
  display: flex;
  will-change: transform;
  transform: translate3d(0,0,0);
  transition: transform 420ms ease;
}

.lud-hp-quotes-slide{
  min-width: 100%;
  padding: 22px 10px 14px 10px;
  box-sizing: border-box;
}

.lud-hp-quotes-lines{
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.38);
  margin: 0 0 22px 0;
}

.lud-hp-quotes-lines.bottom{
  margin: 22px 0 0 0;
}

.lud-hp-quotes-text{
  color: #ffffff;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.2px;
  max-width: 860px;
}

.lud-hp-quotes-meta{
  margin-top: 26px;
  text-align: right;
  max-width: 860px;
}

.lud-hp-quotes-author{
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

.lud-hp-quotes-role{
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-style: italic;
  margin-top: 6px;
}

.lud-hp-quotes-dots{
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

/* bullets (ring + inner filled when active) */
.lud-hp-quotes-dot{
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;

  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  opacity: 0.9;

  position: relative;
}

.lud-hp-quotes-dot:hover{
  opacity: 1;
  border-color: rgba(255,255,255,0.75);
}

.lud-hp-quotes-dot.is-active{
  border-color: rgba(255,255,255,0.95);
  opacity: 1;
}

.lud-hp-quotes-dot.is-active::after{
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
}

/* Mobile */
@media (max-width: 900px){
  .lud-hp-quotes-inner{
    padding: 0 18px;
    justify-content: center;
  }

  .lud-hp-quotes-carousel{
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
  }

  .lud-hp-quotes-text{
    font-size: 26px;
    text-align: center;
    margin: 0 auto;
  }

  .lud-hp-quotes-meta{
    text-align: center;
    margin-top: 20px;
  }
}

/* Optional standalone */
.lud-hp-quotes-standalone{
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.08);
}