.container-bot {
    width: 92%;
    max-width: 500px;
    box-sizing: border-box;
    padding: 4px 4px 60px 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.item-bot {
    width: calc(50% - 4px);
    aspect-ratio: 3/4;
    background-color: #ffffff;
    box-sizing: border-box;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
    padding: 6px 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

/* bot content */

.item-bot .container-bot-picture,
.item-bot .container-bot-picture img {
    width: 100%;
    border: none;
    border-radius: 4px;
}

.item-bot .container-bot-picture {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}

.item-bot .container-bot-picture img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.item-bot .status-bot {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 15px;
    border: none;
    border-radius: 0px 4px 0px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    overflow: hidden;
}

.item-bot .status-bot.on {
    background-color: rgb(255, 255, 255);
    color: #439EF1;
}

.item-bot .status-bot.off {
    background-color: rgb(255, 255, 255);
    color: #f14343;
}

.item-bot .bot-title,
.item-bot .bot-description {
    overflow: hidden;
}

.item-bot .bot-title {
    font-size: 18px;
    font-weight: 500;
    color: #555555;
    width: 100%;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 22px;
    max-height: 44px;
    white-space: normal;
    word-break: break-word;
}

.item-bot .bot-description {
    width: 100%;
    height: 62px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: #555555;
}