

.content p {
    position: relative;
    line-height: 1.3;
}

.content {
    max-height: 76px; /* Adjust the initial max-height as needed */
    overflow: hidden;
    transition: max-height 0.1s ease; /* Add smooth transition effect */
}

.show-more {
    cursor: pointer;
    color: #607186;
    display: block;
}

.excerpt-hidden:after {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    height: 62px;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3730085784313726) 46%,
            rgba(255, 255, 255, 1) 100%
    );
}

