/* ======================================================
   ZNTECH Reveal Text v1.0
   ====================================================== */

.zn-reveal {
    position: relative;
    margin:0;
}

.zn-reveal-content {
    will-change: max-height;
}

.zn-reveal-title {
    margin-bottom: 10px;
}

/* Контент */
.zn-reveal-content {
    font-size:16px;
    color:#47557C;
    position: relative;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

/* Внутренний текст */
.zn-reveal-inner {
    line-height: 1.5;
}

/* Градиент */
.zn-reveal-gradient {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.8) 70%,
        #ffffff 100%
    );
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Скрытие градиента */
.zn-reveal.expanded .zn-reveal-gradient {
    opacity: 0;
}

/* Кнопка */
.zn-reveal-toggle {
    
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Стрелка */
.zn-reveal-arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-right: 2px solid #1c2c4c;
    border-bottom: 2px solid #1c2c4c;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.zn-reveal-toggle:hover {
    background:transparent;
}

.zn-reveal-toggle:active {
    background:transparent;
}

.zn-reveal-toggle:focus {
    background:transparent;
}

/* Активное состояние */
.zn-reveal.expanded .zn-reveal-arrow {
    transform: rotate(-135deg);
}

/* Адаптив */
@media (max-width: 768px) {
    .zn-reveal-content {
        font-size: 16px;
    }
}