.content-type-chips {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.content-type-chips::-webkit-scrollbar {
    display: none;
}

.content-type-chip {
    flex-shrink: 0;
    padding: 7px 14px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--app-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.content-type-chip.active {
    background: var(--app-surface);
    color: var(--app-text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.content-status-segment {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
    padding: 3px;
    border-radius: 999px;
    background: var(--app-surface-raised);
}

.content-status-option {
    flex: 1;
    padding: 7px 10px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: var(--app-text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
}

.content-status-option.active {
    background: var(--app-surface);
    color: var(--app-text);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.content-tile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.content-tile-media {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--app-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--app-surface-raised);
}

.content-tile-media--video {
    background: rgba(77, 107, 250, 0.16);
}

.content-tile-media--bite {
    background: var(--ui-primary-muted);
}

.content-tile-media--post {
    background: rgba(255, 122, 69, 0.16);
}

.content-tile-media--news {
    background: #333c4a;
}

.content-tile-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-tile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    color: #fff;
    font-size: 1.1rem;
}

.content-tile-icon--video {
    background: #4d6bfa;
}

.content-tile-icon--bite {
    background: var(--ui-primary);
}

.content-tile-icon--post {
    background: #ff7a45;
}

.content-tile-icon--news {
    background: rgba(255, 255, 255, 0.14);
}

.content-tile-kind-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
}

.content-tile-kind-badge--video {
    background: #4d6bfa;
}

.content-tile-kind-badge--bite {
    background: var(--ui-primary);
}

.content-tile-kind-badge--post {
    background: #ff7a45;
}

.content-tile-kind-badge--news {
    background: rgba(255, 255, 255, 0.18);
}

.content-tile-draft-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.content-tile-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.content-tile-title {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--app-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content-tile-meta {
    margin: 0;
    font-size: 0.76rem;
    color: var(--app-text-muted);
}
