.marketing-videos {
    width: 100%;
}

.marketing-videos-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 48px;
    align-items: flex-start;
}

.marketing-videos-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.marketing-videos-search-wrap,
.marketing-videos-series-wrap,
.marketing-videos-topics-wrap {
    margin-bottom: 32px;
}

.marketing-videos-filter-label {
    display: block;
    margin-bottom: 14px;
    color: #3f3f44;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.marketing-videos-search-input {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid rgba(63, 63, 68, 0.16);
    border-radius: 10px;
    background: #ffffff;
    color: #3f3f44;
    font-size: 15px;
    line-height: 1.3;
    box-shadow: none;
    outline: none;
}

.marketing-videos-search-input:focus {
    border-color: #91ca6a;
}

.marketing-videos-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 70vh;
    overflow: auto;
    padding-right: 6px;
}

.marketing-videos-filter-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: #3f3f44;
    font-size: 15px;
    line-height: 1.35;
    cursor: pointer;
}

.marketing-videos-filter-option input {
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: #91ca6a;
}

.marketing-videos-clear-filters {
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid rgba(63, 63, 68, 0.32);
    border-radius: 999px;
    background: #ffffff;
    color: #3f3f44;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.marketing-videos-clear-filters:hover,
.marketing-videos-clear-filters:focus {
    border-color: rgba(63, 63, 68, 0.18);
    color: rgba(63, 63, 68, 0.58);
    background: #ffffff;
    outline: none;
}

.marketing-videos-main {
    min-width: 0;
}

.marketing-videos-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.marketing-videos .marketing-video-card {
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.marketing-videos .marketing-video-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.marketing-videos .marketing-video-card-link:hover,
.marketing-videos .marketing-video-card-link:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
}

.marketing-videos .marketing-video-card-media {
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 16 / 9;
    /*border: 1px solid rgba(145, 202, 106, 0.75);*/
    border-radius: 16px 16px 0px 0px;
    overflow: hidden;
    background: rgba(63, 63, 68, 0.05);
    transform: translateY(0);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

.marketing-videos .marketing-video-card-image,
.marketing-videos .marketing-video-card-image-placeholder {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}

.marketing-videos .marketing-video-card-image {
    object-fit: cover;
}

.marketing-videos .marketing-video-card-image-placeholder {
    background: rgba(63, 63, 68, 0.08);
}

/* .marketing-videos .marketing-video-card-play {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 58px !important;
    height: 58px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #91ca6a !important;
    border-radius: 50% !important;
    background: #91ca6a !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1) !important;
    pointer-events: none;
    transition:
        transform 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease;
}

.marketing-videos .marketing-video-card-play-icon {
    display: block !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 0 0 4px !important;
    padding: 0 !important;
    border-top: 9px solid transparent !important;
    border-right: 0 !important;
    border-bottom: 9px solid transparent !important;
    border-left: 14px solid #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.marketing-videos .marketing-video-card-link:hover .marketing-video-card-media,
.marketing-videos .marketing-video-card-link:focus .marketing-video-card-media {
    transform: translateY(-4px);
    border-color: #91ca6a;
    box-shadow: 0 12px 28px rgba(63, 63, 68, 0.08);
}

.marketing-videos .marketing-video-card-link:hover .marketing-video-card-play,
.marketing-videos .marketing-video-card-link:focus .marketing-video-card-play {
    background: #83bd5d !important;
    border-color: #83bd5d !important;
    transform: translate(-50%, -50%) scale(1.08) !important;
}
*/

.marketing-videos .marketing-video-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
    text-align: left;
    background: #f7f7f7;
    border-radius: 0px 0px 16px 16px;
}

.marketing-videos .marketing-video-card-title {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #3f3f44;
    font-size: 19px;
    line-height: 1.28;
    font-weight: 700;
    letter-spacing: -0.012em;
    text-align: left;
    transition: color 0.25s ease;
}

.marketing-videos .marketing-video-card-link:hover .marketing-video-card-title,
.marketing-videos .marketing-video-card-link:focus .marketing-video-card-title {
    color: #48ccdf;
}

.marketing-videos .marketing-video-card-excerpt {
    display: block;
    width: 100%;
    margin: 9px 0 0;
    padding: 0;
    color: #404041;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    text-align: left;
}

.marketing-videos-loader {
    display: none;
    margin-top: 36px;
    color: #777777;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.marketing-videos-loader.is-active {
    display: block;
}

.marketing-videos-infinite-scroll-trigger {
    width: 100%;
    height: 1px;
}

.marketing-videos-no-results {
    grid-column: 1 / -1;
    padding: 48px 24px;
    border-radius: 18px;
    background: rgba(63, 63, 68, 0.05);
    color: #3f3f44;
    font-size: 17px;
    line-height: 1.45;
    text-align: center;
}

@media (max-width: 1180px) {
    .marketing-videos-layout {
        grid-template-columns: 230px minmax(0, 1fr);
        gap: 36px;
    }

    .marketing-videos-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .marketing-videos .marketing-video-card-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .marketing-videos-layout {
        display: block;
    }

    .marketing-videos-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 36px;
    }

    .marketing-videos-filter-list {
        max-height: none;
    }

    .marketing-videos-row {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .marketing-videos .marketing-video-card-play {
        width: 50px !important;
        height: 50px !important;
    }

    .marketing-videos .marketing-video-card-play-icon {
        margin-left: 3px !important;
        border-top-width: 8px !important;
        border-bottom-width: 8px !important;
        border-left-width: 12px !important;
    }

    .marketing-videos .marketing-video-card-body {
        padding-top: 14px;
    }

    .marketing-videos .marketing-video-card-title {
        font-size: 17px;
        line-height: 1.3;
    }

    .marketing-videos .marketing-video-card-excerpt {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.5;
    }
}