
.pchs-slider{
    position:relative;
    width:100%;
    min-height:420px;
    margin-inline:auto;
    overflow:hidden;
    isolation:isolate;
    background:#0d1116;
}
.pchs-slides,
.pchs-slide,
.pchs-image,
.pchs-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}
.pchs-slide{
    opacity:0;
    transition:opacity .7s ease;
    pointer-events:none;
}
.pchs-slide.is-active{opacity:1}
.pchs-image{
    background-size:cover;
    background-repeat:no-repeat;
}
.pchs-video{object-fit:cover}
.pchs-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:rgba(0,0,0,.22);
}
.pchs-content-wrap{
    position:relative;
    z-index:3;
    min-height:inherit;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
    padding:28px 24px;
    box-sizing:border-box;
}
.pchs-content{
    width:44%;
    min-width:0;
}
.pchs-logo{
    display:block;
    width:120px;
    max-width:100%;
    height:auto;
    margin-bottom:8px;
}
.pchs-title{
    color:#fff;
    font-size:52px;
    line-height:1;
    margin-bottom:16px;
}
.pchs-description{
    max-width:420px;
    color:#fff;
    font-size:14px;
    line-height:1.25;
}
.pchs-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    margin-top:22px;
    padding:10px 18px;
    border:1px solid #d7a66e;
    border-radius:12px;
    color:#fff;
    background:rgba(0,0,0,.18);
    text-decoration:none;
    line-height:1;
    transition:transform .2s ease, opacity .2s ease;
}
.pchs-button:hover{
    transform:translateY(-1px);
    opacity:.92;
}
.pchs-button-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}
.pchs-button-icon svg{
    width:1em;
    height:1em;
    fill:currentColor;
}
.pchs-arrow{
    position:absolute;
    z-index:5;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    background:rgba(0,0,0,.34);
    cursor:pointer;
}
.pchs-prev{left:16px}
.pchs-next{right:16px}
.pchs-dots{
    position:absolute;
    z-index:5;
    left:50%;
    bottom:16px;
    transform:translateX(-50%);
    display:flex;
    gap:7px;
}
.pchs-dot{
    width:9px;
    height:9px;
    padding:0;
    border:0;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
}
.pchs-dot.is-active{background:#fff}
@media(max-width:1024px){
    .pchs-slider{min-height:400px}
    .pchs-content{width:54%}
    .pchs-title{font-size:44px}
}
@media(max-width:767px){
    .pchs-slider{min-height:500px}
    .pchs-content-wrap{
        padding:28px 18px;
        align-items:flex-start;
        justify-content:flex-end;
    }
    .pchs-content{
        width:100%;
        padding:18px;
        border-radius:16px;
        background:rgba(0,0,0,.58);
        backdrop-filter:blur(3px);
        box-sizing:border-box;
    }
    .pchs-logo{width:95px}
    .pchs-title{font-size:36px}
    .pchs-description{font-size:13px}
    .pchs-button{
        width:100%;
        box-sizing:border-box;
    }
}
