﻿.search-overlay-item {
    border-bottom: 1px solid var(--color-soft-orange);
}

.search-overlay-item__top {
    display: flex;
    justify-content: space-between;
}

.search-overlay-item__area {
    background-color: var(--color-blue3);
    color: var(--color-white);
    padding: 5px 10px;
    font-weight: 500;
    font-size: 12px;
}

.PInvestidor-Screen .search-overlay-item__area,
.layout:has(.layout-inner-pinv) .search-overlay-item__area {
    background-color: var(--color-green);
}

.search-overlay-item__date {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: var(--color-grey2);
}

.PInvestidor-Screen .search-overlay-item__date,
.layout:has(.layout-inner-pinv) .search-overlay-item__date {
    color: var(--color-green);
}

.search-overlay-item__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: var(--color-primary);
    margin-top: 12px;
}

.search-overlay-item__content-container {
    padding: 20px;
    position: relative;
}

.search-overlay-item__content {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    max-height: 40px;
    color: var(--color-black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.search-overlay-item__content-container:not(:has(.search-overlay-item__content:empty))::before {
    content: "";
    width: 1px; 
    height: calc(100% - 30px);
    position: absolute;
    left: 0;
    top: 10px;
    background-color: var(--color-light-grey);
}

