.phs-slider-container {
    max-width: 100%;
    margin: 20px auto;
    font-family: 'Inter', sans-serif;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.phs-main-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
}

.phs-main-stage:active {
    cursor: grabbing;
}

.phs-slide {
    position: relative;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.phs-slide.active {
    opacity: 1;
    display: block;
}

.phs-slide a { text-decoration: none; }

.phs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.phs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}



.phs-bottom-caption {
    position: relative;
    bottom: 4%;
    width: 100%;
    text-align: left;
    padding: 0 4%;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: left;
    pointer-events: none;
}

.phs-title {
    color: #fff;
    font-size: clamp(18px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 8px;
    -webkit-text-stroke: 1px black;
    text-shadow: 2px 2px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.phs-excerpt {
    color: rgba(255,255,255,0.95);
    font-family: 'Work Sans', sans-serif;
    max-width: 800px;
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    margin: 0;
}

.phs-pagination {
    background: #fff;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    border-radius: 0 0 8px 8px;
    border: 1px solid #eee;
}

.phs-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.phs-num:hover, .phs-num.active {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
    transform: scale(1.1);
}