/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
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.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.7.1777907419
Updated: 2026-05-04 17:10:19

*/

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.catalogue-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.catalogue-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f3f3f3;
    overflow: hidden;
}

.catalogue-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalogue-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.catalogue-card__title {
    margin: 0 0 12px;
    font-size: 22px;
}

.catalogue-card__description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.catalogue-card__cta {
    text-align: center;
    padding: 12px 22px;
    background: #006eb6;
    color: #fff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.catalogue-card__cta:hover {
    background: #004f86;
    color: #fff;
}

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

@media (max-width: 575px) {
    .catalogue-grid {
        grid-template-columns: 1fr;
    }
}