.section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post {
    display: flex;
    gap: 8px;
    padding: 4px 0;
    font-size: 0.85rem;
    align-items: flex-start;
    margin-bottom: 6px;
    position: relative;
    border-bottom: none;
}

.post::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    border-bottom: 1px solid var(--control-outline);
}

.post .avatar {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #ccc;
    overflow: hidden;
}

.post .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.post .post-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 2px;
}

.post .post-header {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.85rem;
    align-items: center;
}

.post .post-header .name {
    font-weight: bold;
}

.post .post-header .username,
.post .post-header .time {
    color: gray;
}

.post .post-text {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.2;
}

.post .post-footer {
    display: flex;
    gap: 6px;
    font-size: 0.75rem;
    margin-top: 2px;
}

.post .post-footer .btn {
    padding: 0 4px;
    border: 1px solid var(--control-outline);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
}

.post .post-footer form {
    margin: 0;
    display: inline-flex;
}

.avatar img {
    pointer-events: none;
    user-select: none;
}

.audio-player {
    border: 1px solid var(--control-outline);
    border-radius: 8px;
    padding: 6px;
    background: var(--control-bg);
    display: flex;
    flex-direction: column;
    margin-top: 4px;
    width: 50%;
}

.audio-player .btn {
    width: 40px;
    font-size: 0.8rem;
    padding: 4px 6px;
}

.audio-player .audio-timer {
    color: var(--text-secondary);
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}