.description-content {
    max-height: 80px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-content.expanded {
    max-height: none;
}

.description-content p {
    word-break: break-word;
    overflow-wrap: break-word;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

.description-toggle {
    width: 100%;
    padding: 5px 0;
    margin-top: 5px;
    color: #666;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    display: none; /* По умолчанию скрыта */
    background: none;
    border: none;
    cursor: pointer;
}

.description-toggle:hover {
    opacity: 1;
}

.description-toggle .uk-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.description-toggle.expanded .uk-icon {
    transform: rotate(180deg);
}

/* Добавим стили для анимации */
.description-content {
    transition-property: max-height, opacity;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}

.description-content.animating {
    overflow: hidden;
}