/* Certificates Slider Styles */
.sk-certificates-slider-container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.sk-certificate-slide {
    display: flex;
    width: 100%;
}
/* Left column with image */
.sk-certificate-image {
    flex: 0 0 30%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 400px;
}
/* Right column with description */
.sk-certificate-description {
    flex: 0 0 70%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.sk-certificate-content {
    flex: 1;
    overflow: hidden;
}
/* Text styles */
.sk-certificate-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.sk-certificate-text h4{
    font-weight:500 !important;
    font-size: 16px !important;
}
.sk-certificate-text p {
    margin-bottom: 16px;
    font-weight:300;
}
.sk-certificate-text ul, 
.sk-certificate-text ol {
    margin-left: 20px;
    margin-bottom: 16px;
}
/* Mobile text truncation */
.sk-certificate-text-mobile {
    display: none;
}
.sk-certificate-read-more {
    display: none;
    background-color: transparent;
    color: #CE8946;
    border: none;
    padding: 5px 0;
    margin-top: 10px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline;
}
.sk-ellipsis {
    font-weight: bold;
}
/* Navigation dots */
.sk-certificate-pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    margin: 0 5px;
}
.swiper-pagination-bullet-active {
    background: #CE8946;
}
/* Navigation arrows */
.sk-certificates-slider-container .swiper-button-next,
.sk-certificates-slider-container .swiper-button-prev {
    background-image: none; /* Ukryj domyślne strzałki */
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.sk-certificates-slider-container .swiper-button-next::after,
.sk-certificates-slider-container .swiper-button-prev::after {
    display: none; /* Usuń domyślne ikony strzałek */
}

/* Pozycjonowanie strzałek */
.sk-certificates-slider-container .swiper-button-next svg,
.sk-certificates-slider-container .swiper-button-prev svg {
    width: 55px;
    height: 25px;
}

/* Dodaj efekt hover dla strzałek */
.sk-certificates-slider-container .swiper-button-next:hover svg path,
.sk-certificates-slider-container .swiper-button-prev:hover svg path {
    fill: #a06729; /* Ciemniejszy odcień dla hover */
    transition: fill 0.3s ease;
}

.sk-certificates-slider-container .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile styles */
@media (max-width: 767px) {
    .sk-certificate-slide {
        flex-direction: column;
    }
    
    .sk-certificate-image {
        flex: 0 0 100%;
        min-height: 250px;
    }
    
    .sk-certificate-description {
        flex: 0 0 100%;
        padding: 0;
    }
    
    .sk-certificate-text {
        display: none;
    }
    
    .sk-certificate-text-mobile {
        display: block;
    }
    
    .sk-certificate-text-mobile.truncated .sk-certificate-read-more {
        display: inline-block;
    }
    
    .sk-certificate-text-mobile:not(.truncated) .sk-certificate-read-more,
    .sk-certificate-text-mobile:not(.expanded) .sk-certificate-read-more {
        display: none;
    }
    
    /* Dostosowanie strzałek na mobile */
    .sk-certificates-slider-container .swiper-button-next svg,
    .sk-certificates-slider-container .swiper-button-prev svg {
        width: 40px;
        height: 25px;
    }
}
