﻿
.title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.title-group i {
    display: none;
}

.formula-group-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
    width: 100%;
}

.wrap-formula-group-item-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.formula-group-item-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.formula-group-item-title span {
   color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.formula-group-item-title img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
    
.formula-group-item-description {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.formula-group-item-description span {
   color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    align-self: stretch;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: max-height 0.3s ease;
}

.bloc-description .description-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* Limite à 3 lignes */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em; /* Ajustez selon votre style */
    max-height: calc(1.5em * 3); /* 3 lignes */
    transition: max-height 0.3s ease;
}

.bloc-description .more .toggle {
    cursor: pointer;
    color: var(--MAIN-COLOR);
    font-weight: 600;
    display: none; /* Masqué par défaut */
}

.bloc-description .more .toggle:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .title-group i {
        display: block;
        color: var(--Colors-BE-NOIR, #000);
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

}
