/*
Theme Name: WpEstate Child
Theme URI: https://www.bizquicksolutions.com/
Description: Child theme for WpEstate used for BARON / BIZQUICK customizations.
Author: Bizquick
Author URI: https://www.bizquicksolutions.com/
Template: wpestate
Version: 1.0.0
Text Domain: wpestate-child
*/

/* BARON / BIZQUICK child-theme custom CSS starts below */
/* =========================================================
   BARON INSIGHTS BLOG GRID
   ========================================================= */

.baron-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0;
}

.baron-insight-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.baron-insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(11, 18, 32, 0.14);
}

.baron-insight-image {
    display: block;
    width: 100%;
    overflow: hidden;
}

.baron-insight-image img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.baron-insight-content {
    padding: 24px;
}

.baron-insight-date {
    color: #D8B46A;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.baron-insight-title {
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
}

.baron-insight-title a {
    color: #1A2233;
    text-decoration: none;
}

.baron-insight-title a:hover {
    color: #D8B46A;
}

.baron-insight-excerpt {
    color: #5F6773;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 18px;
}

.baron-insight-readmore {
    color: #D8B46A;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.baron-insight-readmore:hover {
    color: #1A2233;
}

/* Tablet */
@media (max-width: 1024px) {
    .baron-insights-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .baron-insights-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .baron-insight-image img {
        height: 220px;
    }
}