			img.wp-post-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
}
h2.vtitle {
    position: absolute;
    bottom: 20px;
    font-size: calc(18px + 6 * ((100vw - 320px) / 680));
    width: 100%;
    text-align: center;
}
aside.videos {
    padding: 10px;
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.colicon:before {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4.25 4A2.25 2.25 0 0 0 2 6.25v2.5A2.25 2.25 0 0 0 4.25 11h2.5A2.25 2.25 0 0 0 9 8.75v-2.5A2.25 2.25 0 0 0 6.75 4zm7 1a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5zm0 3a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5zm-7 5A2.25 2.25 0 0 0 2 15.25v2.5A2.25 2.25 0 0 0 4.25 20h2.5A2.25 2.25 0 0 0 9 17.75v-2.5A2.25 2.25 0 0 0 6.75 13zm7 1a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5zm0 3a.75.75 0 0 0 0 1.5h7a.75.75 0 0 0 0-1.5z'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    display: block;
}
a:hover {
    text-decoration: underline;
}
.colicon {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

figure.aligncenter {
    text-align: center;
}
.slider-indicators {
	margin: 0 10px;
}

.slide-dot {
	flex:auto;
    width: 30px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px;
    padding: 0;
    cursor: pointer;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.slide-dot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    z-index: -1;
    transition: none;
    pointer-events: none;
}

.slide-dot.active{
	background-color: rgba(255, 255, 255, 0.2);
}
.slide-dot.active::before {
    animation: fillBackground 3s linear forwards;
}

@keyframes fillBackground {
    from {
        background-position: right bottom;
    }
    to {
        background-position: left bottom;
    }
}





.smaster-trending-keywords {
    display: flex
;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 5px;
    max-height: 300px;
    overflow-y: scroll;
    scrollbar-width: thin;
}
a.smaster-keyword {
    white-space: nowrap;
    background: #2b2d34;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    flex: auto;
    text-align: center;
}
a.smaster-keyword:hover {
    background: #3F51B5;
}
header.NoPosts{
    text-align: center;
    margin: 8px;
}