.press-slideshow {
    position: relative;
    margin: 0 auto;
    padding: 20px;
    min-height: 200px;
    overflow: hidden;
}

.txtslide {
    display: none;
    text-align: center;
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.txtslide blockquote {
    text-align: left;
}

.txtslide.active {
    display: block;
    opacity: 1;
    position: relative;
}

blockquote {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.slideshow-container {
    position: relative;
    min-height: 160px; /* Ensure consistent height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

cite {
    color: #d3d3d3;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    color: #f0f0f0;
    background: none;
    font-weight: bold;
    font-size: 1.8em;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }
