/* =========================
   PROMTSUNO
========================= */

.promtsuno-wrap{
    margin:20px 0;
}

.promtsuno-title{
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.promtsuno-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.promtsuno-item{
    display:flex;
    gap:15px;
    padding:12px;
    border-radius:10px;
    background:#f5f7f9;
}

.promtsuno-item__left{
    width:220px;
    flex-shrink:0;
}

.promtsuno-item__right{
    flex:1;
}

.promtsuno-item__label{
    font-size:11px;
    color:#888;
    margin-bottom:4px;
    text-transform:uppercase;
}

.promtsuno-item__topic{
    font-weight:600;
    color:#111;
    line-height:1.3;
}

.promtsuno-item__prompt{
    color:#111;
    line-height:1.5;
    white-space:pre-wrap;
}

.promtsuno-item__bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    margin-top:8px;
}

.promtsuno-item__date{
    font-size:11px;
    color:#999;
}


/* =========================
   COPY BUTTON (Иконка)
========================= */













/* =========================
   ФОРМА
========================= */

.promtsuno-form-wrap{
    margin-top:20px;
}

.promtsuno-form-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
}

.promtsuno-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.promtsuno-field__label{
    font-size:12px;
    color:#666;
}

.promtsuno-input,
.promtsuno-textarea{
    width:100%;
    padding:8px;
    border:1px solid #ddd;
    border-radius:6px;
    font-size:13px;
}

.promtsuno-textarea{
    min-height:120px;
    resize:vertical;
}

.promtsuno-submit-btn{
    background:#1474b5;
    color:#fff;
    border:none;
    padding:10px;
    border-radius:8px;
    cursor:pointer;
}

.promtsuno-submit-btn:hover{
    background:#0f5f95;
}


/* =========================
   СООБЩЕНИЯ
========================= */

.promtsuno-msg{
    padding:10px;
    border-radius:6px;
    margin-bottom:10px;
    font-size:13px;
}

.promtsuno-msg--error{
    background:#ffe5e5;
    color:#b50000;
}

.promtsuno-msg--success{
    background:#e6f7ea;
    color:#0a7a2f;
}


/* =========================
   HONEYPOT
========================= */

.promtsuno-honeypot{
    display:none;
}


/* =========================
   МОБИЛКА
========================= */

@media (max-width:768px){

    .promtsuno-item{
        flex-direction:column;
    }

    .promtsuno-item__left{
        width:100%;
    }

    .promtsuno-input,
    .promtsuno-textarea{
        font-size:16px;
    }
}

.promtsuno-pagination{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:16px;
}

.promtsuno-pagination__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:36px;
    height:36px;
    padding:0 12px;
    border-radius:8px;
    background:#f1f3f5;
    color:#111;
    text-decoration:none;
    font-size:13px;
    transition:.18s ease;
}

.promtsuno-pagination__btn:hover{
    background:#e4e8ec;
}

.promtsuno-pagination__btn--active{
    background:#1474b5;
    color:#fff;
}

.promtsuno-last{
    padding:14px;
    border-radius:12px;
    background:#f5f7f9;
    margin:20px 0;
}

.promtsuno-last__label{
    font-size:11px;
    color:#1474b5;
    margin-bottom:6px;
    font-weight:700;
    text-transform:uppercase;
}

.promtsuno-last__topic{
    font-weight:600;
    margin-bottom:6px;
    color:#111;
}

.promtsuno-last__prompt{
    font-size:13px;
    line-height:1.5;
    color:#111;
}

.promtsuno-last__date{
    margin-top:8px;
    font-size:11px;
    color:#999;
}


.promtsuno-last-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.promtsuno-last{
    padding:14px;
    border-radius:12px;
    background:#f5f7f9;
    margin:20px 0;
    transition:transform .15s ease, box-shadow .15s ease;
}

.promtsuno-last-link:hover .promtsuno-last{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.promtsuno-last__label{
    font-size:11px;
    color:#1474b5;
    margin-bottom:6px;
    font-weight:700;
    text-transform:uppercase;
}

.promtsuno-last__topic{
    font-weight:600;
    margin-bottom:6px;
    color:#111;
}

.promtsuno-last__prompt{
    font-size:13px;
    line-height:1.5;
    color:#111;
}

.promtsuno-last__date{
    margin-top:8px;
    font-size:11px;
    color:#999;
}