.wp-carousel {
    position: relative;
    display: flex;
    overflow: hidden;
}

.wp-carousel-item {
    flex: 1 0 100%;
    position: relative;
}

.wp-carousel-item img {
    width: 100%;
    height: auto;
}

.wp-carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    background: rgba(0, 0, 0, 0.5); /* Example background */
    padding: 10px;
    box-sizing: border-box;
}

.wp-carousel-counter {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.slick-prev
