/*
Theme Name: Blogcay
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/* Khung bao quanh mô tả danh mục */
.term-description {
    position: relative;
    max-height: 200px; /* Chiều cao khi chưa bấm nút */
    overflow: hidden;
    padding: 15px;
    border: 1px dashed #27ae60;
    margin-bottom: 20px;
    transition: max-height 0.5s ease;
}

/* Hiệu ứng mờ dần */
.term-description::before {
    content: "";
    width: 100%;
    height: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, #fff);
    z-index: 1;
}

/* Khi mở rộng */
.term-description.full-height {
    max-height: 5000px; 
}
.term-description.full-height::before {
    display: none;
}

/* Nút bấm Xem thêm */
.btn-readmore-auto {
    display: block;
    text-align: center;
    padding: 10px;
    color: #27ae60;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #27ae60;
    width: fit-content;
    margin: 0 auto 20px;
    border-radius: 5px;
}