    .presentation-wrapper {
       position: relative;
       overflow: hidden;
       max-height: 5200px;
       transition: max-height 0.8s ease-in-out;
    }

    .presentation-wrapper.collapsed {
       max-height: 110px;
    }

    .presentation-wrapper::after {
       content: "";
       position: absolute;
       bottom: 0;
       left: 0;
       width: 100%;
       height: 60px;
       background: linear-gradient(to bottom, transparent, var(--body-color, #ebeff1));
       pointer-events: none;
       opacity: 0;
       transition: opacity 0.5s;
    }

    .presentation-wrapper.collapsed::after {
       opacity: 1;
    }

    .btn-read-more {
       display: inline-block;
       margin-top: 15px;
       padding: 8px 20px;
       background-color: transparent;
       color: var(--color-segundario, #4e6b50);
       border: 2px solid var(--color-segundario, #4e6b50);
       border-radius: 6px;
       cursor: pointer;
       font-family: 'Montserrat-Bold', sans-serif;
       font-size: clamp(0.85rem, 1vw, 1rem);
       transition: all 0.3s;
    }

    .btn-read-more:hover {
       background-color: var(--color-segundario, #4e6b50);
       color: white;
    }


    .colorized {
       color: var(--color-segundario);
       margin-bottom: 10px;
       margin-top: 10px;
    }