#main #content-wrap, .separate-layout #main #content-wrap {
    padding-top: 25px !important;
}

.breadcrumbs {
    margin: 20px 0 0 0;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: inherit;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.woocommerce .oceanwp-toolbar {
    border-top: 0 !important;
    border-bottom: 0 !important;
}

h1.category-heading__title {
    margin-bottom: 0 !important;
}

@media only screen and (max-width: 480px) {
    .woocommerce .oceanwp-grid-list {
        float: left !important;
        margin-top: 14px !important;
    }

    .woocommerce .woocommerce-ordering {
        float: right !important;
        width: calc(100% - 88px);
    }
}

/* Category desc */
.category-description {
    position: relative;
    margin-top: 48px;
}

.category-description__content {
    max-height: 160px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.category-description__content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0),
            #fff
    );
}

.category-description.is-open .category-description__content {
    max-height: 9999px;
}

.category-description.is-open .category-description__content::after {
    display: none;
}

.category-description__toggle {
    margin-top: 16px;
    padding: 0 10px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
}

/* Videos */

.pwl-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.pwl-video-card {
    min-width: 0;
}

.pwl-video-card > p {
    margin: 0 !important;
}

.pwl-video-embed {
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
}

.pwl-video-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.pwl-video-title {
    margin: 14px 0 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.pwl-video-pagination {
    margin-top: 40px;
    text-align: center;
}

.pwl-video-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 4px;
    padding: 0 10px;
    border: 1px solid #302c92;
    color: #302c92;
    font-weight: 700;
}

.pwl-video-pagination .page-numbers.current,
.pwl-video-pagination .page-numbers:hover {
    background: #302c92;
    color: #fff;
}

.pwl-video-more {
    display: inline-block;
    color: #302c92;
    font-weight: 700;
    font-size: 14px;
}

.pwl-video-more:hover {
    color: #f89800;
}

@media (max-width: 1024px) {
    .pwl-video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pwl-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

/* Single video post */

.pwl-video-single {
    margin-top: 40px;
}

.pwl-video-single .add_to_cart_inline a,
.pwl-video-card .add_to_cart_inline a {
    min-width: 100%;
}

.pwl-video-single-title {
    margin-bottom: 20px;
}

.pwl-video-single-layout {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    align-items: flex-start;
}

.pwl-video-sidebar {
    flex: 0 0 250px;
    position: sticky;
    top: 115px;
}

.pwl-video-player {
    margin-bottom: 20px;
}

.pwl-video-player iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: 450px;
    display: block;
}

.pwl-video-content {
    flex: 1;
    min-width: 0;
}

.pwl-video-content p:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {

    .pwl-video-single-layout {
        flex-direction: column;
    }

    .pwl-video-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }

    .pwl-video-player iframe {
        aspect-ratio: 9 / 16;
    }
}