/**
 * Project Info Slider Widget Styles
 */

.pis-widget-wrapper {
    position: relative;
    width: 100%;
}

.pis-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.pis-text {
    flex: 1;
}

.pis-title {
    font-family: 'Playfair Display', serif;
    /* Assuming a premium serif like in your team profile */
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #121212;
}

.pis-description {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    max-width: 70%;
}

.pis-nav {
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
}

.pis-nav-prev,
.pis-nav-next {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    color: #121212;
    transition: all 0.3s ease;
}

.pis-nav-prev:hover,
.pis-nav-next:hover {
    background-color: #bea150;
    border-color: #bea150;
    color: #fff;
}

.pis-slider-container {
    width: 100%;
}

.pis-swiper {
    width: 100%;
    overflow: hidden;
}

.pis-slide-image {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fdfdfd;
}

.pis-slide-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .pis-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .pis-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .pis-title {
        font-size: 26px;
    }

    .pis-description {
        font-size: 14px;
    }
}