.elementor-645 .elementor-element.elementor-element-6ef2b24{--display:flex;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}@media(min-width:768px){.elementor-645 .elementor-element.elementor-element-6ef2b24{--content-width:1440px;}}/* Start custom CSS for container, class: .elementor-element-6ef2b24 *//* ---------- WPZOOM Properties Grid ---------- */
.wpz-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; /* space between cards */
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
    .wpz-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .wpz-grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Card container */
.post-grid-inner {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* ensures all cards stretch to same height */
}

/* Ensure all cards equal height */
.wpz-grid-container > article {
    display: flex;
    flex-direction: column;
}

/* Image styling */
.post-grid-thumbnail img {
    width: 100%;
    height: 220px; /* fixed uniform height */
    object-fit: cover;
    display: block;
}

/* Text container */
.post-grid-text-wrap {
    padding: 20px;
    flex-grow: 1; /* stretch to fill card height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Card title */
.post-grid-text-wrap h3.title {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0B1F2A;
    line-height: 1.3;
}

/* Read More / CTA Button */
.post-grid-text-wrap .read-more-btn {
    font-family: 'Inter', Helvetica, sans-serif;
    font-size: 14px;
    color: #ffffff !important;           /* Button text white */
    background-color: #0B1F2A; /* Navy button background */
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

/* Hover effect */
.post-grid-text-wrap .read-more-btn:hover {
    background-color: #081826; /* slightly darker navy on hover */
}

/* Section padding */
.elementor-element-ab0a746 {
    padding: 60px 20px;
}/* End custom CSS */