
:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --text-color: #333;
    --text-muted: #7f8c8d;
    --bg-light: #f9fbfd;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --card-hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-section {
    padding: 30px 0;
    background-color: #fff;
}

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

.catalogue-item {
    background: transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.catalogue-image {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    margin-bottom: 15px;
}

.catalogue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalogue-date {
    font-size: 16px;
    color: #888;
    background: #f5f5f5;
    padding: 4px 10px;
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
}

.catalogue-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.catalogue-download {
    font-size: 16px;
    color: #333;
    text-decoration: underline;
    font-weight: 500;
}

.catalogue-download:hover {
    color: #000;
}

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

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