.lit-feed {
    max-width: 720px;
    margin: 0 auto;
    display: grid;
    gap: 1.35rem;
}
.community-feed .lit-feed {
    max-width: none;
    margin: 0;
}

.event-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}
.event-list-item {
    display: grid;
    grid-template-columns: 11rem minmax(0, 1fr);
    gap: 1rem 1.6rem;
    align-items: start;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    color: inherit;
    text-decoration: none;
}
.event-list-item time {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
    padding-top: .2rem;
}
.event-list-item h4 {
    margin: 0 0 .35rem;
    font-size: 1.25rem;
    color: var(--ink);
}
.event-list-item p {
    margin: 0 0 .45rem;
    color: var(--muted);
}
.event-list-item:hover h4 { color: var(--pink); }
.event-list-item .read-more { color: var(--pink); font-weight: 700; }
@media (max-width: 575.98px) {
    .event-list-item { grid-template-columns: 1fr; gap: .35rem; padding: .95rem 0; }
}

.lit-post { height: auto; }
.lit-post-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.lit-feed .lit-post .thumb { height: 280px; }
.lit-post .aab-fb { margin: 0 .2rem .2rem; }

.aab-fb {
    border-top: 1px solid var(--line);
    padding: .35rem .9rem .9rem;
}
.aab-fb-summary {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .15rem .45rem;
    font-size: .88rem;
    color: var(--muted);
}
.aab-fb-faces {
    display: flex;
    align-items: center;
}
.aab-fb-faces span {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -.28rem;
    display: grid;
    place-items: center;
    font-size: .78rem;
    background: var(--paper);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--paper);
    line-height: 1;
}
.aab-fb-faces span:first-child { margin-left: 0; }
.aab-fb-summary-comments {
    margin-left: auto;
    color: var(--muted);
    text-decoration: none;
}
.aab-fb-summary-comments:hover { color: var(--pink); text-decoration: underline; }

.aab-fb-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .25rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: .2rem 0;
}
.aab-react-wrap { position: relative; margin: 0; }
.aab-fb-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    font-size: .92rem;
    padding: .55rem .4rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
}
.aab-fb-btn:hover { background: rgba(127, 127, 127, .1); color: var(--ink); }
.aab-fb-btn.is-on.is-like { color: #2078f4; }
.aab-fb-btn.is-on.is-love { color: #f33e58; }
.aab-fb-btn.is-on.is-haha,
.aab-fb-btn.is-on.is-wow,
.aab-fb-btn.is-on.is-sad { color: #f7b125; }
.aab-fb-btn.is-on.is-angry { color: #e9710f; }

.aab-react-picker {
    position: absolute;
    left: 0;
    bottom: calc(100% - .15rem);
    z-index: 5;
    display: flex;
    gap: .15rem;
    padding: .35rem .4rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(.96);
    transition: opacity .15s ease, transform .15s ease;
}
.aab-react-wrap:hover .aab-react-picker,
.aab-react-wrap:focus-within .aab-react-picker {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-6px) scale(1);
}
.aab-react-picker button {
    width: 2.35rem;
    height: 2.35rem;
    border: 0;
    background: transparent;
    font-size: 1.55rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .12s ease;
}
.aab-react-picker button:hover { transform: scale(1.28) translateY(-5px); }

.aab-fb-comments { padding-top: .85rem; }
.aab-fb-more {
    display: inline-block;
    margin-bottom: .7rem;
    color: var(--muted);
    font-weight: 700;
    font-size: .86rem;
    text-decoration: none;
}
.aab-fb-more:hover { color: var(--pink); }
.aab-fb-comment {
    display: flex;
    gap: .6rem;
    margin-bottom: .7rem;
    align-items: flex-start;
}
.aab-fb-comment img,
.aab-fb-composer img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.aab-fb-bubble {
    background: rgba(127, 127, 127, .12);
    border-radius: 16px;
    padding: .45rem .8rem .4rem;
    min-width: 0;
    max-width: calc(100% - 3rem);
    width: fit-content;
}
.aab-fb-bubble strong {
    display: block;
    font-size: .86rem;
    color: var(--ink);
}
.aab-fb-bubble p {
    margin: .1rem 0 .15rem;
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.45;
    white-space: pre-wrap;
}
.aab-fb-bubble .meta { font-size: .75rem; }
.aab-fb-composer {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    margin: .35rem 0 0;
}
.aab-fb-composer-fields {
    flex: 1;
    display: flex;
    gap: .45rem;
    align-items: flex-end;
    background: rgba(127, 127, 127, .12);
    border-radius: 18px;
    padding: .35rem .4rem .35rem .8rem;
}
.aab-fb-composer textarea {
    flex: 1;
    border: 0;
    background: transparent;
    resize: none;
    min-height: 2.1rem;
    max-height: 8rem;
    padding: .35rem 0;
    color: var(--ink);
    outline: none;
    font: inherit;
}
.aab-fb-composer .btn { flex-shrink: 0; }
.aab-fb-login a { color: var(--pink); font-weight: 700; text-decoration: none; }
.aab-fb-login a:hover { text-decoration: underline; }

.card-aab.lit-post:hover { transform: none; }

@media (max-width: 767.98px) {
    .aab-fb-actions { grid-template-columns: 1fr; }
    .aab-react-wrap { display: flex; flex-direction: column; }
    .aab-react-picker {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        justify-content: center;
        margin-bottom: .15rem;
        box-shadow: none;
        border: 0;
        background: transparent;
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .aab-fb { padding-left: .7rem; padding-right: .7rem; }
    .aab-fb-btn { font-size: .82rem; }
    .aab-fb-composer-fields { flex-wrap: wrap; }
    .aab-fb-composer .btn { width: 100%; }
}
