/* Wrapper */
.aco-proj-wrap {
    width: 100%;
    padding: 10px 0 24px;
}

/* ===== Filtres ===== */
.aco-proj-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.aco-proj-filter {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #374151;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background .2s, color .2s, border-color .2s;
	font-family: "Montserrat", Sans-serif;
}

.aco-proj-filter:hover {
    border-color: #36bfe0;
    border-bottom: 1px solid #36bfe0 !important;
	color: #36bfe0;
	background: white;
}

.aco-proj-filter.is-active {
    background: #36bfe0;
    color: #fff;
    border-color: #36bfe0;
}

/* ===== Grille ===== */
.aco-proj-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== Carte ===== */
.aco-proj-card {
    position: relative;
    background: #fff;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: opacity .25s ease, transform .25s ease;
	border-right: 1px solid #e4e7ea !important;
    border-bottom: 1px solid #e4e7ea !important;
    border-left: 1px solid #e4e7ea !important;
}

.aco-proj-card__body {
    flex: 1;
    min-height: 0;
    padding: 0 28px;
}

.aco-proj-card__block {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.55;
    color: #4A4E51;
	font-family: "Montserrat", Sans-serif;
	font-weight: 400;
}

.aco-proj-card__block:last-child {
    margin-bottom: 20px;
}

.aco-proj-card__label {
    display: inline;
    font-weight: 700;
    color: #1f2937;
    margin-right: 4px;
}

.aco-proj-card__value {
    color: #4b5563;
}

.aco-proj-card__text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #4b5563;
    margin-top: 4px;
}

.aco-proj-card__text p {
    margin: 0 0 6px;
}

.aco-proj-card__text p:last-child {
    margin-bottom: 0;
}

.aco-proj-card__list {
    margin: 6px 0 0;
    padding-left: 20px;
    color: #4b5563;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aco-proj-card__list li {
    margin-bottom: 4px;
}

.aco-proj-card__list li:last-child {
    margin-bottom: 0;
}

/* Réajustement marges titre et badge */
.aco-proj-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 28px 18px;
}

/* Séparateur reste tout en bas */
.aco-proj-card__sep {
    height: 1px;
    background: #e5e7eb;
    margin: 0 28px;
}

/* Liseré coloré en haut */
.aco-proj-card::before {
    content: "";
    display: block;
    height: 3px;
    background: var(--lm, #36bfe0);
}

.aco-proj-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px -24px rgba(20, 60, 75, 0.25);
}

/* Badge secteur */
.aco-proj-card__badge {
    color: #36BFE0;
    font-weight: 500;
    font-size: 14px;
    border-radius: 2px;
	padding: 28px 28px 20px 28px;
    align-self: flex-start;
	text-transform: uppercase;
	font-family: "Montserrat", Sans-serif;
	letter-spacing: 1.6px;
}

.aco-proj-card__title {
    font-size: 22px;
    color: #1f2937;
    line-height: 1.3;
    margin: 0 28px 18px;
	font-family: "Montserrat", Sans-serif;
    font-weight: 700;
    color: #434546;
}

.aco-proj-card__env {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.55;
    margin: 0 28px 24px;
}

.aco-proj-card__env strong {
    color: #1f2937;
    font-weight: 700;
}

.aco-proj-card__sep {
    height: 1px;
    background: #e5e7eb;
    margin: auto 28px 0;  /* pousse le footer en bas */
}

.aco-proj-card__line {
    color: var(--lm, #36bfe0);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 20px 28px 24px;
	font-family: "Montserrat", Sans-serif;
}

@media (max-width: 640px) {
    .aco-proj-card__block {
        font-size: 13px;
    }

    .aco-proj-card__text {
        -webkit-line-clamp: 5;
    }

    .aco-proj-card__list {
        -webkit-line-clamp: 6;
    }
}

/* État masqué par le filtre */
.aco-proj-card.is-hidden {
    display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .aco-proj-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .aco-proj-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .aco-proj-filters {
        gap: 8px;
    }

    .aco-proj-filter {
        padding: 10px 14px;
        font-size: 12px;
    }

    .aco-proj-card__title {
        font-size: 18px;
    }
}