
.fltl-wrap {
    margin: 0.9em 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.fltl-wrap .inner {
    padding: 0;
}

.fltl-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.fltl-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #d8e1e8;
    border-radius: 4px;
    background: #f6f3eb;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: none;
}

.fltl-card-header {
    margin-bottom: 6px;
}

.fltl-title {
    margin: 0 0 4px;
    font-size: .95em;
    line-height: 1.3;
}

.fltl-title a {
    text-decoration: none;
}

.fltl-date {
    font-size: .78em;
    color: #6b7c8d;
}

.fltl-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: .82em;
    color: #4f6478;
}

.fltl-avatar img,
.fltl-avatar .avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
}

.fltl-author {
    min-width: 0;
}

.fltl-replies {
    margin-left: auto;
    padding: 1px 6px;
    border-radius: 10px;
    background: #eef3f7;
    color: #3f556b;
    font-size: .78em;
    line-height: 1.4;
}

.fltl-excerpt {
    color: #33485c;
    line-height: 1.4;
    margin-bottom: 10px;
    font-size: .9em;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fltl-actions {
    margin-top: auto;
}

.fltl-readmore,
.fltl-moretopics {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid #b9cddd;
    background: linear-gradient(to bottom, #fdfefe 0%, #e8f1f8 100%);
    color: #2e587b;
    font-size: .82em;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
    transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.fltl-readmore:hover,
.fltl-moretopics:hover {
    background: linear-gradient(to bottom, #ffffff 0%, #dcebf6 100%);
    border-color: #9cb9d0;
    color: #204867;
    text-decoration: none;
}

.fltl-readmore:focus,
.fltl-moretopics:focus {
    outline: none;
    border-color: #7ea6c8;
}

.fltl-controls {
    margin-top: 10px;
    text-align: center;
}

.fltl-controls .button {
    min-width: 170px;
}

.rtbutton.is-loading {
    opacity: .7;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .fltl-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .fltl-grid {
        grid-template-columns: 1fr;
    }

    .fltl-controls .button {
        width: 100%;
        min-width: 0;
    }
}
