.description-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.description-content {
    transition: max-height 0.5s ease;
    overflow: hidden;
}

.description-content.collapsed {
    max-height: 150px;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 1)
    );
    pointer-events: none;
}

.gradient-overlay.hidden {
    display: none;
}

.read-more-btn {
    display: block;
    width: 100%;
    background: none;
    border: none;
    text-align: center;
    color: #732753;
    font-weight: 600;
    padding: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.read-more-btn .less-text,
.read-more-btn .less-icon {
    display: none;
}

.read-more-btn.expanded .more-text,
.read-more-btn.expanded .more-icon {
    display: none;
}

.read-more-btn.expanded .less-text,
.read-more-btn.expanded .less-icon {
    display: inline;
}
