/* =====================================================
   СТИЛИЗАЦИЯ СЕТКИ ПОСТОВ CBG-GRID
   ===================================================== */

/* Обёртка сетки */
.cbg-grid-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Основная сетка */
.cbg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Карточка поста */
.cbg-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.cbg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cbg-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* =====================================================
   ИЗОБРАЖЕНИЕ - одинаковая высота
   ===================================================== */
.cbg-image {
    width: 100%;
    height: 220px; /* Фиксированная высота изображения */
    overflow: hidden;
    flex-shrink: 0;
}

.cbg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cbg-card:hover .cbg-image img {
    transform: scale(1.05);
}

/* =====================================================
   КОНТЕНТ КАРТОЧКИ
   ===================================================== */
.cbg-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex: 1;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}

/* =====================================================
   ЗАГОЛОВОК - максимум 2 строки
   ===================================================== */
.cbg-content h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    color: #272727;
    
    /* Обрезка до 2 строк */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Fallback для старых браузеров */
    max-height: 2.8em; /* 2 строки × 1.4 line-height */
}

/* =====================================================
   ОТРЫВОК - максимум 4 строки
   ===================================================== */
.cbg-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    flex: 1;
    
    /* Обрезка до 4 строк */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    /* Fallback для старых браузеров */
    max-height: 6.4em; /* 4 строки × 1.6 line-height */
}

/* =====================================================
   АДАПТИВНОСТЬ
   ===================================================== */

/* TABLET: 2 колонки (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .cbg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cbg-image {
        height: 200px;
    }
    
    .cbg-content {
         padding: 0 18px 18px 18px;
    }
    
    .cbg-content h3 {
        font-size: 17px;
    }
}

/* MOBILE: 1 колонка (≤767px) */
@media screen and (max-width: 767px) {
    .cbg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cbg-image {
        height: 200px;
    }
    
    .cbg-content {
    padding: 0 16px 16px 16px;
    }
    
    .cbg-content h3 {
        font-size: 16px;
    }
    
    .cbg-excerpt {
        font-size: 13px;
    }
}

/* =====================================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ (опционально)
   ===================================================== */

/* Если есть кнопка "Читать далее" */
.cbg-content .read-more,
.cbg-content .cbg-read-more {
    margin-top: auto;
    padding-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #4ebd3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cbg-content .read-more:hover,
.cbg-content .cbg-read-more:hover {
    color: #408d34;
}

/* Скроллбар для обрезанного текста (если нужен) */
.cbg-excerpt::-webkit-scrollbar {
    display: none;
}

/* =====================================================
   ДАТА ЗАПИСИ
   ===================================================== */
.cbg-date {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
	background-color: #4dbd3b;
    margin-bottom: 10px;
	padding: 2px 5px 2px 5px !important;
	line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* =====================================================
   ЗАГОЛОВОК (обновлённый)
   ===================================================== */
.cbg-title {
    margin: 0 0 12px 0;
    font-size: 20px !important;
    line-height: 1.3;
    font-weight: 600;
    color: #272727;
    
    /* Обрезка до 2 строк */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    
    max-height: 2.8em;
}

/* =====================================================
   ССЫЛКА НА КАРТОЧКУ (убираем подчёркивание)
   ===================================================== */
.cbg-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.cbg-card-link:hover .cbg-title {
    color: #4ebd3d;
    transition: color 0.3s ease;
}

/* =====================================================
   КНОПКА "ЧИТАТЬ ПОЛНОСТЬЮ"
   ===================================================== */
.cbg-read-more-btn {
    display: block;
    padding: 10px 20px;
    background: #ffffff; 
    color: #4dbd3b !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 1px solid #f0f0f0;
	align-self:flex-start;
	border: 2px solid #4dbd3b;
	border-radius:8px;
	margin-left:20px;
	margin-bottom:20px;
}

.cbg-read-more-btn:hover {
    background: linear-gradient(120deg, #408d34, #4ebd3d);
    color: #fff !important;
}

/* =====================================================
   ОБНОВЛЁННАЯ КАРТОЧКА
   ===================================================== */
.cbg-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.cbg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   АДАПТИВНОСТЬ
   ===================================================== */
@media screen and (max-width: 1024px) {
    .cbg-title {
        font-size: 17px;
    }
    
    .cbg-date {
        font-size: 12px;
    }
    
    .cbg-read-more-btn {
        padding: 12px 16px;
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {
    .cbg-title {
        font-size: 16px;
    }
    
    .cbg-read-more-btn {
        padding: 13px 16px;
        font-size: 13px;
    }
}

/* =====================================================
   КНОПКА "ЗАГРУЗИТЬ ЕЩЁ"
   ===================================================== */
.cbg-load-more {
    display: inline-block;
    align-self: flex-start;
    flex: 0 0 auto; /* Не растягиваться! */
    flex-shrink: 0;
    flex-grow: 0;
    height: auto !important;
    min-height: auto !important;
    margin: 40px auto 0;
    padding: 14px 35px;
    background: linear-gradient(120deg, #4ebd3d, #408d34);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(78, 189, 61, 0.3);
}

.cbg-load-more:hover {
    background: linear-gradient(120deg, #408d34, #4ebd3d);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(78, 189, 61, 0.4);
}

.cbg-load-more:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(78, 189, 61, 0.3);
}

/* Центрирование кнопки под сеткой */
.cbg-grid-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cbg-grid {
    width: 100%;
}

/* =====================================================
   АДАПТИВНОСТЬ
   ===================================================== */
@media screen and (max-width: 1024px) {
    .cbg-read-more-btn {
        margin: 0 18px 18px 18px;
        padding: 9px 18px;
        font-size: 13px;
    }
}

@media screen and (max-width: 767px) {
    .cbg-read-more-btn {
        margin: 0 16px 16px 16px;
        padding: 9px 16px;
        font-size: 13px;
    }
}
