/*
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.1776933137
Updated: 2026-04-23 08:32:17

*/

.custom-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.custom-post-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.custom-post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 16px;
}

.card-category {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.card-content h3 {
    font-size: 18px;
    margin: 8px 0;
}

.card-content h3 a {
    text-decoration: none;
    color: #333;
}

.card-date {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 8px;
}

.card-excerpt {
    font-size: 14px;
    color: #555;
}

.card-link {
    display: inline-block;
    margin-top: 12px;
    color: #0073aa;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 768px) {
    .custom-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .custom-post-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UMAMI POST GRID ===== */

/* Filter Tabs */
.umami-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
}
.umami-btn {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 18px;
    background: transparent;
    color: #0D0D0D;
    border: 1px solid #E8D9C4;
    text-decoration: none;
    transition: all 0.2s ease;
}
.umami-btn:hover {
    border-color: #C4A882;
    color: #0D0D0D;
}
.umami-btn.active {
    background: #0D0D0D;
    color: #F5F2EE;
    border-color: #0D0D0D;
}
.umami-count {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.1em;
    margin-left: 8px;
}

/* Grid — 2 columns */
.umami-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 40px;
}

/* Card */
.umami-card {
    background: #0D0D0D;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.umami-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* Image */
.umami-card-img {
    display: block;
    overflow: hidden;
}
.umami-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.umami-card:hover .umami-card-img img {
    transform: scale(1.04);
}
.umami-card-no-img {
    width: 100%;
    height: 220px;
    background: #1A1A18;
}

/* Card Body */
.umami-card-body {
    padding: 18px 20px 22px;
}

/* Category Tags */
.umami-card-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}
.umami-tag {
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid rgba(196,168,130,0.25);
    color: rgba(196,168,130,0.55);
    text-decoration: none;
    transition: border-color 0.2s;
}
.umami-tag:hover {
    border-color: rgba(196,168,130,0.6);
    color: rgba(196,168,130,0.8);
}

/* Title */
.umami-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 10px;
}
.umami-card-title a {
    color: #F5F2EE;
    text-decoration: none;
    transition: opacity 0.2s;
}
.umami-card-title a:hover {
    opacity: 0.75;
}

/* Excerpt */
.umami-card-excerpt {
    font-size: 12px;
    color: rgba(245,242,238,0.42);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 16px;
}

/* Footer */
.umami-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.umami-date {
    font-size: 10px;
    color: rgba(196,168,130,0.45);
    letter-spacing: 0.1em;
}
.umami-read-more {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C4A882;
    text-decoration: none;
    transition: opacity 0.2s;
}
.umami-read-more:hover {
    opacity: 0.75;
}

/* Pagination */
.umami-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 40px;
}
.umami-page {
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 8px 16px;
    border: 1px solid #E8D9C4;
    color: #0D0D0D;
    text-decoration: none;
    transition: all 0.2s;
}
.umami-page:hover {
    border-color: #C4A882;
}
.umami-page.active {
    background: #0D0D0D;
    color: #F5F2EE;
    border-color: #0D0D0D;
}

/* No posts */
.umami-no-posts {
    font-size: 14px;
    color: #888;
    padding: 60px;
    text-align: center;
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
    .umami-grid {
        grid-template-columns: 1fr;
    }
}

