.grntn-realisations-filters {
    max-width: 1440px;
    margin: 0 auto 1.5rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .grntn-realisations-filters {
        flex-direction: column;
        padding: 0 .75rem;
        gap: .5rem;
    }

    .grntn-realisations-filters .grntn-filter-btn {
        scroll-snap-align: center;
        white-space: nowrap;
    }

    .grntn-realisations-filters::-webkit-scrollbar {
        height: 6px;
    }
}

.grntn-filter-btn {
    border: 1px solid #57A716;
    border-radius: 999px;
    padding: .4rem .9rem;
    font-size: .95rem;
    background: #fff;
    color: #57A716;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.grntn-filter-btn[aria-pressed="true"] {
    background: #57A716;
    color: #fff;
}

.grntn-realisations-container {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
    max-width: 1440px;
    margin: 0 auto;
}

@media screen and (max-width : 1024px) {
    .grntn-realisations-container {
        grid-template-columns: 1fr;
    }
}

.grntn-realisations-card {
    background-color: #F8F8F8;
    padding: 2rem;
    border-radius: 24px;
}

.grntn-realisations-card--tag {
    padding: 0.2rem 1rem;
    margin-bottom: 1rem;
    width: max-content;
    border-radius: 6px;
}

.grntn-realisations-card--tag_green {
    color: #57A716;
    background-color: #E9FEE3;
}

.grntn-realisations-card--tag_blue {
    color: #0085B1;
    background-color: #E7F9FF;
}

.grntn-realisations-card--tag_purple {
    color: #9E2063;
    background-color: #FFEFF8;
}

.grntn-realisations-card--tag_default {
    color: gray;
    background-color: white;
}

.grntn-realisations-card h2 {
    font-size: 24px;
    color: black;
    font-weight: 600;
    margin-bottom: 1rem;
}

.grntn-realisations-card span {
    font-weight: 600;
}

.grntn-realisations-card img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
}

.is-hidden {
    display: none !important;
}