/* Стили для виджета рандомных инструментов */
.penci-random-tools-widget {
    margin: 0;
    padding: 0;
}

.penci-tools-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.penci-tool-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ececec;
}

.penci-tool-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.penci-tool-link {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.penci-tool-link:hover {
    opacity: 0.8;
}

.penci-tool-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.penci-tool-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.penci-tool-content {
    flex: 1;
    min-width: 0;
}

.penci-tool-title {
    margin: 0 0 5px 0;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.4;
    color: #313131;
}

.penci-tool-category {
    display: inline-block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Адаптив для мобильных */
@media only screen and (max-width: 650px) {
    .penci-tool-thumb {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    
    .penci-tool-title {
        font-size: 13px;
    }
}