/* search START */
.searchbox {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    gap: 32px;
    margin-bottom: 95px;
}

.searchbox__thumbnail {
    width: 40%;
    position: relative;
}

.searchbox__thumbnail .posted-on {
    position: absolute;
    display: block;
    padding: 7.8px 11.2px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    font-weight: 700;
    font-family: 'montserrat-bold',  arial, sans-serif;
    right: 11.2px;
    top: 11.2px;
    font-size: 11.2px;
}

.searchbox__thumbnail .posted-on a {
    color: white;
}

.searchbox__text {
    width: 60%;
}

.searchbox__text .entry-title {
    margin-top: 0;
    margin-bottom: 16px;
    line-height: 1.4;
}

.searchbox__text .entry-title a {
    color: #1d1d1b;
    line-height: 1.4;
    font-size: 24px;
}

.searchbox__thumbnail .post-thumbnail {
    position: relative;
    width: 100%;
    text-decoration: none;
}

.searchbox__thumbnail .post-thumbnail picture {
    width: 100%;
    height: 100%;
    display: block;
}

.searchbox__thumbnail .post-thumbnail picture img {
    background-size: cover;
    background-position: center center;
    object-fit: cover;
    height: 100%;
    max-height: 235px;
}



/* search STOP */