/* ===============================
   BLOQUE ÚLTIMOS MENSAJES FORO
   =============================== */

.psw-foro-ultimos {
    margin-top: 30px;
    margin-bottom: 10px;
}

.psw-foro-ultimos h2 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2f6c2f;
}

/* LISTA */
.psw-foro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ITEM */
.psw-foro-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.psw-foro-item:last-child {
    border-bottom: none;
}

/* ICONO FORO */
.psw-foro-icon {
    width: 96px;
    height: auto;
    flex-shrink: 0;
    border-radius: 6px;
}

/* TEXTO */
.psw-foro-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* TITULO */
.psw-foro-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #064e06;
}

.psw-foro-title:hover {
    text-decoration: underline;
}

/* META */
.psw-foro-meta {
    font-size: 12.5px;
    color: #6f7f6f;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .psw-foro-item {
        gap: 10px;
        padding: 8px 0;
    }

    .psw-foro-icon {
        width: 64px;
    }

    .psw-foro-title {
        font-size: 14px;
    }
}
.psw-foro-item {
    transition: background-color .2s ease;
}

.psw-foro-item:hover {
    background: rgba(255,255,255,0.35);
}
.psw-foro-icon {
    transition: transform .2s ease;
}

.psw-foro-item:hover .psw-foro-icon {
    transform: scale(1.05);
}
