.img-gallery-full-z9x {
    width: 100%;
    background: #1a1a1a;
}

.img-item-z9x {
    width: 100%;
    border-bottom: 1px solid #333;
}

.img-first-z9x img {
    width: 100%;
    height: auto;
    display: block;
}

.img-header-z9x {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #1a1a1a;
    cursor: pointer;
}

.img-header-z9x:hover {
    background: #252525;
}

.img-title-z9x {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.img-btn-z9x {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #4CAF50;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.img-btn-z9x:hover {
    background: #45a049;
}

.img-btn-z9x.active-z9x {
    transform: rotate(45deg);
    background: #f44336;
}

.img-content-z9x {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.img-content-z9x.open-z9x {
max-height: none;
}

.img-content-z9x img {
    width: 100%;
    height: auto;
    display: block;
}

.text-block-simple-w7k {
    width: 100%;
    padding: 10px 10px;
    text-align: center;
    margin: 5px auto 0 auto;
    font-size: clamp(35px, 2.8vw, 45px);
    line-height: 1.5;
    max-width: 1600px;
}

/* Мобильные */
@media (max-width: 780px) {
    .text-block-simple-w7k {
        padding: 5px 5px;
        line-height: 1.4;
        font-size: clamp(16px, 2.8vw, 28px);
    }

}