/*
 * Metadata Overlay — bottom strip + expanded sheet content
 * -------------------------------------------------------- */

/* Collapsed strip */
.meta-strip {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.meta-strip__user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-strip__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.meta-strip__username {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.meta-strip__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.meta-strip__location {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.meta-strip__location svg {
    width: 12px;
    height: 12px;
}

.meta-strip__more-hint {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-strip__more-hint svg {
    width: 12px;
    height: 12px;
}

/* Expanded sheet content */
.meta-sheet-content {
    padding: 0 20px 16px;
}

.meta-sheet-content__description {
    font-size: 0.9rem;
    color: hsl(var(--foreground));
    line-height: 1.6;
    margin-bottom: 16px;
}

.meta-sheet-content__meta-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.meta-sheet-content__date {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
}

.meta-sheet-content__cta {
    padding-bottom: 8px;
}