/**
 * Theme Name:     Bada Capital
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   bada-capital
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */
.custom-post-loop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.post-loop-card {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.post-loop-overlay {
    width: 100%;
    padding: 30px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );
    color: #fff;
}

.post-category {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.post-loop-title {
    color: #fff;
    margin: 0 0 20px;
    font-size: 24px;
}

.post-read-more {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.post-read-more:hover {
    background: #000;
    color: #fff;
}

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