/* InstaPoster — small overrides on top of Tabler. */

/* Square-ish thumbnail wrapper used on dashboard cards & post detail */
.post-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--tblr-bg-surface-secondary, #1a1d29);
}
.post-thumb-wrap > img,
.post-thumb-wrap > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-thumb-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--tblr-secondary, #8a99b3);
    gap: 4px;
    font-size: 0.9em;
}
.post-thumb-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
}

/* Multi-line truncation for caption preview on dashboard cards */
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Show only the relevant theme icon */
#theme-icon-light, #theme-icon-dark { transition: opacity 0.15s ease; }
