.cv-carousel-section{
    border-radius:10px;
}
.cv-carousel-wrapper{
    position:relative;
}
.cv-carousel-viewport{
    position:relative;
    overflow:hidden;
    user-select:none;
}
.cv-slides-container{
    display:flex;
    transition:transform 0.35s ease;
}
.cv-slide{
    flex:0 0 80%;
    /* padding:12px; */
    padding:10px 0px;
    /* opacity:0; */
    transition:opacity 0.2s ease;
    margin-right:10px;
}
.cv-slide.active{
    opacity:1;
}
.cv-slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    font-size:16px;
    border-radius:50%;
    border:none;
    background:none;
    color:#999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background 0.2s ease,transform 0.2s ease,opacity 0.2s ease;
    cursor:pointer;
    z-index:10;
    opacity:0.9;
}
.cv-slide-arrow:hover{
    background:rgba(0,0,0,0.05);
    color:#333;
}
.cv-slide-arrow.prev{
    left:10px;
}
.cv-slide-arrow.next{
    right:10px;
}
.cv-card-main{
    border:1px solid rgba(0,0,0,.125);
    border-radius:5px;
    background:#fff;
}
.cv-card{
    /* display:flex; */
    gap:8px;
    padding:0px 10px 10px 10px;
    align-items:center;
}
.cv-card-media{
    position:relative;
    width:100%;
    height:137px;
    border-radius:12px;
    overflow:hidden;
    background:#e6f1fb;
    flex-shrink:0;
}
.cv-card-img{
    width:100%;
    height:auto;
    object-fit:cover;
}
.cv-card-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#7a8da3;
}
.cv-card-body{
    flex:1;
}
.cv-card-title{
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:4px;
    color:#11253a;
    padding-top:6px;
    padding-left:10px;
}
.cv-card-actions{
    /* display:flex; */
    gap:10px;
    flex-wrap:wrap;
    margin-top:8px;
}
.cv-download-btn, .cv-preview-btn, .btn-generate-cv-purchase{
    padding:5px 10px;
    font-size:12px;
    border-radius:4px;
    text-decoration:none;
    display:inline-block;
    transition:background 0.2s ease,color 0.2s ease;
}
.cv-download-btn{
    background:#00a0d2;
    color:#fff;
    border:none;
    padding:5px 10px !important;
}
.cv-download-btn:hover{
    background:#0088b0;
    color:#fff;
}
.cv-preview-btn{
    background:transparent;
    color:#00a0d2;
    border:1px solid #00a0d2;
}
.cv-preview-btn:hover{
    background:#00a0d2;
    color:#fff;
}
.cv-build-cv-btn{
    background:#00a0d2;
    color:#fff;
    border:none;
    cursor:pointer;
    padding:5px 10px !important;
    font-size:12px;
    margin-left:5px;
}
.cv-build-cv-btn:hover{
    background:#0088b0;
}
.cv-carousel-controls{
    display:flex;
    align-items:center;
    gap:12px;
    /* padding-bottom:10px; */
    flex-wrap:wrap;
    /* margin-left:5px; */
}
.cv-nav-btn{
    width:25px;
    height:25px;
    font-size:15px;
    border-radius:50%;
    border:none;
    background:#00a0d2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0,160,210,0.25);
    transition:background 0.2s ease;
    cursor:pointer;
}
.cv-nav-btn:hover{
    background:#0088b0;
}
.cv-bullets{
    display:flex;
    gap:6px;
}
.cv-bullet{
    width:8px;
    height:8px;
    border-radius:50%;
    border:none;
    background:#c7d8e2;
    padding:0;
    transition:background 0.2s ease,transform 0.2s ease;
    cursor:pointer;
}
.cv-bullet.active{
    background:#00a0d2;
    transform:scale(1.2);
}
.cv-see-all-link{
    margin-left:auto;
    margin-right:0px;
}
@media(max-width:768px){
    .cv-card{
        flex-direction:column;
        text-align:center;
    }
    .cv-card-media{
        width:100%;
        height:137px;
    }
    .cv-card-actions{
        justify-content:center;
    }
    .cv-slide-arrow{
        display:none;
    }
    .cv-carousel-controls{
        flex-wrap:wrap;
    }
    /* .cv-see-all-link{
        margin-left:0;
    } */
}
