/* Базовые стили для шортов */
.shorts-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.short-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.short-media-container {
    position: relative;
    background: #000;
}

.short-media {
    width: 100%;
    display: block;
}

.short-content {
    padding: 16px;
}

.short-text {
    margin-bottom: 12px;
    line-height: 1.4;
}

.short-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.short-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.short-action-btn {
    color: #3fa6c5;
    text-decoration: none;
    font-size: 14px;
}

.short-action-btn:hover {
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .shorts-feed {
        padding: 0 8px;
    }

    .short-card {
        border-radius: 8px;
    }
}
