/* Vertical Ticker Styling */
.vertical-ticker-wrapper {
    width: 100% !important; /* Full width */
    margin: 0 auto;
    overflow: hidden;
}

.vertical-ticker {
    width: 100% !important; /* Full width */
    height: 40px; /* Fixed height */
    min-height: 40px;
    max-height: 40px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.vertical-ticker .ticker-item {
    padding: 0 10px;
    text-align: left; /* Align text to left */
    box-sizing: border-box;
    height: 50px; /* Match container height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vertical-ticker .ticker-item h3 {
    margin: 0;
    font-size: 14px; /* Smaller font size for title */
    line-height: 1.2;
    font-weight: 500;
}

.vertical-ticker .ticker-item h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vertical-ticker .ticker-item h3 a:hover {
    color: #0073aa;
}

.vertical-ticker .slick-slide {
    outline: none;
    height: 40px; /* Ensure slide matches item height */
}

/* Override Slick.js default widths */
.slick-slider,
.slick-list,
.slick-track {
    width: 100% !important;
}

/* Ensure Slick.js arrows and dots don't interfere */
.vertical-ticker .slick-prev,
.vertical-ticker .slick-next,
.vertical-ticker .slick-dots {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vertical-ticker {
        height: 40px;
        min-height: 40px;
        max-height: 40px;
    }

    .vertical-ticker .ticker-item {
        height: 40px;
    }

    .vertical-ticker .ticker-item h3 {
        font-size: 13px;
    }

    .vertical-ticker .slick-slide {
        height: 40px;
    }
}