/* General Ticker Styling */
.ete-section {
    background: #f9f9f9;
    padding: 20px;
    margin: 20px auto;
  max-width:100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Progress bar container */
.ete-progress-bar {
  width: 100%;
  height: 5px;
  background-color: #e0e0e0; /* light grey background */
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 15px; /* space below header */
}

/* Progress fill */
.ete-progress-fill {
  height: 100%;
  width: 0;
  background-color: black; /* black fill */
  transition: width 0.3s ease;
}

.ete-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

/* Carousel container (slick sets display:flex automatically) */
.ete-carousel {
    /* overflow hidden handled by slick */
    /* no need to force flex - slick does it */
}

/* Individual slide */
.ete-slide {
    background: #fff;
    padding: 20px;
    margin: 10px 10px 10px 10px; /* same margin on all sides */
    border-radius: 10px;
    min-height: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

/* Adjust margin on slick slides to avoid overflow issues */
.slick-slide {
    outline: none; /* remove blue outline on focus */
}

.ete-slide h3 {
    font-size: 20px;
    color: #222;
    margin-bottom: 10px;
}

.ete-slide p {
    color: #555;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Button styling */
.ete-button {
    display: inline-block;
    padding: 10px 16px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.ete-button:hover {
    background-color: #005e8a;
}

/* Slick Dots */
.slick-dots {
    text-align: center;
    margin-top: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #0073aa;
}

.slick-dots li.slick-active button:before {
    color: #005e8a;
}

/* Responsive Styles */

/* Below 1024px - up to 2 slides show handled by JS */

/* Below 768px - 1 slide show */
@media (max-width: 768px) {
    .ete-header {
        font-size: 20px;
    }

    .ete-slide {
        margin: 0 10px; /* reduce side margins for single slide */
        padding: 16px;
        min-height: auto; /* allow smaller height if needed */
    }

    .ete-slide h3 {
        font-size: 18px;
    }

    .ete-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Below 480px - single slide full width */
@media (max-width: 480px) {
    .ete-section {
        padding: 15px 10px;
    }

    .ete-slide {
        margin: 0 auto;
       
        min-height: auto;
    }

    .ete-header {
        font-size: 18px;
    }
}
