/*
 Theme Name:   Astra Child
 Theme URI:    http://yourwebsite.com/astra-child/ (Optional: Your website or a page about the theme)
 Description:  A child theme for the Astra WordPress Theme.
 Author:       Your Name
 Author URI:   http://yourwebsite.com (Optional: Your website)
 Template:     astra
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  astra-child
*/

/* Theme customization starts here
/* Add to your child theme's style.css or the inline CSS variable */

.activity-content {
    padding: 15px; /* Slightly reduce padding */
}

.activity-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;  /* Show 3 lines of text */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 0; /* Important for line-clamp to not be overridden by flex */
    margin-bottom: 10px; /* Adjust space before the button */
    min-height: 54px; /* Approx 3 lines * 18px line-height, adjust based on your font & line-height */
                       /* This helps maintain a more consistent card height even with shorter excerpts */
}

.activity-meta {
    margin-top: 8px;
    margin-bottom: 10px;
}
------------------------------------------------------- */