/**
 * Module wp_brandslider — WebPoint
 * Front CSS
 */
.wp-bs-block { margin: 30px 0; }
.wp-bs-block .wp-block-title { font-size: 22px; font-weight: 700; color: #2c3e50; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 3px solid #e54d26; }

.wp-bs-slider { position: relative; overflow: hidden; padding: 0 40px; }
.wp-bs-track { display: flex; transition: transform .4s ease; }
.wp-bs-slide { flex: 0 0 calc(100% / 6); padding: 10px 15px; box-sizing: border-box; }
.wp-bs-slide a { display: flex; flex-direction: column; align-items: center; text-decoration: none; padding: 12px; border: 1px solid #eee; border-radius: 8px; transition: all .2s; background: #fff; height: 100%; justify-content: center; }
.wp-bs-slide a:hover { border-color: #e54d26; box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.wp-bs-slide img { max-width: 100%; max-height: 80px; object-fit: contain; transition: filter .3s; }
.wp-bs-no-img { font-size: 14px; font-weight: 600; color: #2c3e50; padding: 20px 10px; text-align: center; }
.wp-bs-name { font-size: 12px; color: #555; margin-top: 8px; text-align: center; font-weight: 500; }

/* Grayscale */
.wp-bs-grayscale .wp-bs-slide img { filter: grayscale(100%); opacity: .6; }
.wp-bs-grayscale .wp-bs-slide:hover img { filter: grayscale(0%); opacity: 1; }

/* Nav */
.wp-bs-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border: none; background: #2c3e50; color: #fff; border-radius: 50%; font-size: 16px; cursor: pointer; z-index: 5; transition: background .2s; display: flex; align-items: center; justify-content: center; }
.wp-bs-nav:hover { background: #e54d26; }
.wp-bs-prev { left: 0; }
.wp-bs-next { right: 0; }

@media (max-width: 768px) { .wp-bs-slider { padding: 0 30px; } }
@media (max-width: 480px) { .wp-bs-slider { padding: 0 25px; } .wp-bs-nav { width: 28px; height: 28px; font-size: 14px; } }
