/* =============================================
   Brands Slider — WordPress Plugin CSS
   File: assets/brands-slider.css
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bs-card-bg    : #111111;
  --bs-text       : #ffffff;
  --bs-accent     : #c9a96e;
  --bs-radius     : 4px;
}

/* Wrapper */
.bs-wrapper {
  background   : #ffffff;
  padding      : 28px 0 28px 28px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow   : 0 2px 20px rgba(0,0,0,0.06);
  overflow     : hidden;
}

.bs-card {
    height     : 178px !important;
}

/* Header */
.bs-header {
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  padding-right  : 28px;
  margin-bottom  : 18px;
}

.bs-title {
    font-family: brandon-text-medium, "Gill Sans", Arial, sans-serif;
    color: black;
    font-weight: 500;
    font-size: 17px;
    display: block;
    padding-top: 15px;
    font-weight: bold;
}


/* Container + track */
.bs-container {
  position: relative;
  overflow: hidden;
}

/* .bs-container::after {
  content        : '';
  position       : absolute;
  right          : 0;
  top            : 0;
  width          : 70px;
  height         : 100%;
  background     : linear-gradient(to right, transparent, #fff);
  pointer-events : none;
  z-index        : 2;
} */

.bs-track {
  display   : flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Cards */
.bs-card {
  flex           : 0 0 220px;
  height         : 220px;
  background     : var(--bs-card-bg);
  border-radius  : var(--bs-radius);
  display        : flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  cursor         : pointer;
  position       : relative;
  overflow       : hidden;
  transition     : transform 0.3s ease, box-shadow 0.3s ease;
}

.bs-card::before {
  content   : '';
  position  : absolute;
  inset     : 0;
  opacity   : 0;
  transition: opacity 0.3s ease;
}

.bs-card:hover::before { opacity: 1; }
.bs-card:hover {
  transform : translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
}

.bs-card-logo {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 0.13em;
    text-align: center;
    padding: 14px;
    user-select: none;
    line-height: 38px;
}

.bs-card-logo img {
  max-width   : 140px;
  max-height  : 100%;
  object-fit  : contain;
  display     : block;
}

.bs-card-sub {
  font-family   : 'DM Sans', sans-serif;
  font-size     : 9px;
  letter-spacing: 0.2em;
  color         : rgba(255,255,255,0.45);
  text-transform: uppercase;
  margin-top    : 4px;
}

/* Nav buttons */
.bs-nav { display: flex; gap: 8px; }

.bs-nav-btn {
  width          : 34px;
  height         : 34px;
  border-radius  : 50%;
  border         : 1.5px solid #ddd;
  background     : #fff;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transition     : all 0.2s ease;
  color          : #333;
  padding        : 0;
}

.bs-nav-btn svg {
  width : 15px;
  height: 15px;
}

.bs-nav-btn:hover {
  background  : #1a1a1a;
  border-color: #1a1a1a;
  color       : #fff;
}

.bs-nav-btn:disabled {
  opacity: 0.3;
  cursor : not-allowed;
}

/* Responsive */
@media (max-width: 600px) {
  .bs-wrapper { padding: 20px 0 20px 16px; }
  .bs-card    { flex: 0 0 160px !important; height: 160px !important; }
  .bs-card-logo { font-size: 14px; }
}
