/* --- 1. ЕДИНЫЙ РАЗМЕР ПРЕВЬЮ (388x269) --- */
.postlist .item .image, 
.postlis .item .image,
.view-id-stranicy_videobloga .sale .image {
    width: 100% !important;
    height: 270px !important; 
    min-height: 270px !important; /* Добавили, чтобы блок не схлопывался */
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    background-color: #f0f0f0 !important;
}

/* Фикс для тега img внутри */
.postlist .item .image img,
.postlis .item .image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* --- 2. ИКОНКА PLAY (Точно по центру) --- */
.postlist .item .image::after,
.postlis .item .image::after,
.view-id-stranicy_videobloga .sale .image::after,
.field--name-field-media-oembed-video:not(:has(iframe))::after {
    content: '';
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 68px;
    height: 48px;
    background-color: rgba(255, 0, 0, 0.9);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    border-radius: 12px;
    z-index: 10;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Эффект наведения */
a:hover .image::after {
    background-color: #ff0000;
    transform: translate(-50%, -50%) scale(1.1) !important;
}

/* --- 3. ЗОЛОТАЯ НАВИГАЦИЯ --- */
.pagination-wrapper.pager, .views-infinite-scroll-pager {
    text-align: center;
    margin: 40px 0 !important;
    clear: both;
}

.pager__item a.page-link, 
.pager__item.active span.page-link,
.views-infinite-scroll-pager a.button {
    background: #c5a67c !important; /* Твое золото */
    color: #fff !important;
    padding: 12px 35px !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.pager__item.active span.page-link { 
    background: #333 !important; 
}

/* Убираем иконку с плейлистов */
.playlists .image::after {
    display: none !important;
}