/**
* Theme Name: Ahura Child
* Description: This is a child theme of Ahura, generated by MihanWP.
* Author: MihanWP
* Template: ahura
*/
                 .custom-category-description-wrapper {
                    position: relative;
                    margin: 0 auto;
                    padding: 24px;
                    border: 1px solid #00000014;
                    border-radius: 20px;
                    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.08);
                }
                .custom-category-description {
                    height: 250px;
                    overflow: hidden;
                    position: relative;
                    color :#231F20;
                    line-height: 26px;
                    text-align:justify;
                    margin-top:8px;
                    margin-bottom:8px;
                }
                .custom-category-description::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    height: 60px;
                    background: linear-gradient(to top, #fff, rgba(255,255,255,0));
                    pointer-events: none;
                    transition: opacity 0.3s ease;
                }
                .custom-category-description.expanded::after {
                    opacity: 0;
                }
                .toggle-description-btn {
                    display: block;
                    margin: 10px auto 0;
                    padding: 8px 20px;
                    cursor: pointer;
                    background: #f05a22;
                    color: #fff;
                    border: none;
                    border-radius: 5px;
                    font-size: 14px;
                }