/* --- Carousel Styles --- */
.bs-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}
.bs-carousel-track-wrapper {
    overflow: hidden;
}
.bs-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.bs-carousel-item {
    min-width: 25%; /* 4 items per row */
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-right: 1px solid #fff; /* Small gap line */
    box-sizing: border-box;
}
/* Mobile Responsive: 1 item per row */
@media (max-width: 768px) {
    .bs-carousel-item { min-width: 100%; }
}

.bs-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 20px;
    box-sizing: border-box;
}
.bs-cat-badge {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 5px;
}
.bs-overlay h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}
.bs-overlay h3 a {
    color: #fff;
    text-decoration: none;
}
.bs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}
.bs-prev { left: 0; }
.bs-next { right: 0; }

/* --- Ticker Styles --- */
.bs-ticker-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    height: 40px;
    font-family: sans-serif;
}
.bs-ticker-label {
    background: #000;
    color: #fff;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}
.bs-ticker-content {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    padding-left: 15px;
}
.bs-ticker-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    height: 100%;
}
.bs-ticker-item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex; /* Flex handles vertical center */
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    width: 100%;
}
.bs-ticker-item.active {
    opacity: 1;
    z-index: 2;
}
.bs-ticker-item a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}
.bs-ticker-controls {
    padding: 0 10px;
    border-left: 1px solid #eee;
    display: flex;
    gap: 10px;
    color: #555;
    cursor: pointer;
}