a {
    text-decoration: none;
}

p {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.toggle-icon::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

/* a:not(.collapsed) .toggle-icon::before {
    content: "\f107";
} */



/* .modal-content {
    height: 100vh;
} */

.modal-body {
    flex: 1;
}

.w-90 {
    width: 90% !important;
}

hr {
    margin: .5rem 0;
}

.text-justify {
    text-align: justify;
    hyphens: auto;
}

b,
strong {
    font-weight: 600;
}

.collapse {
    padding-bottom: 1rem;
}

.btn-link {
    padding-top: 0 !important;
}

.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}

.stat {
    text-align: center;
    padding: 0 40px;
    position: relative;
}

/* Bordo separatore */
.stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #ddd;
}

.counter {
    font-size: 48px;
    font-weight: 700;
     
}

.label {
    margin-top: 10px;
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
    }

    .stat:not(:last-child)::after {
        display: none;
    }
}

