.pbn-slides-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.blog-post--sidebar .pbn-slides {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
    transition: transform 0.6s ease;
}

.pbn-slide {
    flex: 0 0 100%;
    list-style: none !important;
}

.blog-post--sidebar .pbn-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    border: 0;
    margin: 0;
    padding: 0;
}

.pbn-slides-nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pbn-slides-nav .pbn-prev,
.pbn-slides-nav .pbn-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 100%;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.pbn-slides-nav .pbn-prev {
    left: 0.75rem;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0 0 8 8\'%3E%3Cpath d=\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\'/%3E%3C/svg%3E');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.pbn-slides-nav .pbn-next {
    right: 0.75rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' fill=\'%23fff\' viewBox=\'0 0 8 8\'%3E%3Cpath d=\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.pbn-slides-nav .pbn-prev:hover,
.pbn-slides-nav .pbn-next:hover {
    opacity: 0.9;
}

.pbn-slides-nav .pbn-prev:focus,
.pbn-slides-nav .pbn-next:focus {
    outline: none;
    opacity: 0.7;
}

.pbn-gallery-thumbnails {
    list-style: none;
    margin: 1rem 0 2rem !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.pbn-gallery-thumbnails .pbn-thumbnail {
    flex: 0 0 auto;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pbn-gallery-thumbnails .pbn-thumbnail a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    padding: 5px;
    background: #f1f1f1;
    transition: opacity 0.15s ease;
}

.pbn-gallery-thumbnails .pbn-thumbnail a:hover,
.pbn-gallery-thumbnails .pbn-thumbnail a:focus,
.pbn-gallery-thumbnails .pbn-thumbnail.active a {
    opacity: 0.8;
}

.pbn-gallery-thumbnails .pbn-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    padding: .25rem !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
    background-color: #f8f9fe !important;
}

.pbn-colors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}

.pbn-colors-list .pbn-color {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    border: 1px solid #e9ecef;

}

.pbn-video-examples {
    padding-bottom: 30px;
}

.pbn-content,
.pbn-video-examples-content {
    padding: 18px 18px 16px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
}

.pbn-video-examples-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none !important;
    margin: 0 0 14px 0 !important;
    padding: 0 !important;
}

.pbn-video-examples-nav-item {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.pbn-video-examples-nav-link {
    border: 1px solid #d7deea;
    background: #f5f7fb;
    color: #1f2937;
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pbn-video-examples-nav-link:hover,
.pbn-video-examples-nav-link:focus {
    border-color: #b4bfd4;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pbn-video-examples-nav-link.active {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.18);
}

@media (max-width: 451px) {
    .pbn-video-examples-tabs {
        height: 250px;
    }
}

.pbn-video-examples-content-item {
    display: none;
}

.pbn-video-examples-content-item.active {
    display: block;
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }
}