/* ========================================
   SIDEBAR HEADINGS
======================================== */

.sidebar h2,
.widget h2,
.ti-sidebar-title {
    background-color: #0f2027;

    color: #fff;

    padding: 10px 15px;

    text-align: center;

    font-size: 22px;
    font-weight: bold;

    border-top-right-radius: 80px;
    border-bottom-left-radius: 80px;
}

/* ========================================
   SIDEBAR WIDGET
======================================== */

.ti-sidebar-widget {
    margin-bottom: 25px;
}

/* ========================================
   LATEST POSTS WIDGET
======================================== */

.wp-block-latest-posts__list {
    margin: 0;
    padding: 0;

    list-style: none;
}

.wp-block-latest-posts__list li {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 12px;
    padding-bottom: 10px;

    border-bottom: 1px solid #e0e0e0;
}

/* Thumbnail */

.wp-block-latest-posts__featured-image {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    overflow: hidden;

    border-radius: 50%;
}

.wp-block-latest-posts__featured-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

/* Content */

.wp-block-latest-posts__list li a {
    flex: 1;

    color: #1a1a1a;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;

    overflow: hidden;

    display: -webkit-box;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Date */

.wp-block-latest-posts__post-date {
    display: block;

    margin-top: 2px;

    font-size: 12px;

    color: #777;
}