/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.13.0.1778397705
Updated: 2026-05-10 07:21:45

*/
/* Home blog section */
/* Home blog card layout */
.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
	gap: 20px;	
}

.home-blog-item {
    background: #f3f1fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
	box-shadow: 0px 6px 15px -2px rgba(16, 24, 40, 0.05);
	line-height: 1.65;
}

/* Image */
.home-blog-thumb img,
.home-blog-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

/* Content area */
.home-blog-item h3,
.home-blog-item .post-date,
.home-blog-item p {
padding-left: 24px !important;
padding-right: 24px !important;
}

/* Title */
.home-blog-item h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 34px;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.home-blog-item h3 a {
    color: #0f172a;
    text-decoration: none !important;
    transition: color 0.25s ease;
}

.home-blog-item h3 a:hover {
    color: #7C3AED;
}

/* Date */
.home-blog-item .post-date {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #7C3AED;
    margin-bottom: 22px;
}

/* Excerpt */
.home-blog-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
    margin: 0;
    padding-bottom: 42px;
}

/* Tablet */
@media (max-width: 1024px) {
    .home-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .home-blog-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-blog-item h3,
    .home-blog-item .post-date,
    .home-blog-item p {
        padding-left: 24px;
        padding-right: 24px;
    }

}