.repost-context {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px 0;
    color: rgba(251, 191, 36, 0.78);
    font-size: 12px;
    font-weight: 800;
}

.repost-context svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.repost-context a {
    color: #fbbf24;
    text-decoration: none;
}

.repost-context a:hover {
    color: #fcd34d;
}

.repost-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.repost-btn .btn-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
    display: block;
    transition: transform 0.2s ease;
}

.repost-btn .btn-text {
    font-size: 13px;
    font-weight: 500;
}

.repost-btn:hover,
.repost-btn.reposted {
    background: rgba(52, 211, 153, 0.1);
    border-color: rgba(52, 211, 153, 0.25);
    color: #34d399;
}

.repost-btn:hover .btn-icon,
.repost-btn.reposted .btn-icon {
    transform: rotate(-12deg) scale(1.08);
}

.repost-btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

@media (max-width: 480px) {
    .repost-context {
        padding: 10px 12px 0;
        font-size: 11px;
    }

    .repost-btn {
        height: 30px;
        padding: 0 10px;
        gap: 5px;
        border-radius: 6px;
    }

    .repost-btn .btn-icon {
        width: 14px;
        height: 14px;
    }

    .repost-btn .btn-text {
        font-size: 12px;
    }
}
