/* ═══════════════════════════════════════════
   PROCESS SLIDER – Brisket Yard
   ═══════════════════════════════════════════ */

.ps2-section {
  background: #130d08;
  overflow: hidden;
  padding: 3rem 0;
}

/* ── Main slide area ── */
.ps2-main {
  position: relative;
  min-height: clamp(380px, 50vh, 520px);
  display: flex;
  align-items: center;
}

/* Background image – sits on the right */
.ps2-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  overflow: hidden;
}

.ps2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.ps2-bg img.fading { opacity: 0; }

/* Dark gradient blending into left content */
.ps2-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #130d08 0%,
    rgba(19,13,8,0.93) 12%,
    rgba(19,13,8,0.55) 40%,
    rgba(19,13,8,0.1) 75%,
    transparent 100%
  );
}

/* ── Text content (left) ── */
.ps2-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.ps2-content-inner {
  max-width: 440px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ps2-content-inner.fading { opacity: 0; }

.ps2-eyebrow {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.ps2-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.ps2-desc {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.85;
  margin: 0;
}

/* ══════════════════════════════════════════
   THUMBNAIL NAV STRIP
   ══════════════════════════════════════════ */
.ps2-nav {
  background: rgba(8, 5, 2, 0.98);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.ps2-nav-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
}

/* ── Arrows ── */
.ps2-arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  color: #bbb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.2s, color 0.2s;
}

.ps2-arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── Thumb row ── */
.ps2-thumbs {
  display: flex;
  gap: 0.6rem;
  flex: 1;
}

/* ── Single thumb ── */
.ps2-thumb {
  flex: 1;
  cursor: pointer;
}

.ps2-thumb-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}

.ps2-thumb-img-wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: brightness(0.4) saturate(0.6);
  transition: filter 0.25s;
}

/* Active state */
.ps2-thumb.active .ps2-thumb-img-wrap {
  border-color: var(--orange);
}

.ps2-thumb.active .ps2-thumb-img-wrap img {
  filter: brightness(0.72) saturate(1);
}

/* Thumb label */
.ps2-thumb-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.38rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.25s;
}

.ps2-thumb.active .ps2-thumb-label { color: #ccc; }

.ps2-thumb-num { color: var(--orange); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .ps2-bg { width: 72%; }
  .ps2-heading { font-size: 2rem; }
  .ps2-thumb-img-wrap img { height: 50px; }
}

@media (max-width: 767px) {
  .ps2-main { min-height: 360px; }
  .ps2-bg {
    width: 100%;
    left: 0;
  }
  .ps2-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(19,13,8,0.92) 0%,
      rgba(19,13,8,0.75) 100%
    );
  }
  .ps2-content { padding: 2.5rem 0; }
  .ps2-content-inner { max-width: 100%; }
  .ps2-thumb-img-wrap img { height: 40px; }
  .ps2-thumb-label { font-size: 0.65rem; }
}
