

a {
    color: #333333;
    text-decoration: none;
    transition: all 0.25s ease;
}

a:hover {
    color: #c96;
    /* Фирменный цвет темы Molla */
}
.title_blog {
    text-align: center;
    margin: 50px;
}
.hero-section.cart {
    width: 100%;
    /* min-height: calc(100vh - 89px); */
    width: 100%;
    min-height: 250px;
    background-image: url('/public/static/img/project_mumie/cart/bg_cart.webp');
    /* background-attachment: fixed; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    filter: grayscale(85);
}

.hero-section.cart:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(102, 101, 101, 0.5);
}

.container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

.breadcrumb-nav {
    background-color: #ffffff;
    padding: 25px 0;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #b5b5b5;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    padding: 0 10px;
    color: #ccc;
}

.breadcrumb-item.active {
    color: #333333;
}

/* Сетка страницы: Список постов (76%) и Сайдбар (24%) */
.main-layout {
    display: grid;
    grid-template-columns: 86% 14%;
    gap: 50px;
    align-items: start;
    padding-bottom: 80px;
}

/* ==========================================================================
   2. СПИСОК СТАТЕЙ (ГОРИЗОНТАЛЬНЫЕ КАРТОЧКИ)
   ========================================================================== */
.blog-list-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Сама карточка: картинка слева, текст справа */
.blog-list-item {
    display: grid;
    grid-template-columns: 46% 54%;
    gap: 30px;
    align-items: center;
}

.post-preview-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.post-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Специальная кнопка PLAY для видео-постов (как на макете) */
.video-post .video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.video-post:hover .video-play-btn {
    background: #ffffff;
}

.video-play-btn span {
    color: #333333;
    font-size: 16px;
    margin-left: 2px;
}

/* Блок с текстом поста */
.post-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    font-size: 13px;
    color: #999999;
    margin-bottom: 8px;
}

.meta-item a {
    color: #666666;
}

.meta-separator {
    margin: 0 8px;
    color: #e0e0e0;
}

.post-item-title {
    font-size: 26px;
    color: #333333;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.post-category {
    font-size: 13px;
    color: #999999;
    margin-bottom: 15px;
}

.post-category a {
    color: #c96;
}

.post-excerpt {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* Ссылка Continue Reading */
.read-more-link {
    font-size: 13px;
    font-weight: 500;
    color: #c96;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
}

.read-more-link:hover {
    border-bottom-color: #c96;
}



/* ==========================================================================
   4. МОБИЛЬНАЯ АДАПТИВНОСТЬ
   ========================================================================== */
@media (max-width: 992px) {
    .main-layout {
        grid-template-columns: 1fr;
        /* Сайдбар падает под посты */
        gap: 50px;
    }

    .blog-list-item {
        grid-template-columns: 1fr;
        /* Картинка поста становится сверху текста */
        gap: 20px;
    }
}

